diff --git a/.eslintrc.js b/.eslintrc.js index f6407fa6fa..50365a09ee 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,7 +23,16 @@ module.exports = { 'bsky-internal/avoid-unwrapped-text': [ 'error', { - impliedTextComponents: ['H1', 'H2', 'H3', 'H4', 'H5', 'H6', 'P'], + impliedTextComponents: [ + 'H1', + 'H2', + 'H3', + 'H4', + 'H5', + 'H6', + 'P', + 'Admonition', + ], impliedTextProps: [], suggestedTextWrappers: { Button: 'ButtonText', @@ -33,9 +42,9 @@ module.exports = { ], 'bsky-internal/use-exact-imports': 'error', 'bsky-internal/use-typed-gates': 'error', - 'bsky-internal/use-prefixed-imports': 'warn', + 'bsky-internal/use-prefixed-imports': 'error', 'simple-import-sort/imports': [ - 'warn', + 'error', { groups: [ // Side effect imports. @@ -69,9 +78,8 @@ module.exports = { ], }, ], - 'simple-import-sort/exports': 'warn', - // TODO: Reenable when we figure out why it gets stuck on CI. - // 'react-compiler/react-compiler': 'error', + 'simple-import-sort/exports': 'error', + 'react-compiler/react-compiler': 'warn', 'no-restricted-imports': [ 'error', { diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 4f3041b40e..8938f92f4a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -5,10 +5,7 @@ body: - type: markdown attributes: value: | - Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make - sure you've searched for similar issues that are already open and being tracked. If you find an open issue that - seems relevant to yours, it is best to leave a response there with your information instead of opening a new - issue, since it helps to consolidate the info in one place. + Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make sure you've searched for similar issues that are already open and being tracked. If you find an open issue that seems relevant to yours, it is best to leave a response there with your information instead of opening a new issue, since it helps to consolidate the info in one place. - type: textarea attributes: label: Steps to Reproduce diff --git a/.github/ISSUE_TEMPLATE/bug_report_fabric.yml b/.github/ISSUE_TEMPLATE/bug_report_fabric.yml index 83782bf69d..65d14ce86a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_fabric.yml +++ b/.github/ISSUE_TEMPLATE/bug_report_fabric.yml @@ -12,10 +12,7 @@ body: - type: markdown attributes: value: | - Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make - sure you've searched for similar issues that are already open and being tracked. If you find an open issue that - seems relevant to yours, it is best to leave a response there with your information instead of opening a new - issue, since it helps to consolidate the info in one place. + Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make sure you've searched for similar issues that are already open and being tracked. If you find an open issue that seems relevant to yours, it is best to leave a response there with your information instead of opening a new issue, since it helps to consolidate the info in one place. - type: textarea attributes: label: Steps to Reproduce diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index f296e94360..975d029a92 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -5,10 +5,7 @@ body: - type: markdown attributes: value: | - Thanks for submitting a feature request! Before you submit this request, please make sure you've searched for - similar requests that are already open and being tracked. If you find an open request that seems relevant to - yours, it is best to leave a response there with your information instead of opening a new request, since it - helps to consolidate the info in one place. + Thanks for submitting a feature request! Before you submit this request, please make sure you've searched for similar requests that are already open and being tracked. If you find an open request that seems relevant to yours, it is best to leave a response there with your information instead of opening a new request, since it helps to consolidate the info in one place. - type: textarea attributes: label: Describe the Feature diff --git a/.prettierignore b/.prettierignore index 8ccbae2148..e107e129a4 100644 --- a/.prettierignore +++ b/.prettierignore @@ -15,3 +15,6 @@ android ios src/locale/locales lib/react-compiler-runtime +bskyweb/static +coverage +web-build diff --git a/__e2e__/flows/composer-self-label.yml b/__e2e__/flows/composer-self-label.yml index cc38b1d995..c89e46db55 100644 --- a/__e2e__/flows/composer-self-label.yml +++ b/__e2e__/flows/composer-self-label.yml @@ -10,6 +10,8 @@ appId: xyz.blueskyweb.app id: "e2eSignInAlice" # Post an image with the porn label +- assertVisible: + id: "composeFAB" - tapOn: id: "composeFAB" - inputText: "Post with an image" @@ -17,14 +19,12 @@ appId: xyz.blueskyweb.app id: "openGalleryBtn" - tapOn: id: "labelsBtn" -- tapOn: - label: "Tap on porn" - point: 78%,67% +- tapOn: "Porn" - tapOn: label: "Tap on confirm" - point: 51%,92% + id: "confirmBtn" - tapOn: id: "composerPublishBtn" - tapOn: id: "e2eRefreshHome" -- assertVisible: "Adult Content" \ No newline at end of file +- assertVisible: "Adult Content" diff --git a/__e2e__/flows/composer.yml b/__e2e__/flows/composer.yml index f6d760ea5f..d6cf7dff57 100644 --- a/__e2e__/flows/composer.yml +++ b/__e2e__/flows/composer.yml @@ -8,6 +8,8 @@ appId: xyz.blueskyweb.app file: ../setupApp.yml - tapOn: id: "e2eSignInAlice" +- assertVisible: + id: "composeFAB" - tapOn: id: "composeFAB" - inputText: "Post text only" @@ -60,7 +62,7 @@ appId: xyz.blueskyweb.app id: "repostBtn" - tapOn: id: "quoteBtn" -- inputText: "QP text only" +- inputText: "QP text only" - tapOn: id: "composerPublishBtn" - assertVisible: diff --git a/__e2e__/flows/create-account.yml b/__e2e__/flows/create-account.yml index 99ac1371a5..2bb2d06459 100644 --- a/__e2e__/flows/create-account.yml +++ b/__e2e__/flows/create-account.yml @@ -29,6 +29,7 @@ appId: xyz.blueskyweb.app - pressKey: Enter - tapOn: id: "nextBtn" +- tapOn: "Not now" - tapOn: id: "handleInput" - inputText: "e2e-test" diff --git a/__e2e__/flows/curate-lists.yml b/__e2e__/flows/curate-lists.yml index 3947204c2b..d46c58eed0 100644 --- a/__e2e__/flows/curate-lists.yml +++ b/__e2e__/flows/curate-lists.yml @@ -23,7 +23,6 @@ appId: xyz.blueskyweb.app id: "editDescriptionInput" - inputText: "They good" - tapOn: "Save" -- tapOn: "Save" - assertNotVisible: id: "createOrEditListModal" - tapOn: "About" @@ -46,7 +45,6 @@ appId: xyz.blueskyweb.app - eraseText - inputText: "They bad" - tapOn: "Save" -- tapOn: "Save" - assertNotVisible: id: "createOrEditListModal" - assertVisible: Bad Ppl @@ -62,7 +60,6 @@ appId: xyz.blueskyweb.app id: "editDescriptionInput" - eraseText - tapOn: "Save" -- tapOn: "Save" - assertNotVisible: id: "createOrEditListModal" - assertNotVisible: @@ -90,7 +87,6 @@ appId: xyz.blueskyweb.app id: "editDescriptionInput" - inputText: "They good" - tapOn: "Save" -- tapOn: "Save" - assertNotVisible: id: "createOrEditListModal" - tapOn: "About" @@ -163,8 +159,7 @@ appId: xyz.blueskyweb.app - tapOn: label: "Adds and removes users on curatelists from the profile" id: "bottomBarSearchBtn" -- tapOn: - id: "searchTextInput" +- tapOn: "Search" - inputText: "bob" - tapOn: id: "searchAutoCompleteResult-bob.test" diff --git a/__e2e__/flows/feed-reorder.yml b/__e2e__/flows/feed-reorder.yml index 2b892b533e..c502373c42 100644 --- a/__e2e__/flows/feed-reorder.yml +++ b/__e2e__/flows/feed-reorder.yml @@ -17,10 +17,6 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "profileCardButton" -- swipe: - from: - id: "profilePager-selector" - direction: LEFT - tapOn: id: "profilePager-selector-4" - tapOn: "alice-favs" @@ -40,13 +36,14 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" -- tapOn: +- tapOn: id: "editFeedsBtn" - tapOn: label: "Tap on down arrow" - point: "79%,23%" + id: "feed-timeline-moveDown" - tapOn: - id: "viewHeaderDrawerBtn" + label: "Save button" + id: "saveChangesBtn" - tapOn: id: "viewHeaderDrawerBtn" - assertVisible: @@ -61,13 +58,14 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" -- tapOn: +- tapOn: id: "editFeedsBtn" - tapOn: label: "Tap on down arrow" - point: "79%,23%" + id: "feed-feed-moveDown" - tapOn: - id: "viewHeaderDrawerBtn" + label: "Save button" + id: "saveChangesBtn" - tapOn: id: "viewHeaderDrawerBtn" - assertVisible: @@ -82,13 +80,14 @@ appId: xyz.blueskyweb.app id: "viewHeaderDrawerBtn" - tapOn: id: "menuItemButton-Feeds" -- tapOn: +- tapOn: id: "editFeedsBtn" - tapOn: label: "Tap on unpin" - point: "91%,23%" + id: "feed-timeline-togglePin" - tapOn: - id: "viewHeaderDrawerBtn" + label: "Save button" + id: "saveChangesBtn" - tapOn: id: "viewHeaderDrawerBtn" - assertVisible: diff --git a/__e2e__/flows/home-screen.yml b/__e2e__/flows/home-screen.yml index 799a20214c..b7e96282d7 100644 --- a/__e2e__/flows/home-screen.yml +++ b/__e2e__/flows/home-screen.yml @@ -20,10 +20,6 @@ appId: xyz.blueskyweb.app - tapOn: label: "Feeds button disappears after pinning a feed" id: "bottomBarProfileBtn" -- swipe: - from: - id: "profilePager-selector" - direction: LEFT - tapOn: id: "profilePager-selector-4" - tapOn: "alice-favs" diff --git a/__e2e__/flows/login.yml b/__e2e__/flows/login.yml index f1001f78da..34fe634c56 100644 --- a/__e2e__/flows/login.yml +++ b/__e2e__/flows/login.yml @@ -9,7 +9,7 @@ appId: xyz.blueskyweb.app - tapOn: id: "e2eOpenLoggedOutView" - tapOn: "Sign in" -- tapOn: +- tapOn: id: "selectServiceButton" - tapOn: "Custom" - tapOn: @@ -23,4 +23,5 @@ appId: xyz.blueskyweb.app id: "loginPasswordInput" - inputText: "hunter2" - pressKey: Enter -- assertVisible: "Following" \ No newline at end of file +- tapOn: "Not now" +- assertVisible: "Following" diff --git a/__e2e__/flows/mod-lists.yml b/__e2e__/flows/mod-lists.yml index 75ee100a83..1d6bb2da26 100644 --- a/__e2e__/flows/mod-lists.yml +++ b/__e2e__/flows/mod-lists.yml @@ -22,24 +22,25 @@ appId: xyz.blueskyweb.app id: "editDescriptionInput" - inputText: "Shhh" - tapOn: "Save" -- tapOn: "Save" # view modlist - assertVisible: "Muted Users" - assertVisible: "Shhh" -# toggle mute subscription - tapOn: - point: "70%,9%" + label: "Dropdown" + point: "71%,9%" + - tapOn: "Mute accounts" - tapOn: "Mute list" - tapOn: "Unmute" -# toggle block subscription - tapOn: - point: "70%,9%" + label: "Dropdown" + point: "71%,9%" + - tapOn: "Block accounts" - tapOn: "Block list" - tapOn: "Unblock" - - # the rest of the behaviors are tested in curate-lists.yml \ No newline at end of file + + # the rest of the behaviors are tested in curate-lists.yml diff --git a/__e2e__/flows/profile-screen-edit.yml b/__e2e__/flows/profile-screen-edit.yml index 251eca3581..597901855e 100644 --- a/__e2e__/flows/profile-screen-edit.yml +++ b/__e2e__/flows/profile-screen-edit.yml @@ -17,21 +17,6 @@ appId: xyz.blueskyweb.app - tapOn: id: "bottomBarProfileBtn" -# Can see feeds -- swipe: - from: - id: "profilePager-selector" - direction: LEFT -- tapOn: - id: "profilePager-selector-4" -- assertVisible: "alice-favs" -- swipe: - from: - id: "profilePager-selector" - direction: RIGHT -- tapOn: - id: "profilePager-selector-0" - # Open and close edit profile modal - tapOn: id: "profileHeaderEditProfileButton" diff --git a/__e2e__/flows/profile-screen.yml b/__e2e__/flows/profile-screen.yml index b9f95aca26..190a59643a 100644 --- a/__e2e__/flows/profile-screen.yml +++ b/__e2e__/flows/profile-screen.yml @@ -15,8 +15,7 @@ appId: xyz.blueskyweb.app id: "bottomBarSearchBtn" - tapOn: id: "bottomBarSearchBtn" -- tapOn: - id: "searchTextInput" +- tapOn: "Search" - inputText: "b" - tapOn: id: "searchAutoCompleteResult-bob.test" diff --git a/__e2e__/flows/search-screen.yml b/__e2e__/flows/search-screen.yml index 0d31d03fb9..a4f3f38bec 100644 --- a/__e2e__/flows/search-screen.yml +++ b/__e2e__/flows/search-screen.yml @@ -12,8 +12,8 @@ appId: xyz.blueskyweb.app # Navigate to another user profile via autocomplete - tapOn: id: "bottomBarSearchBtn" -- tapOn: - id: "searchTextInput" +- assertVisible: "Search" +- tapOn: "Search" - inputText: "b" - tapOn: id: "searchAutoCompleteResult-bob.test" diff --git a/__e2e__/flows/shared-prefs.yml b/__e2e__/flows/shared-prefs.yml index 73a0668298..9cc7707be1 100644 --- a/__e2e__/flows/shared-prefs.yml +++ b/__e2e__/flows/shared-prefs.yml @@ -8,7 +8,10 @@ appId: xyz.blueskyweb.app file: ../setupApp.yml - tapOn: id: "e2eSignInAlice" -- tapOn: "/sys/debug" +- assertVisible: + id: "storybookBtn" +- tapOn: + id: "storybookBtn" - tapOn: id: "sharedPrefsTestOpenBtn" - tapOn: @@ -16,7 +19,7 @@ appId: xyz.blueskyweb.app - assertVisible: "Hello" - tapOn: id: "removeStringBtn" -- assertVisible: "null" +- assertVisible: "undefined" - tapOn: id: "setBoolBtn" - assertVisible: "true" diff --git a/__e2e__/flows/thread-muting.yml b/__e2e__/flows/thread-muting.yml index 316389a79f..e588805c2d 100644 --- a/__e2e__/flows/thread-muting.yml +++ b/__e2e__/flows/thread-muting.yml @@ -7,10 +7,11 @@ appId: xyz.blueskyweb.app - runFlow: file: ../setupApp.yml - # Login, create a thread, and log out - tapOn: id: "e2eSignInAlice" +- assertVisible: + id: "composeFAB" - tapOn: id: "composeFAB" - inputText: "Test thread" diff --git a/app.config.js b/app.config.js index 6b2bad9385..fed1b17a31 100644 --- a/app.config.js +++ b/app.config.js @@ -236,6 +236,13 @@ module.exports = function (config) { fonts: [ './assets/fonts/inter/InterVariable.ttf', './assets/fonts/inter/InterVariable-Italic.ttf', + // Android only + './assets/fonts/inter/Inter-Regular.otf', + './assets/fonts/inter/Inter-Italic.otf', + './assets/fonts/inter/Inter-SemiBold.otf', + './assets/fonts/inter/Inter-SemiBoldItalic.otf', + './assets/fonts/inter/Inter-ExtraBold.otf', + './assets/fonts/inter/Inter-ExtraBoldItalic.otf', ], }, ], diff --git a/assets/icons/bubbles_stroke2_corner2_rounded.svg b/assets/icons/bubbles_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..f09fcaa33c --- /dev/null +++ b/assets/icons/bubbles_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/car_stroke2_corner2_rounded.svg b/assets/icons/car_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..ca29cefd1c --- /dev/null +++ b/assets/icons/car_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/circleQuestion_stroke2_corner2_rounded.svg b/assets/icons/circleQuestion_stroke2_corner2_rounded.svg index a534f98716..c025a14509 100644 --- a/assets/icons/circleQuestion_stroke2_corner2_rounded.svg +++ b/assets/icons/circleQuestion_stroke2_corner2_rounded.svg @@ -1 +1 @@ - + diff --git a/assets/icons/codeBrackets_stroke2_corner2_rounded.svg b/assets/icons/codeBrackets_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..d40e7b003d --- /dev/null +++ b/assets/icons/codeBrackets_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/codeLines_stroke2_corner2_rounded.svg b/assets/icons/codeLines_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..65a7b1e856 --- /dev/null +++ b/assets/icons/codeLines_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/earth_stroke2_corner2_rounded.svg b/assets/icons/earth_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..b8922629a3 --- /dev/null +++ b/assets/icons/earth_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/envelope_open_stroke2_corner0_rounded.svg b/assets/icons/envelope_open_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..9854761944 --- /dev/null +++ b/assets/icons/envelope_open_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/freeze_stroke2_corner2_rounded.svg b/assets/icons/freeze_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..1091454782 --- /dev/null +++ b/assets/icons/freeze_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/haptic_stroke2_corner2_rounded.svg b/assets/icons/haptic_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..7a93daf669 --- /dev/null +++ b/assets/icons/haptic_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/home_stroke2_corner2_rounded.svg b/assets/icons/home_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..5665b24b88 --- /dev/null +++ b/assets/icons/home_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/key_stroke2_corner2_rounded.svg b/assets/icons/key_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..2beb2b4ae4 --- /dev/null +++ b/assets/icons/key_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/macintosh_stroke2_corner2_rounded.svg b/assets/icons/macintosh_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..5435319722 --- /dev/null +++ b/assets/icons/macintosh_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/newspaper_stroke2_corner2_rounded.svg b/assets/icons/newspaper_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..3eb823cf2c --- /dev/null +++ b/assets/icons/newspaper_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/pencilLine_stroke2_corner2_rounded.svg b/assets/icons/pencilLine_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..92f1fed1c4 --- /dev/null +++ b/assets/icons/pencilLine_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/personGroup_stroke2_corner2_rounded.svg b/assets/icons/personGroup_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..fad8a8e7fb --- /dev/null +++ b/assets/icons/personGroup_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/raisingHand4finger_stroke2_corner2_rounded.svg b/assets/icons/raisingHand4finger_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..f6beb5647d --- /dev/null +++ b/assets/icons/raisingHand4finger_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/wrench_stroke2_corner2_rounded.svg b/assets/icons/wrench_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..601614c88f --- /dev/null +++ b/assets/icons/wrench_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/babel.config.js b/babel.config.js index c976d04b67..ac872648fe 100644 --- a/babel.config.js +++ b/babel.config.js @@ -17,12 +17,7 @@ module.exports = function (api) { ], plugins: [ 'macros', - [ - 'babel-plugin-react-compiler', - { - runtimeModule: 'react-compiler-runtime', - }, - ], + ['babel-plugin-react-compiler', {target: '18'}], [ 'module:react-native-dotenv', { diff --git a/bskyweb/cmd/bskyweb/main.go b/bskyweb/cmd/bskyweb/main.go index 985879f4a9..5c46af418d 100644 --- a/bskyweb/cmd/bskyweb/main.go +++ b/bskyweb/cmd/bskyweb/main.go @@ -87,6 +87,13 @@ func run(args []string) { Value: cli.NewStringSlice("https://bsky.app", "https://main.bsky.dev", "https://app.staging.bsky.dev"), EnvVars: []string{"CORS_ALLOWED_ORIGINS"}, }, + &cli.StringFlag{ + Name: "static-cdn-host", + Usage: "scheme, hostname, and port of static content CDN, don't end with a slash", + Required: false, + Value: "", + EnvVars: []string{"STATIC_CDN_HOST"}, + }, }, }, } diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index fd80a5ed14..d0d6b4c494 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -38,15 +38,18 @@ type Server struct { httpd *http.Server xrpcc *xrpc.Client cfg *Config + + ipccClient http.Client } type Config struct { - debug bool - httpAddress string - appviewHost string - ogcardHost string - linkHost string - ipccHost string + debug bool + httpAddress string + appviewHost string + ogcardHost string + linkHost string + ipccHost string + staticCDNHost string } func serve(cctx *cli.Context) error { @@ -58,6 +61,8 @@ func serve(cctx *cli.Context) error { ipccHost := cctx.String("ipcc-host") basicAuthPassword := cctx.String("basic-auth-password") corsOrigins := cctx.StringSlice("cors-allowed-origins") + staticCDNHost := cctx.String("static-cdn-host") + staticCDNHost = strings.TrimSuffix(staticCDNHost, "/") // Echo e := echo.New() @@ -94,12 +99,20 @@ func serve(cctx *cli.Context) error { echo: e, xrpcc: xrpcc, cfg: &Config{ - debug: debug, - httpAddress: httpAddress, - appviewHost: appviewHost, - ogcardHost: ogcardHost, - linkHost: linkHost, - ipccHost: ipccHost, + debug: debug, + httpAddress: httpAddress, + appviewHost: appviewHost, + ogcardHost: ogcardHost, + linkHost: linkHost, + ipccHost: ipccHost, + staticCDNHost: staticCDNHost, + }, + ipccClient: http.Client{ + Transport: &http.Transport{ + TLSClientConfig: &tls.Config{ + InsecureSkipVerify: true, + }, + }, }, } @@ -204,14 +217,8 @@ func serve(cctx *cli.Context) error { path := c.Request().URL.Path maxAge := 1 * (60 * 60) // default is 1 hour - // Cache javascript and images files for 1 week, which works because - // they're always versioned (e.g. /static/js/main.64c14927.js) - if strings.HasPrefix(path, "/static/js/") || strings.HasPrefix(path, "/static/images/") || strings.HasPrefix(path, "/static/media/") { - maxAge = 7 * (60 * 60 * 24) // 1 week - } - - // fonts can be cached for a year - if strings.HasSuffix(path, ".otf") { + // all assets in /static/js, /static/css, /static/media are content-hashed and can be cached for a long time + if strings.HasPrefix(path, "/static/js/") || strings.HasPrefix(path, "/static/css/") || strings.HasPrefix(path, "/static/media/") { maxAge = 365 * (60 * 60 * 24) // 1 year } @@ -246,6 +253,10 @@ func serve(cctx *cli.Context) error { e.GET("/settings/external-embeds", server.WebGeneric) e.GET("/settings/accessibility", server.WebGeneric) e.GET("/settings/appearance", server.WebGeneric) + e.GET("/settings/account", server.WebGeneric) + e.GET("/settings/privacy-and-security", server.WebGeneric) + e.GET("/settings/content-and-media", server.WebGeneric) + e.GET("/settings/about", server.WebGeneric) e.GET("/sys/debug", server.WebGeneric) e.GET("/sys/debug-mod", server.WebGeneric) e.GET("/sys/log", server.WebGeneric) @@ -255,6 +266,7 @@ func serve(cctx *cli.Context) error { e.GET("/support/community-guidelines", server.WebGeneric) e.GET("/support/copyright", server.WebGeneric) e.GET("/intent/compose", server.WebGeneric) + e.GET("/intent/verify-email", server.WebGeneric) e.GET("/messages", server.WebGeneric) e.GET("/messages/:conversation", server.WebGeneric) @@ -279,6 +291,7 @@ func serve(cctx *cli.Context) error { // starter packs e.GET("/starter-pack/:handleOrDID/:rkey", server.WebStarterPack) + e.GET("/starter-pack-short/:code", server.WebGeneric) e.GET("/start/:handleOrDID/:rkey", server.WebStarterPack) // ipcc @@ -337,15 +350,21 @@ func (srv *Server) Shutdown() error { return srv.httpd.Shutdown(ctx) } +// NewTemplateContext returns a new pongo2 context with some default values. +func (srv *Server) NewTemplateContext() pongo2.Context { + return pongo2.Context{ + "staticCDNHost": srv.cfg.staticCDNHost, + } +} + func (srv *Server) errorHandler(err error, c echo.Context) { code := http.StatusInternalServerError if he, ok := err.(*echo.HTTPError); ok { code = he.Code } c.Logger().Error(err) - data := pongo2.Context{ - "statusCode": code, - } + data := srv.NewTemplateContext() + data["statusCode"] = code c.Render(code, "error.html", data) } @@ -389,18 +408,18 @@ func (srv *Server) LinkProxyMiddleware(url *url.URL) echo.MiddlewareFunc { // handler for endpoint that have no specific server-side handling func (srv *Server) WebGeneric(c echo.Context) error { - data := pongo2.Context{} + data := srv.NewTemplateContext() return c.Render(http.StatusOK, "base.html", data) } func (srv *Server) WebHome(c echo.Context) error { - data := pongo2.Context{} + data := srv.NewTemplateContext() return c.Render(http.StatusOK, "home.html", data) } func (srv *Server) WebPost(c echo.Context) error { ctx := c.Request().Context() - data := pongo2.Context{} + data := srv.NewTemplateContext() // sanity check arguments. don't 4xx, just let app handle if not expected format rkeyParam := c.Param("rkey") @@ -475,7 +494,7 @@ func (srv *Server) WebPost(c echo.Context) error { func (srv *Server) WebStarterPack(c echo.Context) error { req := c.Request() ctx := req.Context() - data := pongo2.Context{} + data := srv.NewTemplateContext() data["requestURI"] = fmt.Sprintf("https://%s%s", req.Host, req.URL.Path) // sanity check arguments. don't 4xx, just let app handle if not expected format rkeyParam := c.Param("rkey") @@ -513,7 +532,7 @@ func (srv *Server) WebStarterPack(c echo.Context) error { func (srv *Server) WebProfile(c echo.Context) error { ctx := c.Request().Context() - data := pongo2.Context{} + data := srv.NewTemplateContext() // sanity check arguments. don't 4xx, just let app handle if not expected format handleOrDIDParam := c.Param("handleOrDID") @@ -578,15 +597,8 @@ func (srv *Server) WebIpCC(c echo.Context) error { } ipccUrlBuilder.Path = "ipccdata.IpCcService/Lookup" ipccUrl := ipccUrlBuilder.String() - cl := http.Client{ - Transport: &http.Transport{ - TLSClientConfig: &tls.Config{ - InsecureSkipVerify: true, - }, - }, - } postBodyReader := bytes.NewReader(request) - response, err := cl.Post(ipccUrl, "application/json", postBodyReader) + response, err := srv.ipccClient.Post(ipccUrl, "application/json", postBodyReader) if err != nil { log.Warnf("ipcc backend error %s", err) return c.JSON(500, IPCCResponse{}) diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 885d13d2a7..59cf39d02c 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -13,8 +13,8 @@ - - + + {% include "scripts.html" %} - - - - + + + + diff --git a/docs/build.md b/docs/build.md index dc710686e7..6661d8fb21 100644 --- a/docs/build.md +++ b/docs/build.md @@ -1,6 +1,17 @@ # Build instructions -## App Build +## Running Web App + +- `yarn` +- `yarn web` + +You're all set! + +## iOS/Android Build + +### Native Environment Setup + +This is NOT required when developing for web. - Set up your environment [using the expo instructions](https://docs.expo.dev/guides/local-app-development/). - make sure that the JAVA_HOME points to the zulu-17 directory in your `.zshrc` or `.bashrc` file: `export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home`. DO NOT use another JDK or you will encounter build errors. @@ -22,7 +33,68 @@ - After initial setup: - Copy `google-services.json.example` to `google-services.json` or provide your own `google-services.json`. (A real firebase project is NOT required) - `npx expo prebuild` -> you will also need to run this anytime `app.json` or native `package.json` deps change - - `yarn intl:build` -> you will also need to run this anytime `./src/locale/{locale}/messages.po` change + +### Running the Native App + +- iOS: `yarn ios` + - Xcode must be installed for this to run. + - A simulator must be preconfigured in Xcode settings. + - if no iOS versions are available, install the iOS runtime at `Xcode > Settings > Platforms`. + - if the simulator download keeps failing you can download it from the developer website. + - [Apple Developer](https://developer.apple.com/download/all/?q=Simulator%20Runtime) + - `xcode-select -s /Applications/Xcode.app` + - `xcodebuild -runFirstLaunch` + - `xcrun simctl runtime add "~/Downloads/iOS_17.4_Simulator_Runtime.dmg"` (adapt the path to the downloaded file) + - In addition, ensure Xcode Command Line Tools are installed using `xcode-select --install`. + - Expo will require you to configure Xcode Signing. Follow the linked instructions. Error messages in Xcode related to the signing process can be safely ignored when installing on the iOS Simulator; Expo merely requires the profile to exist in order to install the app on the Simulator. + - Make sure you do have a certificate: open Xcode > Settings > Accounts > (sign-in) > Manage Certificates > + > Apple Development > Done. + - If you still encounter issues, try `rm -rf ios` before trying to build again (`yarn ios`) +- Android: `yarn android` + - Install "Android Studio" + - Make sure you have the Android SDK installed (Android Studio > Tools > Android SDK). + - In "SDK Platforms": "Android x" (where x is Android's current version). + - In "SDK Tools": "Android SDK Build-Tools" and "Android Emulator" are required. + - Add `export ANDROID_HOME=/Users//Library/Android/sdk` to your `.zshrc` or `.bashrc` (and restart your terminal). + - Setup an emulator (Android Studio > Tools > Device Manager). +- Web: `yarn web` (see the top of this file). + +After you do `yarn ios` and `yarn android` once, you can later just run `yarn web` and then press either `i` or `a` to open iOS and Android emulators respectively which is much faster. However, if you make native changes, you'll have to do `yarn prebuild -p ios` and `yarn prebuild -p android` and then `yarn ios` and `yarn android` again before you can continue with the same workflow. + +### Tips + +- Copy the `.env.example` to `.env` and fill in any necessary tokens. (The Sentry token is NOT required; see instructions below if you want to enable Sentry.) +- To run on the device, add `--device` to the command (e.g. `yarn android --device`). To build in production mode (slower build, faster app), also add `--variant release`. +- If you want to use Expo EAS on your own builds without ejecting from Expo, make sure to change the `owner` and `extra.eas.projectId` properties. If you do not have an Expo account, you may remove these properties. +- `npx react-native info` Checks what has been installed. +- If the Android simulator frequently hangs or is very sluggish, [bump its memory limit](https://stackoverflow.com/a/40068396) +- The Android simulator won't be able to access localhost services unless you run `adb reverse tcp:{PORT} tcp:{PORT}` + - For instance, the locally-hosted dev-wallet will need `adb reverse tcp:3001 tcp:3001` +- For some reason, the typescript compiler chokes on platform-specific files (e.g. `foo.native.ts`) but only when compiling for Web thus far. Therefore we always have one version of the file that doesn't use a platform specifier, and that should be the Web version. ([More info](https://stackoverflow.com/questions/44001050/platform-specific-import-component-in-react-native-with-typescript).) + +### Running E2E Tests + +- Start in various console tabs: + - `yarn e2e:mock-server` + - `yarn e2e:metro` +- Run once: `yarn e2e:build` +- Each test run: `yarn e2e:run` + +### Adding Sentry + +Adding Sentry is NOT required. You can keep `SENTRY_AUTH_TOKEN=` in `.env` which will build the app without Sentry. + +However, if you're a part of the Bluesky team and want to enable Sentry, fill in `SENTRY_AUTH_TOKEN` in your `.env`. It can be created on the Sentry dashboard using [these instructions](https://docs.expo.dev/guides/using-sentry/#sign-up-for-a-sentry-account-and-create-a-project). + +If you change `SENTRY_AUTH_TOKEN`, you need to do `yarn prebuild` before running `yarn ios` or `yarn android` again. + +### Adding and Updating Locales + +- `yarn intl:build` -> you will also need to run this anytime `./src/locale/{locale}/messages.po` change + +## Running the Backend Locally + +This is NOT required for app development but if you also want to develop the Bluesky *backend* locally too, you'll need this. + - Start the dev servers - `git clone git@github.com:bluesky-social/atproto.git` - `cd atproto` @@ -33,55 +105,13 @@ - Start the docker daemon (on MacOS this entails starting the Docker Desktop app) - Launch a Postgres database on port 5432 - `cd packages/dev-env && pnpm start` -- Run the dev app - - iOS: `yarn ios` - - Xcode must be installed for this to run. - - A simulator must be preconfigured in Xcode settings. - - if no iOS versions are available, install the iOS runtime at `Xcode > Settings > Platforms`. - - if the simulator download keeps failing you can download it from the developer website. - - [Apple Developer](https://developer.apple.com/download/all/?q=Simulator%20Runtime) - - `xcode-select -s /Applications/Xcode.app` - - `xcodebuild -runFirstLaunch` - - `xcrun simctl runtime add "~/Downloads/iOS_17.4_Simulator_Runtime.dmg"` (adapt the path to the downloaded file) - - In addition, ensure Xcode Command Line Tools are installed using `xcode-select --install`. - - Expo will require you to configure Xcode Signing. Follow the linked instructions. Error messages in Xcode related to the signing process can be safely ignored when installing on the iOS Simulator; Expo merely requires the profile to exist in order to install the app on the Simulator. - - Make sure you do have a certificate: open Xcode > Settings > Accounts > (sign-in) > Manage Certificates > + > Apple Development > Done. - - If you still encounter issues, try `rm -rf ios` before trying to build again (`yarn ios`) - - Android: `yarn android` - - Install "Android Studio" - - Make sure you have the Android SDK installed (Android Studio > Tools > Android SDK). - - In "SDK Platforms": "Android x" (where x is Android's current version). - - In "SDK Tools": "Android SDK Build-Tools" and "Android Emulator" are required. - - Add `export ANDROID_HOME=/Users//Library/Android/sdk` to your `.zshrc` or `.bashrc` (and restart your terminal). - - Setup an emulator (Android Studio > Tools > Device Manager). - - Web: `yarn web` -- If you are cloning or forking this repo as an open-source developer, please check the tips below as well -- Run e2e tests - - Start in various console tabs: - - `yarn e2e:mock-server` - - `yarn e2e:metro` - - Run once: `yarn e2e:build` - - Each test run: `yarn e2e:run` -- Tips - - Copy the `.env.example` to `.env` and fill in any necessary tokens. (The Sentry token is NOT required; see instructions below if you want to enable Sentry.) - - To run on the device, add `--device` to the command (e.g. `yarn android --device`). To build in production mode (slower build, faster app), also add `--variant release`. - - If you want to use Expo EAS on your own builds without ejecting from Expo, make sure to change the `owner` and `extra.eas.projectId` properties. If you do not have an Expo account, you may remove these properties. - - `npx react-native info` Checks what has been installed. - - If the Android simulator frequently hangs or is very sluggish, [bump its memory limit](https://stackoverflow.com/a/40068396) - - The Android simulator won't be able to access localhost services unless you run `adb reverse tcp:{PORT} tcp:{PORT}` - - For instance, the locally-hosted dev-wallet will need `adb reverse tcp:3001 tcp:3001` - - For some reason, the typescript compiler chokes on platform-specific files (e.g. `foo.native.ts`) but only when compiling for Web thus far. Therefore we always have one version of the file that doesn't use a platform specifier, and that should be the Web version. ([More info](https://stackoverflow.com/questions/44001050/platform-specific-import-component-in-react-native-with-typescript).) -### Adding Sentry - -Adding Sentry is NOT required. You can keep `SENTRY_AUTH_TOKEN=` in `.env` which will build the app without Sentry. - -However, if you're a part of the Bluesky team and want to enable Sentry, fill in `SENTRY_AUTH_TOKEN` in your `.env`. It can be created on the Sentry dashboard using [these instructions](https://docs.expo.dev/guides/using-sentry/#sign-up-for-a-sentry-account-and-create-a-project). - -If you change `SENTRY_AUTH_TOKEN`, you need to do `yarn prebuild` before running `yarn ios` or `yarn android` again. +Then, when logging in or creating an account, point it to the localhost port of the devserver. ## Go-Server Build +The Go server in this repository is only used for serving the web app in production. Usually you won't need to touch it. + ### Prerequisites - [Go](https://go.dev/) diff --git a/jest/jestSetup.js b/jest/jestSetup.js index 4653490f3c..5564d81f15 100644 --- a/jest/jestSetup.js +++ b/jest/jestSetup.js @@ -96,6 +96,11 @@ jest.mock('expo-modules-core', () => ({ getIsReducedMotionEnabled: () => false, } } + if (moduleName === 'BottomSheet') { + return { + dismissAll: () => {}, + } + } }), requireNativeViewManager: jest.fn().mockImplementation(moduleName => { return () => null diff --git a/lib/react-compiler-runtime/index.js b/lib/react-compiler-runtime/index.js deleted file mode 100644 index 44f80e0c98..0000000000 --- a/lib/react-compiler-runtime/index.js +++ /dev/null @@ -1,21 +0,0 @@ -const React = require('react') -const $empty = Symbol.for('react.memo_cache_sentinel') -/** - * DANGER: this hook is NEVER meant to be called directly! - * - * Note that this is a temporary userspace implementation of this function - * from React 19. It is not as efficient and may invalidate more frequently - * than the official API. Please upgrade to React 19 as soon as you can. - **/ -export function c(size) { - // eslint-disable-next-line react-hooks/rules-of-hooks - return React.useState(() => { - const $ = new Array(size) - for (let ii = 0; ii < size; ii++) { - $[ii] = $empty - } - // @ts-ignore - $[$empty] = true - return $ - })[0] -} diff --git a/lib/react-compiler-runtime/package.json b/lib/react-compiler-runtime/package.json deleted file mode 100644 index cb8f78bd55..0000000000 --- a/lib/react-compiler-runtime/package.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "react-compiler-runtime", - "version": "0.0.1", - "license": "MIT", - "main": "index.js", - "peerDependencies": { - "react": "^18.2.0" - } -} \ No newline at end of file diff --git a/lingui.config.js b/lingui.config.js index 796969ab54..d84fe9f57a 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -4,20 +4,24 @@ module.exports = { 'en', 'ca', 'de', + 'en-GB', 'es', 'fi', 'fr', 'ga', 'hi', + 'hu', 'id', 'it', 'ja', 'ko', 'pt-BR', 'ru', + 'th', 'tr', 'uk', 'zh-CN', + 'zh-HK', 'zh-TW', ], catalogs: [ diff --git a/modules/BlueskyClip/ViewController.swift b/modules/BlueskyClip/ViewController.swift index b178644b8f..e8adb53259 100644 --- a/modules/BlueskyClip/ViewController.swift +++ b/modules/BlueskyClip/ViewController.swift @@ -34,6 +34,7 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele webView.navigationDelegate = self self.view.addSubview(webView) self.webView = webView + self.webView?.load(URLRequest(url: URL(string: "https://bsky.app/?splash=true&clip=true")!)) } func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) { @@ -42,16 +43,14 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele let payload = try? JSONDecoder().decode(WebViewActionPayload.self, from: data) else { return } - + switch payload.action { case .present: - guard let url = self.starterPackUrl else { - return - } - self.presentAppStoreOverlay() - defaults?.setValue(url.absoluteString, forKey: "starterPackUri") + if let url = self.starterPackUrl { + defaults?.setValue(url.absoluteString, forKey: "starterPackUri") + } case .store: guard let keyToStoreAs = payload.keyToStoreAs, let jsonToStore = payload.jsonToStore else { return @@ -66,23 +65,51 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele guard let url = navigationAction.request.url else { return .allow } - + // Store the previous one to compare later, but only set starterPackUrl when we find the right one prevUrl = url // pathComponents starts with "/" as the first component, then each path name. so... // ["/", "start", "name", "rkey"] - if url.pathComponents.count == 4, - url.pathComponents[1] == "start" { + if isStarterPackUrl(url){ self.starterPackUrl = url } - + return .allow } + + func isStarterPackUrl(_ url: URL) -> Bool { + var host: String? + if #available(iOS 16.0, *) { + host = url.host() + } else { + host = url.host + } + + switch host { + case "bsky.app": + if url.pathComponents.count == 4, + (url.pathComponents[1] == "start" || url.pathComponents[1] == "starter-pack") { + return true + } + return false + case "go.bsky.app": + if url.pathComponents.count == 2 { + return true + } + return false + default: + return false + } + } func handleURL(url: URL) { - let urlString = "\(url.absoluteString)?clip=true" - if let url = URL(string: urlString) { - self.webView?.load(URLRequest(url: url)) + if isStarterPackUrl(url) { + let urlString = "\(url.absoluteString)?clip=true" + if let url = URL(string: urlString) { + self.webView?.load(URLRequest(url: url)) + } + } else { + self.webView?.load(URLRequest(url: URL(string: "https://bsky.app/?splash=true&clip=true")!)) } } diff --git a/modules/Share-with-Bluesky/ShareViewController.swift b/modules/Share-with-Bluesky/ShareViewController.swift index 2acbb6187b..cd15fd1909 100644 --- a/modules/Share-with-Bluesky/ShareViewController.swift +++ b/modules/Share-with-Bluesky/ShareViewController.swift @@ -1,4 +1,5 @@ import UIKit +import AVKit let IMAGE_EXTENSIONS: [String] = ["png", "jpg", "jpeg", "gif", "heic"] let MOVIE_EXTENSIONS: [String] = ["mov", "mp4", "m4v"] @@ -119,16 +120,11 @@ class ShareViewController: UIViewController { private func handleVideos(items: [NSItemProvider]) async { let firstItem = items.first - if let dataUri = try? await firstItem?.loadItem(forTypeIdentifier: "public.movie") as? URL { - let ext = String(dataUri.lastPathComponent.split(separator: ".").last ?? "mp4") - if let tempUrl = getTempUrl(ext: ext) { - let data = try? Data(contentsOf: dataUri) - try? data?.write(to: tempUrl) - - if let encoded = tempUrl.absoluteString.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed), - let url = URL(string: "\(self.appScheme)://intent/compose?videoUri=\(encoded)") { - _ = self.openURL(url) - } + if let dataUrl = try? await firstItem?.loadItem(forTypeIdentifier: "public.movie") as? URL { + let ext = String(dataUrl.lastPathComponent.split(separator: ".").last ?? "mp4") + if let videoUriInfo = saveVideoWithInfo(dataUrl), + let url = URL(string: "\(self.appScheme)://intent/compose?videoUri=\(videoUriInfo)") { + _ = self.openURL(url) } } @@ -153,6 +149,24 @@ class ShareViewController: UIViewController { return nil } + private func saveVideoWithInfo(_ dataUrl: URL) -> String? { + let ext = String(dataUrl.lastPathComponent.split(separator: ".").last ?? "mp4") + guard let tempUrl = getTempUrl(ext: ext) else { + return nil + } + + let data = try? Data(contentsOf: dataUrl) + try? data?.write(to: tempUrl) + + guard let track = AVURLAsset(url: dataUrl).tracks(withMediaType: AVMediaType.video).first else { + _ = try? FileManager().removeItem(at: tempUrl) + return nil + } + + let size = track.naturalSize.applying(track.preferredTransform) + return "\(tempUrl.absoluteString)|\(size.width)|\(size.height)" + } + private func completeRequest() { self.extensionContext?.completeRequest(returningItems: nil) } diff --git a/modules/bottom-sheet/android/build.gradle b/modules/bottom-sheet/android/build.gradle new file mode 100644 index 0000000000..a1d423044b --- /dev/null +++ b/modules/bottom-sheet/android/build.gradle @@ -0,0 +1,49 @@ +apply plugin: 'com.android.library' + +group = 'expo.modules.bottomsheet' +version = '0.1.0' + +def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle") +apply from: expoModulesCorePlugin +applyKotlinExpoModulesCorePlugin() +useCoreDependencies() +useExpoPublishing() + +// If you want to use the managed Android SDK versions from expo-modules-core, set this to true. +// The Android SDK versions will be bumped from time to time in SDK releases and may introduce breaking changes in your module code. +// Most of the time, you may like to manage the Android SDK versions yourself. +def useManagedAndroidSdkVersions = false +if (useManagedAndroidSdkVersions) { + useDefaultAndroidSdkVersions() +} else { + buildscript { + // Simple helper that allows the root project to override versions declared by this library. + ext.safeExtGet = { prop, fallback -> + rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback + } + } + project.android { + compileSdkVersion safeExtGet("compileSdkVersion", 34) + defaultConfig { + minSdkVersion safeExtGet("minSdkVersion", 21) + targetSdkVersion safeExtGet("targetSdkVersion", 34) + } + } +} + +android { + namespace "expo.modules.bottomsheet" + defaultConfig { + versionCode 1 + versionName "0.1.0" + } + lintOptions { + abortOnError false + } +} + +dependencies { + implementation project(':expo-modules-core') + implementation 'com.google.android.material:material:1.12.0' + implementation "com.facebook.react:react-native:+" +} diff --git a/modules/bottom-sheet/android/src/main/AndroidManifest.xml b/modules/bottom-sheet/android/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..bdae66c8f5 --- /dev/null +++ b/modules/bottom-sheet/android/src/main/AndroidManifest.xml @@ -0,0 +1,2 @@ + + diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetModule.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetModule.kt new file mode 100644 index 0000000000..057e6ed2e2 --- /dev/null +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetModule.kt @@ -0,0 +1,53 @@ +package expo.modules.bottomsheet + +import expo.modules.kotlin.modules.Module +import expo.modules.kotlin.modules.ModuleDefinition + +class BottomSheetModule : Module() { + override fun definition() = + ModuleDefinition { + Name("BottomSheet") + + AsyncFunction("dismissAll") { + SheetManager.dismissAll() + } + + View(BottomSheetView::class) { + Events( + arrayOf( + "onAttemptDismiss", + "onSnapPointChange", + "onStateChange", + ), + ) + + AsyncFunction("dismiss") { view: BottomSheetView -> + view.dismiss() + } + + AsyncFunction("updateLayout") { view: BottomSheetView -> + view.updateLayout() + } + + Prop("disableDrag") { view: BottomSheetView, prop: Boolean -> + view.disableDrag = prop + } + + Prop("minHeight") { view: BottomSheetView, prop: Float -> + view.minHeight = prop + } + + Prop("maxHeight") { view: BottomSheetView, prop: Float -> + view.maxHeight = prop + } + + Prop("preventDismiss") { view: BottomSheetView, prop: Boolean -> + view.preventDismiss = prop + } + + Prop("preventExpansion") { view: BottomSheetView, prop: Boolean -> + view.preventExpansion = prop + } + } + } +} diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt new file mode 100644 index 0000000000..56b5b3f052 --- /dev/null +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt @@ -0,0 +1,344 @@ +package expo.modules.bottomsheet + +import android.content.Context +import android.util.DisplayMetrics +import android.view.View +import android.view.ViewGroup +import android.view.ViewStructure +import android.view.accessibility.AccessibilityEvent +import android.widget.FrameLayout +import androidx.core.view.allViews +import com.facebook.react.bridge.LifecycleEventListener +import com.facebook.react.bridge.ReactContext +import com.facebook.react.bridge.UiThreadUtil +import com.facebook.react.uimanager.UIManagerHelper +import com.facebook.react.uimanager.events.EventDispatcher +import com.google.android.material.bottomsheet.BottomSheetBehavior +import com.google.android.material.bottomsheet.BottomSheetDialog +import expo.modules.kotlin.AppContext +import expo.modules.kotlin.viewevent.EventDispatcher +import expo.modules.kotlin.views.ExpoView + + +class BottomSheetView( + context: Context, + appContext: AppContext, +) : ExpoView(context, appContext), + LifecycleEventListener { + private var innerView: View? = null + private var dialog: BottomSheetDialog? = null + + private lateinit var dialogRootViewGroup: DialogRootViewGroup + private var eventDispatcher: EventDispatcher? = null + + private val screenHeight = + context.resources.displayMetrics.heightPixels + .toFloat() + + private val onAttemptDismiss by EventDispatcher() + private val onSnapPointChange by EventDispatcher() + private val onStateChange by EventDispatcher() + + // Props + var disableDrag = false + set (value) { + field = value + this.setDraggable(!value) + } + + var preventDismiss = false + set(value) { + field = value + this.dialog?.setCancelable(!value) + } + var preventExpansion = false + + var minHeight = 0f + set(value) { + field = + if (value < 0) { + 0f + } else { + dpToPx(value) + } + } + + var maxHeight = this.screenHeight + set(value) { + val px = dpToPx(value) + field = + if (px > this.screenHeight) { + this.screenHeight + } else { + px + } + } + + private var isOpen: Boolean = false + set(value) { + field = value + onStateChange( + mapOf( + "state" to if (value) "open" else "closed", + ), + ) + } + + private var isOpening: Boolean = false + set(value) { + field = value + if (value) { + onStateChange( + mapOf( + "state" to "opening", + ), + ) + } + } + + private var isClosing: Boolean = false + set(value) { + field = value + if (value) { + onStateChange( + mapOf( + "state" to "closing", + ), + ) + } + } + + private var selectedSnapPoint = 0 + set(value) { + if (field == value) return + + field = value + onSnapPointChange( + mapOf( + "snapPoint" to value, + ), + ) + } + + // Lifecycle + + init { + (appContext.reactContext as? ReactContext)?.let { + it.addLifecycleEventListener(this) + this.eventDispatcher = UIManagerHelper.getEventDispatcherForReactTag(it, this.id) + + this.dialogRootViewGroup = DialogRootViewGroup(context) + this.dialogRootViewGroup.eventDispatcher = this.eventDispatcher + } + SheetManager.add(this) + } + + override fun onLayout( + changed: Boolean, + l: Int, + t: Int, + r: Int, + b: Int, + ) { + this.present() + } + + private fun destroy() { + this.isClosing = false + this.isOpen = false + this.dialog = null + this.innerView = null + SheetManager.remove(this) + } + + // Presentation + + private fun present() { + if (this.isOpen || this.isOpening || this.isClosing) return + + val contentHeight = this.getContentHeight() + val dialog = BottomSheetDialog(context) + dialog.setContentView(dialogRootViewGroup) + dialog.setCancelable(!preventDismiss) + dialog.setOnDismissListener { + this.isClosing = true + this.destroy() + } + + val bottomSheet = dialog.findViewById(com.google.android.material.R.id.design_bottom_sheet) + bottomSheet?.let { + it.setBackgroundColor(0) + + val behavior = BottomSheetBehavior.from(it) + behavior.state = BottomSheetBehavior.STATE_HIDDEN + behavior.isFitToContents = true + behavior.halfExpandedRatio = this.clampRatio(this.getTargetHeight() / this.screenHeight) + behavior.skipCollapsed = true + behavior.isDraggable = true + behavior.isHideable = true + + if (contentHeight >= this.screenHeight || this.minHeight >= this.screenHeight) { + behavior.state = BottomSheetBehavior.STATE_EXPANDED + this.selectedSnapPoint = 2 + } else { + behavior.state = BottomSheetBehavior.STATE_HALF_EXPANDED + this.selectedSnapPoint = 1 + } + + behavior.addBottomSheetCallback( + object : BottomSheetBehavior.BottomSheetCallback() { + override fun onStateChanged( + bottomSheet: View, + newState: Int, + ) { + when (newState) { + BottomSheetBehavior.STATE_EXPANDED -> { + selectedSnapPoint = 2 + } + BottomSheetBehavior.STATE_COLLAPSED -> { + selectedSnapPoint = 1 + } + BottomSheetBehavior.STATE_HALF_EXPANDED -> { + selectedSnapPoint = 1 + } + BottomSheetBehavior.STATE_HIDDEN -> { + selectedSnapPoint = 0 + } + } + } + + override fun onSlide( + bottomSheet: View, + slideOffset: Float, + ) { } + }, + ) + } + this.isOpening = true + dialog.show() + this.dialog = dialog + } + + fun updateLayout() { + val dialog = this.dialog ?: return + val contentHeight = this.getContentHeight() + + val bottomSheet = dialog.findViewById(com.google.android.material.R.id.design_bottom_sheet) + bottomSheet?.let { + val behavior = BottomSheetBehavior.from(it) + + behavior.halfExpandedRatio = this.clampRatio(this.getTargetHeight() / this.screenHeight) + + if (contentHeight > this.screenHeight && behavior.state != BottomSheetBehavior.STATE_EXPANDED) { + behavior.state = BottomSheetBehavior.STATE_EXPANDED + } else if (contentHeight < this.screenHeight && behavior.state != BottomSheetBehavior.STATE_HALF_EXPANDED) { + behavior.state = BottomSheetBehavior.STATE_HALF_EXPANDED + } + } + } + + fun dismiss() { + this.dialog?.dismiss() + } + + // Util + + private fun getContentHeight(): Float { + val innerView = this.innerView ?: return 0f + var index = 0 + innerView.allViews.forEach { + if (index == 1) { + return it.height.toFloat() + } + index++ + } + return 0f + } + + private fun getTargetHeight(): Float { + val contentHeight = this.getContentHeight() + val height = + if (contentHeight > maxHeight) { + maxHeight + } else if (contentHeight < minHeight) { + minHeight + } else { + contentHeight + } + return height + } + + private fun clampRatio(ratio: Float): Float { + if (ratio < 0.01) { + return 0.01f + } else if (ratio > 0.99) { + return 0.99f + } + return ratio + } + + private fun setDraggable(draggable: Boolean) { + val dialog = this.dialog ?: return + val bottomSheet = dialog.findViewById(com.google.android.material.R.id.design_bottom_sheet) + bottomSheet?.let { + val behavior = BottomSheetBehavior.from(it) + behavior.isDraggable = draggable + } + } + + override fun onHostResume() { } + + override fun onHostPause() { } + + override fun onHostDestroy() { + (appContext.reactContext as? ReactContext)?.let { + it.removeLifecycleEventListener(this) + this.destroy() + } + } + + // View overrides to pass to DialogRootViewGroup instead + + override fun dispatchProvideStructure(structure: ViewStructure?) { + dialogRootViewGroup.dispatchProvideStructure(structure) + } + + override fun setId(id: Int) { + super.setId(id) + dialogRootViewGroup.id = id + } + + override fun addView( + child: View?, + index: Int, + ) { + this.innerView = child + (child as ViewGroup).let { + dialogRootViewGroup.addView(child, index) + } + } + + override fun removeView(view: View?) { + UiThreadUtil.assertOnUiThread() + if (view != null) { + dialogRootViewGroup.removeView(view) + } + } + + override fun removeViewAt(index: Int) { + UiThreadUtil.assertOnUiThread() + val child = getChildAt(index) + dialogRootViewGroup.removeView(child) + } + + override fun addChildrenForAccessibility(outChildren: ArrayList?) { } + + override fun dispatchPopulateAccessibilityEvent(event: AccessibilityEvent?): Boolean = false + + // https://stackoverflow.com/questions/11862391/getheight-px-or-dpi + fun dpToPx(dp: Float): Float { + val displayMetrics = context.resources.displayMetrics + val px = dp * (displayMetrics.xdpi / DisplayMetrics.DENSITY_DEFAULT) + return px + } +} diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt new file mode 100644 index 0000000000..c022924e99 --- /dev/null +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt @@ -0,0 +1,171 @@ +package expo.modules.bottomsheet + +import android.annotation.SuppressLint +import android.content.Context +import android.view.MotionEvent +import android.view.View +import com.facebook.react.bridge.GuardedRunnable +import com.facebook.react.config.ReactFeatureFlags +import com.facebook.react.uimanager.JSPointerDispatcher +import com.facebook.react.uimanager.JSTouchDispatcher +import com.facebook.react.uimanager.RootView +import com.facebook.react.uimanager.ThemedReactContext +import com.facebook.react.uimanager.UIManagerModule +import com.facebook.react.uimanager.events.EventDispatcher +import com.facebook.react.views.view.ReactViewGroup + +// SEE https://github.com/facebook/react-native/blob/309cdea337101cfe2212cfb6abebf1e783e43282/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt#L378 + +/** + * DialogRootViewGroup is the ViewGroup which contains all the children of a Modal. It gets all + * child information forwarded from [ReactModalHostView] and uses that to create children. It is + * also responsible for acting as a RootView and handling touch events. It does this the same way + * as ReactRootView. + * + * To get layout to work properly, we need to layout all the elements within the Modal as if they + * can fill the entire window. To do that, we need to explicitly set the styleWidth and + * styleHeight on the LayoutShadowNode to be the window size. This is done through the + * UIManagerModule, and will then cause the children to layout as if they can fill the window. + */ +class DialogRootViewGroup( + private val context: Context?, +) : ReactViewGroup(context), + RootView { + private var hasAdjustedSize = false + private var viewWidth = 0 + private var viewHeight = 0 + + private val jSTouchDispatcher = JSTouchDispatcher(this) + private var jSPointerDispatcher: JSPointerDispatcher? = null + private var sizeChangeListener: OnSizeChangeListener? = null + + var eventDispatcher: EventDispatcher? = null + + interface OnSizeChangeListener { + fun onSizeChange( + width: Int, + height: Int, + ) + } + + init { + if (ReactFeatureFlags.dispatchPointerEvents) { + jSPointerDispatcher = JSPointerDispatcher(this) + } + } + + override fun onSizeChanged( + w: Int, + h: Int, + oldw: Int, + oldh: Int, + ) { + super.onSizeChanged(w, h, oldw, oldh) + + viewWidth = w + viewHeight = h + updateFirstChildView() + + sizeChangeListener?.onSizeChange(w, h) + } + + fun setOnSizeChangeListener(listener: OnSizeChangeListener) { + sizeChangeListener = listener + } + + private fun updateFirstChildView() { + if (childCount > 0) { + hasAdjustedSize = false + val viewTag = getChildAt(0).id + reactContext.runOnNativeModulesQueueThread( + object : GuardedRunnable(reactContext) { + override fun runGuarded() { + val uiManager: UIManagerModule = + reactContext + .reactApplicationContext + .getNativeModule(UIManagerModule::class.java) ?: return + + uiManager.updateNodeSize(viewTag, viewWidth, viewHeight) + } + }, + ) + } else { + hasAdjustedSize = true + } + } + + override fun addView( + child: View, + index: Int, + params: LayoutParams, + ) { + super.addView(child, index, params) + if (hasAdjustedSize) { + updateFirstChildView() + } + } + + override fun handleException(t: Throwable) { + reactContext.reactApplicationContext.handleException(RuntimeException(t)) + } + + private val reactContext: ThemedReactContext + get() = context as ThemedReactContext + + override fun onInterceptTouchEvent(event: MotionEvent): Boolean { + eventDispatcher?.let { jSTouchDispatcher.handleTouchEvent(event, it) } + jSPointerDispatcher?.handleMotionEvent(event, eventDispatcher, true) + return super.onInterceptTouchEvent(event) + } + + @SuppressLint("ClickableViewAccessibility") + override fun onTouchEvent(event: MotionEvent): Boolean { + eventDispatcher?.let { jSTouchDispatcher.handleTouchEvent(event, it) } + jSPointerDispatcher?.handleMotionEvent(event, eventDispatcher, false) + super.onTouchEvent(event) + + // In case when there is no children interested in handling touch event, we return true from + // the root view in order to receive subsequent events related to that gesture + return true + } + + override fun onInterceptHoverEvent(event: MotionEvent): Boolean { + jSPointerDispatcher?.handleMotionEvent(event, eventDispatcher, true) + return super.onHoverEvent(event) + } + + override fun onHoverEvent(event: MotionEvent): Boolean { + jSPointerDispatcher?.handleMotionEvent(event, eventDispatcher, false) + return super.onHoverEvent(event) + } + + @Deprecated("Deprecated in Java") + override fun onChildStartedNativeGesture(ev: MotionEvent?) { + eventDispatcher?.let { + if (ev != null) { + jSTouchDispatcher.onChildStartedNativeGesture(ev, it) + } + } + } + + override fun onChildStartedNativeGesture( + childView: View, + ev: MotionEvent, + ) { + eventDispatcher?.let { jSTouchDispatcher.onChildStartedNativeGesture(ev, it) } + jSPointerDispatcher?.onChildStartedNativeGesture(childView, ev, eventDispatcher) + } + + override fun onChildEndedNativeGesture( + childView: View, + ev: MotionEvent, + ) { + eventDispatcher?.let { jSTouchDispatcher.onChildEndedNativeGesture(ev, it) } + jSPointerDispatcher?.onChildEndedNativeGesture() + } + + override fun requestDisallowInterceptTouchEvent(disallowIntercept: Boolean) { + // No-op - override in order to still receive events to onInterceptTouchEvent + // even when some other view disallow that + } +} diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/SheetManager.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/SheetManager.kt new file mode 100644 index 0000000000..be78849988 --- /dev/null +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/SheetManager.kt @@ -0,0 +1,28 @@ +package expo.modules.bottomsheet + +import java.lang.ref.WeakReference + +class SheetManager { + companion object { + private val sheets = mutableSetOf>() + + fun add(view: BottomSheetView) { + sheets.add(WeakReference(view)) + } + + fun remove(view: BottomSheetView) { + sheets.forEach { + if (it.get() == view) { + sheets.remove(it) + return + } + } + } + + fun dismissAll() { + sheets.forEach { + it.get()?.dismiss() + } + } + } +} diff --git a/modules/bottom-sheet/expo-module.config.json b/modules/bottom-sheet/expo-module.config.json new file mode 100644 index 0000000000..81b5b078ed --- /dev/null +++ b/modules/bottom-sheet/expo-module.config.json @@ -0,0 +1,9 @@ +{ + "platforms": ["ios", "android"], + "ios": { + "modules": ["BottomSheetModule"] + }, + "android": { + "modules": ["expo.modules.bottomsheet.BottomSheetModule"] + } +} diff --git a/modules/bottom-sheet/index.ts b/modules/bottom-sheet/index.ts new file mode 100644 index 0000000000..4009f2ab28 --- /dev/null +++ b/modules/bottom-sheet/index.ts @@ -0,0 +1,23 @@ +import {BottomSheet} from './src/BottomSheet' +import { + BottomSheetSnapPoint, + BottomSheetState, + BottomSheetViewProps, +} from './src/BottomSheet.types' +import {BottomSheetNativeComponent} from './src/BottomSheetNativeComponent' +import { + BottomSheetOutlet, + BottomSheetPortalProvider, + BottomSheetProvider, +} from './src/BottomSheetPortal' + +export { + BottomSheet, + BottomSheetNativeComponent, + BottomSheetOutlet, + BottomSheetPortalProvider, + BottomSheetProvider, + BottomSheetSnapPoint, + type BottomSheetState, + type BottomSheetViewProps, +} diff --git a/modules/bottom-sheet/ios/BottomSheet.podspec b/modules/bottom-sheet/ios/BottomSheet.podspec new file mode 100644 index 0000000000..a42356f614 --- /dev/null +++ b/modules/bottom-sheet/ios/BottomSheet.podspec @@ -0,0 +1,21 @@ +Pod::Spec.new do |s| + s.name = 'BottomSheet' + s.version = '1.0.0' + s.summary = 'A bottom sheet for use in Bluesky' + s.description = 'A bottom sheet for use in Bluesky' + s.author = '' + s.homepage = 'https://github.com/bluesky-social/social-app' + s.platforms = { :ios => '15.0', :tvos => '15.0' } + s.source = { git: '' } + s.static_framework = true + + s.dependency 'ExpoModulesCore' + + # Swift/Objective-C compatibility + s.pod_target_xcconfig = { + 'DEFINES_MODULE' => 'YES', + 'SWIFT_COMPILATION_MODE' => 'wholemodule' + } + + s.source_files = "**/*.{h,m,swift}" +end diff --git a/modules/bottom-sheet/ios/BottomSheetModule.swift b/modules/bottom-sheet/ios/BottomSheetModule.swift new file mode 100644 index 0000000000..579608e75b --- /dev/null +++ b/modules/bottom-sheet/ios/BottomSheetModule.swift @@ -0,0 +1,47 @@ +import ExpoModulesCore + +public class BottomSheetModule: Module { + public func definition() -> ModuleDefinition { + Name("BottomSheet") + + AsyncFunction("dismissAll") { + SheetManager.shared.dismissAll() + } + + View(SheetView.self) { + Events([ + "onAttemptDismiss", + "onSnapPointChange", + "onStateChange" + ]) + + AsyncFunction("dismiss") { (view: SheetView) in + view.dismiss() + } + + AsyncFunction("updateLayout") { (view: SheetView) in + view.updateLayout() + } + + Prop("cornerRadius") { (view: SheetView, prop: Float) in + view.cornerRadius = CGFloat(prop) + } + + Prop("minHeight") { (view: SheetView, prop: Double) in + view.minHeight = prop + } + + Prop("maxHeight") { (view: SheetView, prop: Double) in + view.maxHeight = prop + } + + Prop("preventDismiss") { (view: SheetView, prop: Bool) in + view.preventDismiss = prop + } + + Prop("preventExpansion") { (view: SheetView, prop: Bool) in + view.preventExpansion = prop + } + } + } +} diff --git a/modules/bottom-sheet/ios/SheetManager.swift b/modules/bottom-sheet/ios/SheetManager.swift new file mode 100644 index 0000000000..e4e843bea5 --- /dev/null +++ b/modules/bottom-sheet/ios/SheetManager.swift @@ -0,0 +1,28 @@ +// +// SheetManager.swift +// Pods +// +// Created by Hailey on 10/1/24. +// + +import ExpoModulesCore + +class SheetManager { + static let shared = SheetManager() + + private var sheetViews = NSHashTable(options: .weakMemory) + + func add(_ view: SheetView) { + sheetViews.add(view) + } + + func remove(_ view: SheetView) { + sheetViews.remove(view) + } + + func dismissAll() { + sheetViews.allObjects.forEach { sheetView in + sheetView.dismiss() + } + } +} diff --git a/modules/bottom-sheet/ios/SheetView.swift b/modules/bottom-sheet/ios/SheetView.swift new file mode 100644 index 0000000000..2223a5a8ca --- /dev/null +++ b/modules/bottom-sheet/ios/SheetView.swift @@ -0,0 +1,192 @@ +import ExpoModulesCore +import UIKit + +class SheetView: ExpoView, UISheetPresentationControllerDelegate { + // Views + private var sheetVc: SheetViewController? + private var innerView: UIView? + private var touchHandler: RCTTouchHandler? + + // Events + private let onAttemptDismiss = EventDispatcher() + private let onSnapPointChange = EventDispatcher() + private let onStateChange = EventDispatcher() + + // Open event firing + private var isOpen: Bool = false { + didSet { + onStateChange([ + "state": isOpen ? "open" : "closed" + ]) + } + } + + // React view props + var preventDismiss = false + var preventExpansion = false + var cornerRadius: CGFloat? + var minHeight = 0.0 + var maxHeight: CGFloat! { + didSet { + let screenHeight = Util.getScreenHeight() ?? 0 + if maxHeight > screenHeight { + maxHeight = screenHeight + } + } + } + + private var isOpening = false { + didSet { + if isOpening { + onStateChange([ + "state": "opening" + ]) + } + } + } + private var isClosing = false { + didSet { + if isClosing { + onStateChange([ + "state": "closing" + ]) + } + } + } + private var selectedDetentIdentifier: UISheetPresentationController.Detent.Identifier? { + didSet { + if selectedDetentIdentifier == .large { + onSnapPointChange([ + "snapPoint": 2 + ]) + } else { + onSnapPointChange([ + "snapPoint": 1 + ]) + } + } + } + private var prevLayoutDetentIdentifier: UISheetPresentationController.Detent.Identifier? + + // MARK: - Lifecycle + + required init (appContext: AppContext? = nil) { + super.init(appContext: appContext) + self.maxHeight = Util.getScreenHeight() + self.touchHandler = RCTTouchHandler(bridge: appContext?.reactBridge) + SheetManager.shared.add(self) + } + + deinit { + self.destroy() + } + + // We don't want this view to actually get added to the tree, so we'll simply store it for adding + // to the SheetViewController + override func insertReactSubview(_ subview: UIView!, at atIndex: Int) { + self.touchHandler?.attach(to: subview) + self.innerView = subview + } + + // We'll grab the content height from here so we know the initial detent to set + override func layoutSubviews() { + super.layoutSubviews() + + guard let innerView = self.innerView else { + return + } + + if innerView.subviews.count != 1 { + return + } + + self.present() + } + + private func destroy() { + self.isClosing = false + self.isOpen = false + self.sheetVc = nil + self.touchHandler?.detach(from: self.innerView) + self.touchHandler = nil + self.innerView = nil + SheetManager.shared.remove(self) + } + + // MARK: - Presentation + + func present() { + guard !self.isOpen, + !self.isOpening, + !self.isClosing, + let innerView = self.innerView, + let contentHeight = innerView.subviews.first?.frame.height, + let rvc = self.reactViewController() else { + return + } + + let sheetVc = SheetViewController() + sheetVc.setDetents(contentHeight: self.clampHeight(contentHeight), preventExpansion: self.preventExpansion) + if let sheet = sheetVc.sheetPresentationController { + sheet.delegate = self + sheet.preferredCornerRadius = self.cornerRadius + self.selectedDetentIdentifier = sheet.selectedDetentIdentifier + } + sheetVc.view.addSubview(innerView) + + self.sheetVc = sheetVc + self.isOpening = true + + rvc.present(sheetVc, animated: true) { [weak self] in + self?.isOpening = false + self?.isOpen = true + } + } + + func updateLayout() { + if self.prevLayoutDetentIdentifier == self.selectedDetentIdentifier, + let contentHeight = self.innerView?.subviews.first?.frame.size.height { + self.sheetVc?.updateDetents(contentHeight: self.clampHeight(contentHeight), + preventExpansion: self.preventExpansion) + self.selectedDetentIdentifier = self.sheetVc?.getCurrentDetentIdentifier() + } + self.prevLayoutDetentIdentifier = self.selectedDetentIdentifier + } + + func dismiss() { + self.isClosing = true + self.sheetVc?.dismiss(animated: true) { [weak self] in + self?.destroy() + } + } + + // MARK: - Utils + + private func clampHeight(_ height: CGFloat) -> CGFloat { + if height < self.minHeight { + return self.minHeight + } else if height > self.maxHeight { + return self.maxHeight + } + return height + } + + // MARK: - UISheetPresentationControllerDelegate + + func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool { + self.onAttemptDismiss() + return !self.preventDismiss + } + + func presentationControllerWillDismiss(_ presentationController: UIPresentationController) { + self.isClosing = true + } + + func presentationControllerDidDismiss(_ presentationController: UIPresentationController) { + self.destroy() + } + + func sheetPresentationControllerDidChangeSelectedDetentIdentifier(_ sheetPresentationController: UISheetPresentationController) { + self.selectedDetentIdentifier = sheetPresentationController.selectedDetentIdentifier + } +} diff --git a/modules/bottom-sheet/ios/SheetViewController.swift b/modules/bottom-sheet/ios/SheetViewController.swift new file mode 100644 index 0000000000..a8b8f0c058 --- /dev/null +++ b/modules/bottom-sheet/ios/SheetViewController.swift @@ -0,0 +1,86 @@ +// +// SheetViewController.swift +// Pods +// +// Created by Hailey on 9/30/24. +// + +import Foundation +import UIKit + +class SheetViewController: UIViewController { + init() { + super.init(nibName: nil, bundle: nil) + + self.modalPresentationStyle = .formSheet + self.isModalInPresentation = false + + if let sheet = self.sheetPresentationController { + sheet.prefersGrabberVisible = false + } + } + + func setDetents(contentHeight: CGFloat, preventExpansion: Bool) { + guard let sheet = self.sheetPresentationController, + let screenHeight = Util.getScreenHeight() + else { + return + } + + if #available(iOS 16.0, *) { + if contentHeight > screenHeight - 100 { + sheet.detents = [ + .large() + ] + sheet.selectedDetentIdentifier = .large + } else { + sheet.detents = [ + .custom { _ in + return contentHeight + } + ] + if !preventExpansion { + sheet.detents.append(.large()) + } + sheet.selectedDetentIdentifier = .medium + } + } else { + if contentHeight > screenHeight / 2 { + sheet.detents = [ + .large() + ] + sheet.selectedDetentIdentifier = .large + } else { + sheet.detents = [ + .medium() + ] + if !preventExpansion { + sheet.detents.append(.large()) + } + sheet.selectedDetentIdentifier = .medium + } + } + } + + func updateDetents(contentHeight: CGFloat, preventExpansion: Bool) { + if let sheet = self.sheetPresentationController { + sheet.animateChanges { + self.setDetents(contentHeight: contentHeight, preventExpansion: preventExpansion) + if #available(iOS 16.0, *) { + sheet.invalidateDetents() + } + } + } + } + + func getCurrentDetentIdentifier() -> UISheetPresentationController.Detent.Identifier? { + guard let sheet = self.sheetPresentationController else { + return nil + } + return sheet.selectedDetentIdentifier + } + + required init?(coder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } +} diff --git a/modules/bottom-sheet/ios/Util.swift b/modules/bottom-sheet/ios/Util.swift new file mode 100644 index 0000000000..c654596a74 --- /dev/null +++ b/modules/bottom-sheet/ios/Util.swift @@ -0,0 +1,18 @@ +// +// Util.swift +// Pods +// +// Created by Hailey on 10/2/24. +// + +class Util { + static func getScreenHeight() -> CGFloat? { + if let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene, + let window = windowScene.windows.first { + let safeAreaInsets = window.safeAreaInsets + let fullScreenHeight = UIScreen.main.bounds.height + return fullScreenHeight - (safeAreaInsets.top + safeAreaInsets.bottom) + } + return nil + } +} diff --git a/modules/bottom-sheet/src/BottomSheet.tsx b/modules/bottom-sheet/src/BottomSheet.tsx new file mode 100644 index 0000000000..bcc2c42ad1 --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheet.tsx @@ -0,0 +1,24 @@ +import React from 'react' + +import {BottomSheetViewProps} from './BottomSheet.types' +import {BottomSheetNativeComponent} from './BottomSheetNativeComponent' +import {useBottomSheetPortal_INTERNAL} from './BottomSheetPortal' + +export const BottomSheet = React.forwardRef< + BottomSheetNativeComponent, + BottomSheetViewProps +>(function BottomSheet(props, ref) { + const Portal = useBottomSheetPortal_INTERNAL() + + if (__DEV__ && !Portal) { + throw new Error( + 'BottomSheet: You need to wrap your component tree with a to use the bottom sheet.', + ) + } + + return ( + + + + ) +}) diff --git a/modules/bottom-sheet/src/BottomSheet.types.ts b/modules/bottom-sheet/src/BottomSheet.types.ts new file mode 100644 index 0000000000..150932d423 --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheet.types.ts @@ -0,0 +1,35 @@ +import React from 'react' +import {ColorValue, NativeSyntheticEvent} from 'react-native' + +export type BottomSheetState = 'closed' | 'closing' | 'open' | 'opening' + +export enum BottomSheetSnapPoint { + Hidden, + Partial, + Full, +} + +export type BottomSheetAttemptDismissEvent = NativeSyntheticEvent +export type BottomSheetSnapPointChangeEvent = NativeSyntheticEvent<{ + snapPoint: BottomSheetSnapPoint +}> +export type BottomSheetStateChangeEvent = NativeSyntheticEvent<{ + state: BottomSheetState +}> + +export interface BottomSheetViewProps { + children: React.ReactNode + cornerRadius?: number + preventDismiss?: boolean + preventExpansion?: boolean + backgroundColor?: ColorValue + containerBackgroundColor?: ColorValue + disableDrag?: boolean + + minHeight?: number + maxHeight?: number + + onAttemptDismiss?: (event: BottomSheetAttemptDismissEvent) => void + onSnapPointChange?: (event: BottomSheetSnapPointChangeEvent) => void + onStateChange?: (event: BottomSheetStateChangeEvent) => void +} diff --git a/modules/bottom-sheet/src/BottomSheet.web.tsx b/modules/bottom-sheet/src/BottomSheet.web.tsx new file mode 100644 index 0000000000..1813d54dda --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheet.web.tsx @@ -0,0 +1,5 @@ +import {BottomSheetViewProps} from './BottomSheet.types' + +export function BottomSheet(_: BottomSheetViewProps) { + throw new Error('BottomSheet is not available on web') +} diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx new file mode 100644 index 0000000000..fa2b163bf0 --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx @@ -0,0 +1,125 @@ +import * as React from 'react' +import { + Dimensions, + NativeSyntheticEvent, + Platform, + StyleProp, + View, + ViewStyle, +} from 'react-native' +import {requireNativeModule, requireNativeViewManager} from 'expo-modules-core' + +import {BottomSheetState, BottomSheetViewProps} from './BottomSheet.types' +import {BottomSheetPortalProvider} from './BottomSheetPortal' + +const screenHeight = Dimensions.get('screen').height + +const NativeView: React.ComponentType< + BottomSheetViewProps & { + ref: React.RefObject + style: StyleProp + } +> = requireNativeViewManager('BottomSheet') + +const NativeModule = requireNativeModule('BottomSheet') + +const isIOS15 = Platform.OS === 'ios' && Number(Platform.Version) < 16 + +export class BottomSheetNativeComponent extends React.Component< + BottomSheetViewProps, + { + open: boolean + viewHeight?: number + } +> { + ref = React.createRef() + + constructor(props: BottomSheetViewProps) { + super(props) + this.state = { + open: false, + } + } + + present() { + this.setState({open: true}) + } + + dismiss() { + this.ref.current?.dismiss() + } + + private onStateChange = ( + event: NativeSyntheticEvent<{state: BottomSheetState}>, + ) => { + const {state} = event.nativeEvent + const isOpen = state !== 'closed' + this.setState({open: isOpen}) + this.props.onStateChange?.(event) + } + + private updateLayout = () => { + this.ref.current?.updateLayout() + } + + static dismissAll = async () => { + await NativeModule.dismissAll() + } + + render() { + const {children, backgroundColor, ...rest} = this.props + const cornerRadius = rest.cornerRadius ?? 0 + + let extraStyles + if (isIOS15 && this.state.viewHeight) { + const {viewHeight} = this.state + if (viewHeight < screenHeight / 2) { + extraStyles = { + height: viewHeight, + marginTop: screenHeight / 2 - viewHeight, + borderTopLeftRadius: cornerRadius, + borderTopRightRadius: cornerRadius, + } + } + } + + if (!this.state.open) { + return null + } + + return ( + + + { + const {height} = e.nativeEvent.layout + this.setState({viewHeight: height}) + this.updateLayout() + }}> + {children} + + + + ) + } +} diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx new file mode 100644 index 0000000000..f1a77cf33d --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx @@ -0,0 +1,5 @@ +import {BottomSheetViewProps} from './BottomSheet.types' + +export function BottomSheetNativeComponent(_: BottomSheetViewProps) { + throw new Error('BottomSheetNativeComponent is not available on web') +} diff --git a/modules/bottom-sheet/src/BottomSheetPortal.tsx b/modules/bottom-sheet/src/BottomSheetPortal.tsx new file mode 100644 index 0000000000..da14cfa774 --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheetPortal.tsx @@ -0,0 +1,40 @@ +import React from 'react' + +import {createPortalGroup_INTERNAL} from './lib/Portal' + +type PortalContext = React.ElementType<{children: React.ReactNode}> + +const Context = React.createContext({} as PortalContext) + +export const useBottomSheetPortal_INTERNAL = () => React.useContext(Context) + +export function BottomSheetPortalProvider({ + children, +}: { + children: React.ReactNode +}) { + const portal = React.useMemo(() => { + return createPortalGroup_INTERNAL() + }, []) + + return ( + + + {children} + + + + ) +} + +const defaultPortal = createPortalGroup_INTERNAL() + +export const BottomSheetOutlet = defaultPortal.Outlet + +export function BottomSheetProvider({children}: {children: React.ReactNode}) { + return ( + + {children} + + ) +} diff --git a/modules/bottom-sheet/src/lib/Portal.tsx b/modules/bottom-sheet/src/lib/Portal.tsx new file mode 100644 index 0000000000..dd1bc4c13f --- /dev/null +++ b/modules/bottom-sheet/src/lib/Portal.tsx @@ -0,0 +1,67 @@ +import React from 'react' + +type Component = React.ReactElement + +type ContextType = { + outlet: Component | null + append(id: string, component: Component): void + remove(id: string): void +} + +type ComponentMap = { + [id: string]: Component +} + +export function createPortalGroup_INTERNAL() { + const Context = React.createContext({ + outlet: null, + append: () => {}, + remove: () => {}, + }) + + function Provider(props: React.PropsWithChildren<{}>) { + const map = React.useRef({}) + const [outlet, setOutlet] = React.useState(null) + + const append = React.useCallback((id, component) => { + if (map.current[id]) return + map.current[id] = {component} + setOutlet(<>{Object.values(map.current)}) + }, []) + + const remove = React.useCallback(id => { + delete map.current[id] + setOutlet(<>{Object.values(map.current)}) + }, []) + + const contextValue = React.useMemo( + () => ({ + outlet, + append, + remove, + }), + [outlet, append, remove], + ) + + return ( + {props.children} + ) + } + + function Outlet() { + const ctx = React.useContext(Context) + return ctx.outlet + } + + function Portal({children}: React.PropsWithChildren<{}>) { + const {append, remove} = React.useContext(Context) + const id = React.useId() + React.useEffect(() => { + append(id, children as Component) + return () => remove(id) + }, [id, children, append, remove]) + return null + } + + return {Provider, Outlet, Portal} +} diff --git a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt index c88442057c..abae882b48 100644 --- a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt +++ b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt @@ -2,6 +2,7 @@ package xyz.blueskyweb.app.exporeceiveandroidintents import android.content.Intent import android.graphics.Bitmap +import android.media.MediaMetadataRetriever import android.net.Uri import android.os.Build import android.provider.MediaStore @@ -143,7 +144,10 @@ class ExpoReceiveAndroidIntentsModule : Module() { appContext.currentActivity?.contentResolver?.openInputStream(uri)?.use { it.copyTo(out) } - "bluesky://intent/compose?videoUri=${URLEncoder.encode(file.path, "UTF-8")}".toUri().let { + + val info = getVideoInfo(uri) ?: return + + "bluesky://intent/compose?videoUri=${URLEncoder.encode(file.path, "UTF-8")}|${info["width"]}|${info["height"]}".toUri().let { val newIntent = Intent(Intent.ACTION_VIEW, it) appContext.currentActivity?.startActivity(newIntent) } @@ -166,6 +170,24 @@ class ExpoReceiveAndroidIntentsModule : Module() { ) } + private fun getVideoInfo(uri: Uri): Map? { + val retriever = MediaMetadataRetriever() + retriever.setDataSource(appContext.currentActivity, uri) + + val width = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)?.toIntOrNull() + val height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull() + + if (width == null || height == null) { + return null + } + + return mapOf( + "width" to width, + "height" to height, + "path" to uri.path.toString(), + ) + } + private fun createFile(extension: String): File = File.createTempFile(extension, "temp.$extension", appContext.currentActivity?.cacheDir) // We will pas the width and height to the app here, since getting measurements diff --git a/package.json b/package.json index 4ab196b6aa..69fe73e46b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.91.2", + "version": "1.94.0", "private": true, "engines": { "node": ">=18" @@ -53,7 +53,7 @@ "icons:optimize": "svgo -f ./assets/icons" }, "dependencies": { - "@atproto/api": "^0.13.8", + "@atproto/api": "^0.13.11", "@braintree/sanitize-url": "^6.0.2", "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet", "@emoji-mart/react": "^1.1.1", @@ -68,11 +68,14 @@ "@fortawesome/free-regular-svg-icons": "^6.1.1", "@fortawesome/free-solid-svg-icons": "^6.1.1", "@fortawesome/react-native-fontawesome": "^0.3.2", - "@haileyok/bluesky-video": "0.1.10", + "@haileyok/bluesky-video": "0.2.3", "@lingui/react": "^4.5.0", "@mattermost/react-native-paste-input": "^0.7.1", "@miblanchard/react-native-slider": "^2.3.1", - "@radix-ui/react-dropdown-menu": "^2.0.6", + "@radix-ui/react-dismissable-layer": "^1.1.1", + "@radix-ui/react-dropdown-menu": "2.0.1", + "@radix-ui/react-focus-guards": "^1.1.1", + "@radix-ui/react-focus-scope": "^1.1.0", "@react-native-async-storage/async-storage": "1.23.1", "@react-native-masked-view/masked-view": "0.3.0", "@react-native-menu/menu": "^1.1.0", @@ -81,23 +84,22 @@ "@react-navigation/drawer": "^6.6.15", "@react-navigation/native": "^6.1.17", "@react-navigation/native-stack": "^6.9.26", - "@sentry/react-native": "5.32.0", - "@tamagui/focus-scope": "^1.84.1", + "@sentry/react-native": "5.24.3", "@tanstack/query-async-storage-persister": "^5.25.0", "@tanstack/react-query": "^5.8.1", "@tanstack/react-query-persist-client": "^5.25.0", - "@tiptap/core": "^2.0.0-beta.220", - "@tiptap/extension-document": "^2.0.0-beta.220", - "@tiptap/extension-hard-break": "^2.0.3", - "@tiptap/extension-history": "^2.0.3", - "@tiptap/extension-mention": "^2.0.0-beta.220", - "@tiptap/extension-paragraph": "^2.0.0-beta.220", - "@tiptap/extension-placeholder": "^2.0.0-beta.220", - "@tiptap/extension-text": "^2.0.0-beta.220", - "@tiptap/html": "^2.1.11", - "@tiptap/pm": "^2.0.0-beta.220", - "@tiptap/react": "^2.0.0-beta.220", - "@tiptap/suggestion": "^2.0.0-beta.220", + "@tiptap/core": "^2.6.6", + "@tiptap/extension-document": "^2.6.6", + "@tiptap/extension-hard-break": "^2.6.6", + "@tiptap/extension-history": "^2.6.6", + "@tiptap/extension-mention": "^2.6.6", + "@tiptap/extension-paragraph": "^2.6.6", + "@tiptap/extension-placeholder": "^2.6.6", + "@tiptap/extension-text": "^2.6.6", + "@tiptap/html": "^2.6.6", + "@tiptap/pm": "^2.6.6", + "@tiptap/react": "^2.6.6", + "@tiptap/suggestion": "^2.6.6", "@types/invariant": "^2.2.37", "@types/lodash.throttle": "^4.1.9", "@types/node": "^18.16.2", @@ -137,7 +139,6 @@ "expo-sharing": "^12.0.1", "expo-splash-screen": "~0.27.4", "expo-status-bar": "~1.12.1", - "expo-system-ui": "~3.0.4", "expo-task-manager": "~11.8.1", "expo-updates": "~0.25.14", "expo-web-browser": "~13.0.3", @@ -163,7 +164,7 @@ "postinstall-postinstall": "^2.1.0", "psl": "^1.9.0", "react": "18.2.0", - "react-compiler-runtime": "file:./lib/react-compiler-runtime", + "react-compiler-runtime": "^19.0.0-beta-6fc168f-20241025", "react-dom": "^18.2.0", "react-image-crop": "^11.0.7", "react-keyed-flatten-children": "^3.0.0", @@ -171,11 +172,11 @@ "react-native-compressor": "^1.8.24", "react-native-date-picker": "^4.4.2", "react-native-drawer-layout": "^4.0.0-alpha.3", - "react-native-gesture-handler": "~2.16.2", + "react-native-gesture-handler": "2.20.0", "react-native-get-random-values": "~1.11.0", "react-native-image-crop-picker": "0.41.2", "react-native-ios-context-menu": "^1.15.3", - "react-native-keyboard-controller": "^1.12.1", + "react-native-keyboard-controller": "^1.14.0", "react-native-mmkv": "^2.12.2", "react-native-pager-view": "6.2.3", "react-native-picker-select": "^9.1.3", @@ -204,7 +205,7 @@ "zod": "^3.20.2" }, "devDependencies": { - "@atproto/dev-env": "^0.3.39", + "@atproto/dev-env": "^0.3.55", "@babel/core": "^7.23.2", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", @@ -240,7 +241,7 @@ "babel-loader": "^9.1.2", "babel-plugin-macros": "^3.1.0", "babel-plugin-module-resolver": "^5.0.0", - "babel-plugin-react-compiler": "^0.0.0-experimental-592953e-20240517", + "babel-plugin-react-compiler": "^19.0.0-beta-6fc168f-20241025", "babel-plugin-react-native-web": "^0.18.12", "babel-preset-expo": "^10.0.0", "eslint": "^8.19.0", @@ -248,7 +249,7 @@ "eslint-plugin-ft-flow": "^2.0.3", "eslint-plugin-lingui": "^0.2.0", "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-compiler": "^0.0.0-experimental-c8b3f72-20240517", + "eslint-plugin-react-compiler": "^19.0.0-beta-6fc168f-20241025", "eslint-plugin-react-native-a11y": "^3.3.0", "eslint-plugin-simple-import-sort": "^12.0.0", "html-webpack-plugin": "^5.5.0", @@ -279,7 +280,8 @@ "**/zod": "3.23.8", "**/expo-constants": "16.0.1", "**/expo-device": "6.0.2", - "@react-native/babel-preset": "0.74.1" + "@react-native/babel-preset": "0.74.1", + "@radix-ui/react-focus-scope": "1.1.0" }, "jest": { "preset": "jest-expo/ios", diff --git a/patches/react-native+0.74.1.patch b/patches/react-native+0.74.1.patch index aee3da1ecc..ea6161e2ff 100644 --- a/patches/react-native+0.74.1.patch +++ b/patches/react-native+0.74.1.patch @@ -38,37 +38,65 @@ index b0d71dc..41b9a0e 100644 - (void)reactBlur diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h -index e9b330f..1ecdf0a 100644 +index e9b330f..ec5f58c 100644 --- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h +++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h -@@ -16,4 +16,6 @@ +@@ -15,5 +15,8 @@ + @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) RCTDirectEventBlock onRefresh; @property (nonatomic, weak) UIScrollView *scrollView; - -+- (void)forwarderBeginRefreshing; ++@property (nonatomic, copy) UIColor *customTintColor; + ++- (void)forwarderBeginRefreshing; + @end diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m -index b09e653..f93cb46 100644 +index b09e653..288e60c 100644 --- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m +++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m -@@ -198,9 +198,53 @@ - (void)refreshControlValueChanged - [self setCurrentRefreshingState:super.refreshing]; - _refreshingProgrammatically = NO; +@@ -22,6 +22,7 @@ @implementation RCTRefreshControl { + NSString *_title; + UIColor *_titleColor; + CGFloat _progressViewOffset; ++ UIColor *_customTintColor; + } -+ if (@available(iOS 17.4, *)) { -+ if (_currentRefreshingState) { -+ UIImpactFeedbackGenerator *feedbackGenerator = [[UIImpactFeedbackGenerator alloc] initWithStyle:UIImpactFeedbackStyleLight]; -+ [feedbackGenerator prepare]; -+ [feedbackGenerator impactOccurred]; -+ } -+ } + - (instancetype)init +@@ -56,6 +57,12 @@ - (void)layoutSubviews + _isInitialRender = false; + } + ++- (void)didMoveToSuperview ++{ ++ [super didMoveToSuperview]; ++ [self setTintColor:_customTintColor]; ++} + - if (_onRefresh) { - _onRefresh(nil); + - (void)beginRefreshingProgrammatically + { + UInt64 beginRefreshingTimestamp = _currentRefreshingStateTimestamp; +@@ -203,4 +210,58 @@ - (void)refreshControlValueChanged } } ++- (void)setCustomTintColor:(UIColor *)customTintColor ++{ ++ _customTintColor = customTintColor; ++ [self setTintColor:customTintColor]; ++} ++ ++// Fix for https://github.com/facebook/react-native/issues/43388 ++// A bug in iOS 17.4 causes the haptic to not play when refreshing if the tintColor ++// is set before the refresh control gets added to the scrollview. We'll call this ++// function whenever the superview changes. We'll also call it if the value of customTintColor ++// changes. ++- (void)setTintColor:(UIColor *)tintColor ++{ ++ if ([self.superview isKindOfClass:[UIScrollView class]] && self.tintColor != tintColor) { ++ [super setTintColor:tintColor]; ++ } ++} ++ +/* + This method is used by Bluesky's ExpoScrollForwarder. This allows other React Native + libraries to perform a refresh of a scrollview and access the refresh control's onRefresh @@ -106,6 +134,24 @@ index b09e653..f93cb46 100644 +} + @end +diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m +index 40aaf9c..1c60164 100644 +--- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m ++++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m +@@ -22,11 +22,12 @@ - (UIView *)view + + RCT_EXPORT_VIEW_PROPERTY(onRefresh, RCTDirectEventBlock) + RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL) +-RCT_EXPORT_VIEW_PROPERTY(tintColor, UIColor) + RCT_EXPORT_VIEW_PROPERTY(title, NSString) + RCT_EXPORT_VIEW_PROPERTY(titleColor, UIColor) + RCT_EXPORT_VIEW_PROPERTY(progressViewOffset, CGFloat) + ++RCT_REMAP_VIEW_PROPERTY(tintColor, customTintColor, UIColor) ++ + RCT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing) + { + [self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary *viewRegistry) { diff --git a/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.java b/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.java index 5f5e1ab..aac00b6 100644 --- a/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.java diff --git a/scripts/post-web-build.js b/scripts/post-web-build.js index 7bbee38554..3b1b62dfd8 100644 --- a/scripts/post-web-build.js +++ b/scripts/post-web-build.js @@ -23,10 +23,10 @@ const outputFile = entrypoints const ext = path.extname(file) if (ext === '.js') { - return `` + return `` } if (ext === '.css') { - return `` + return `` } return '' diff --git a/src/App.native.tsx b/src/App.native.tsx index e2fcd6d2ec..668fb91fcd 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -1,6 +1,6 @@ import 'react-native-url-polyfill/auto' -import 'lib/sentry' // must be near top -import 'view/icons' +import '#/lib/sentry' // must be near top +import '#/view/icons' import React, {useEffect, useState} from 'react' import {GestureHandlerRootView} from 'react-native-gesture-handler' @@ -14,7 +14,6 @@ import * as SplashScreen from 'expo-splash-screen' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useIntentHandler} from '#/lib/hooks/useIntentHandler' import {QueryProvider} from '#/lib/react-query' import { initialize, @@ -51,6 +50,7 @@ import { } from '#/state/session' import {readLastActiveAccount} from '#/state/session/util' import {Provider as ShellStateProvider} from '#/state/shell' +import {Provider as ComposerProvider} from '#/state/shell/composer' import {Provider as LoggedOutViewProvider} from '#/state/shell/logged-out' import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide' import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' @@ -67,6 +67,7 @@ import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs' import {Provider as PortalProvider} from '#/components/Portal' import {Splash} from '#/Splash' +import {BottomSheetProvider} from '../modules/bottom-sheet' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' SplashScreen.preventAutoHideAsync() @@ -83,7 +84,6 @@ function InnerApp() { const theme = useColorModeTheme() const {_} = useLingui() - useIntentHandler() const hasCheckedReferrer = useStarterPackEntry() // init @@ -125,35 +125,37 @@ function InnerApp() { // Resets the entire tree below when it changes: key={currentAccount?.did}> - - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - - + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -194,14 +196,16 @@ function App() { - - - - - - - + + + + + + + + + diff --git a/src/App.web.tsx b/src/App.web.tsx index 1664812d08..53ca418736 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -9,7 +9,6 @@ import {SafeAreaProvider} from 'react-native-safe-area-context' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useIntentHandler} from '#/lib/hooks/useIntentHandler' import {QueryProvider} from '#/lib/react-query' import {Provider as StatsigProvider} from '#/lib/statsig/statsig' import {ThemeProvider} from '#/lib/ThemeContext' @@ -41,7 +40,7 @@ import { } from '#/state/session' import {readLastActiveAccount} from '#/state/session/util' import {Provider as ShellStateProvider} from '#/state/shell' -import {useComposerKeyboardShortcut} from '#/state/shell/composer/useComposerKeyboardShortcut' +import {Provider as ComposerProvider} from '#/state/shell/composer' import {Provider as LoggedOutViewProvider} from '#/state/shell/logged-out' import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide' import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' @@ -71,11 +70,8 @@ function InnerApp() { const {resumeSession} = useSessionApi() const theme = useColorModeTheme() const {_} = useLingui() - useIntentHandler() const hasCheckedReferrer = useStarterPackEntry() - useComposerKeyboardShortcut() - // init useEffect(() => { async function onLaunch(account?: SessionAccount) { @@ -116,33 +112,35 @@ function InnerApp() { // Resets the entire tree below when it changes: key={currentAccount?.did}> - - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 53e8274d54..436f2488a5 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -17,7 +17,6 @@ import { import {timeout} from '#/lib/async/timeout' import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle' -import {usePalette} from '#/lib/hooks/usePalette' import {useWebScrollRestoration} from '#/lib/hooks/useWebScrollRestoration' import {buildStateObject} from '#/lib/routes/helpers' import { @@ -78,8 +77,8 @@ import {BottomBar} from '#/view/shell/bottom-bar/BottomBar' import {createNativeStackNavigatorWithAuth} from '#/view/shell/createNativeStackNavigatorWithAuth' import {SharedPreferencesTesterScreen} from '#/screens/E2E/SharedPreferencesTesterScreen' import HashtagScreen from '#/screens/Hashtag' +import {MessagesScreen} from '#/screens/Messages/ChatList' import {MessagesConversationScreen} from '#/screens/Messages/Conversation' -import {MessagesScreen} from '#/screens/Messages/List' import {MessagesSettingsScreen} from '#/screens/Messages/Settings' import {ModerationScreen} from '#/screens/Moderation' import {PostLikedByScreen} from '#/screens/Post/PostLikedBy' @@ -93,8 +92,13 @@ import { StarterPackScreenShort, } from '#/screens/StarterPack/StarterPackScreen' import {Wizard} from '#/screens/StarterPack/Wizard' +import {useTheme} from '#/alf' import {router} from '#/routes' import {Referrer} from '../modules/expo-bluesky-swiss-army' +import {AboutSettingsScreen} from './screens/Settings/AboutSettings' +import {AccountSettingsScreen} from './screens/Settings/AccountSettings' +import {ContentAndMediaSettingsScreen} from './screens/Settings/ContentAndMediaSettings' +import {PrivacyAndSecuritySettingsScreen} from './screens/Settings/PrivacyAndSecuritySettings' const navigationRef = createNavigationContainerRef() @@ -322,7 +326,39 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { name="AppearanceSettings" getComponent={() => AppearanceSettingsScreen} options={{ - title: title(msg`Appearance Settings`), + title: title(msg`Appearance`), + requireAuth: true, + }} + /> + AccountSettingsScreen} + options={{ + title: title(msg`Account`), + requireAuth: true, + }} + /> + PrivacyAndSecuritySettingsScreen} + options={{ + title: title(msg`Privacy and Security`), + requireAuth: true, + }} + /> + ContentAndMediaSettingsScreen} + options={{ + title: title(msg`Content and Media`), + requireAuth: true, + }} + /> + AboutSettingsScreen} + options={{ + title: title(msg`About`), requireAuth: true, }} /> @@ -412,7 +448,7 @@ function TabsNavigator() { } function HomeTabNavigator() { - const pal = usePalette('default') + const t = useTheme() return ( HomeScreen} /> HomeScreen} /> @@ -432,7 +468,7 @@ function HomeTabNavigator() { } function SearchTabNavigator() { - const pal = usePalette('default') + const t = useTheme() return ( SearchScreen} /> {commonScreens(SearchTab as typeof HomeTab)} @@ -450,7 +486,7 @@ function SearchTabNavigator() { } function NotificationsTabNavigator() { - const pal = usePalette('default') + const t = useTheme() return ( { - const pal = usePalette('default') + const t = useTheme() const numUnread = useUnreadNotifications() const screenListeners = useWebScrollRestoration() const title = (page: MessageDescriptor) => bskyTitle(i18n._(page), numUnread) @@ -541,7 +577,7 @@ const FlatNavigator = () => { gestureEnabled: true, fullScreenGestureEnabled: true, headerShown: false, - contentStyle: pal.view, + contentStyle: t.atoms.bg, }}> = { @@ -35,31 +37,65 @@ export function setFontFamily(fontFamily: Device['fontFamily']) { /* * Unused fonts are commented out, but the files are there if we need them. */ -export function applyFonts( - style: Record, - fontFamily: 'system' | 'theme', -) { +export function applyFonts(style: TextStyle, fontFamily: 'system' | 'theme') { if (fontFamily === 'theme') { - style.fontFamily = 'InterVariable' + if (isAndroid) { + style.fontFamily = + { + 400: 'Inter-Regular', + 500: 'Inter-Regular', + 600: 'Inter-SemiBold', + 700: 'Inter-SemiBold', + 800: 'Inter-ExtraBold', + 900: 'Inter-ExtraBold', + }[String(style.fontWeight || '400')] || 'Inter-Regular' - if (style.fontStyle === 'italic') { - style.fontFamily += 'Italic' + if (style.fontStyle === 'italic') { + if (style.fontFamily === 'Inter-Regular') { + style.fontFamily = 'Inter-Italic' + } else { + style.fontFamily += 'Italic' + } + } + + /* + * These are not supported on Android and actually break the styling. + */ + delete style.fontWeight + delete style.fontStyle + } else { + style.fontFamily = 'InterVariable' + + if (style.fontStyle === 'italic') { + style.fontFamily += 'Italic' + } } - // fallback families only supported on web if (isWeb) { - style.fontFamily += `, ${FAMILIES}` + // fallback families only supported on web + style.fontFamily += `, ${WEB_FONT_FAMILIES}` } + + /** + * Disable contextual alternates in Inter + * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant} + */ + style.fontVariant = (style.fontVariant || []).concat('no-contextual') } else { // fallback families only supported on web if (isWeb) { - style.fontFamily = style.fontFamily || FAMILIES + style.fontFamily = style.fontFamily || WEB_FONT_FAMILIES } - } - /** - * Disable contextual ligatures - * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant} - */ - style.fontVariant = ['no-contextual'] + /** + * Overridden to previous spacing for the `system` font option. + * https://github.com/bluesky-social/social-app/commit/2419096e2409008b7d71fd6b8f8d0dd5b016e267 + */ + style.letterSpacing = 0.25 + } } + +/** + * Here only for bundling purposes, not actually used. + */ +export {DO_NOT_USE} from '#/alf/util/unusedUseFonts' diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts index f3ac17e6af..1d99e5e572 100644 --- a/src/alf/tokens.ts +++ b/src/alf/tokens.ts @@ -1,6 +1,6 @@ -import {Platform} from 'react-native' +import {isAndroid} from '#/platform/detection' -export const TRACKING = Platform.OS === 'android' ? 0.1 : 0 +export const TRACKING = isAndroid ? 0.1 : 0 export const color = { temp_purple: 'rgb(105 0 255)', @@ -51,12 +51,9 @@ export const borderRadius = { * These correspond to Inter font files we actually load. */ export const fontWeight = { - regular: '400', - // medium: '500', - semibold: '600', - // bold: '700', - extrabold: '800', - // black: '900', + normal: '400', + bold: '600', + heavy: '800', } as const export const gradients = { diff --git a/src/alf/util/platform.ts b/src/alf/util/platform.ts index 294e08a8b0..947f2bd163 100644 --- a/src/alf/util/platform.ts +++ b/src/alf/util/platform.ts @@ -1,25 +1,62 @@ -import {isAndroid, isIOS, isNative, isWeb} from 'platform/detection' +import {Platform} from 'react-native' +import {isAndroid, isIOS, isNative, isWeb} from '#/platform/detection' + +/** + * Identity function on web. Returns nothing on other platforms. + * + * Note: Platform splitting does not tree-shake away the other platforms, + * so don't do stuff like e.g. rely on platform-specific imports. Use + * platform-split files instead. + */ export function web(value: any) { if (isWeb) { return value } } +/** + * Identity function on iOS. Returns nothing on other platforms. + * + * Note: Platform splitting does not tree-shake away the other platforms, + * so don't do stuff like e.g. rely on platform-specific imports. Use + * platform-split files instead. + */ export function ios(value: any) { if (isIOS) { return value } } +/** + * Identity function on Android. Returns nothing on other platforms.. + * + * Note: Platform splitting does not tree-shake away the other platforms, + * so don't do stuff like e.g. rely on platform-specific imports. Use + * platform-split files instead. + */ export function android(value: any) { if (isAndroid) { return value } } +/** + * Identity function on iOS and Android. Returns nothing on web. + * + * Note: Platform splitting does not tree-shake away the other platforms, + * so don't do stuff like e.g. rely on platform-specific imports. Use + * platform-split files instead. + */ export function native(value: any) { if (isNative) { return value } } + +/** + * Note: Platform splitting does not tree-shake away the other platforms, + * so don't do stuff like e.g. rely on platform-specific imports. Use + * platform-split files instead. + */ +export const platform = Platform.select diff --git a/src/alf/util/unusedUseFonts.android.ts b/src/alf/util/unusedUseFonts.android.ts new file mode 100644 index 0000000000..083c9d4d65 --- /dev/null +++ b/src/alf/util/unusedUseFonts.android.ts @@ -0,0 +1,19 @@ +import {useFonts} from 'expo-font' + +/* + * IMPORTANT: This is unused. Expo statically extracts these fonts. + * + * All used fonts MUST be configured here. Unused fonts can be commented out. + * + * This is used for both web fonts and native fonts. + */ +export function DO_NOT_USE() { + return useFonts({ + 'Inter-Regular': require('../../../assets/fonts/inter/Inter-Regular.otf'), + 'Inter-Italic': require('../../../assets/fonts/inter/Inter-Italic.otf'), + 'Inter-Bold': require('../../../assets/fonts/inter/Inter-SemiBold.otf'), + 'Inter-BoldItalic': require('../../../assets/fonts/inter/Inter-SemiBoldItalic.otf'), + 'Inter-Black': require('../../../assets/fonts/inter/Inter-ExtraBold.otf'), + 'Inter-BlackItalic': require('../../../assets/fonts/inter/Inter-ExtraBoldItalic.otf'), + }) +} diff --git a/src/alf/util/unusedUseFonts.ts b/src/alf/util/unusedUseFonts.ts new file mode 100644 index 0000000000..70bdc285b5 --- /dev/null +++ b/src/alf/util/unusedUseFonts.ts @@ -0,0 +1,15 @@ +import {useFonts} from 'expo-font' + +/* + * IMPORTANT: This is unused. Expo statically extracts these fonts. + * + * All used fonts MUST be configured here. Unused fonts can be commented out. + * + * This is used for both web fonts and native fonts. + */ +export function DO_NOT_USE() { + return useFonts({ + InterVariable: require('../../../assets/fonts/inter/InterVariable.ttf'), + 'InterVariable-Italic': require('../../../assets/fonts/inter/InterVariable-Italic.ttf'), + }) +} diff --git a/src/alf/util/useColorModeTheme.ts b/src/alf/util/useColorModeTheme.ts index 12840c7062..561a504b2f 100644 --- a/src/alf/util/useColorModeTheme.ts +++ b/src/alf/util/useColorModeTheme.ts @@ -1,9 +1,8 @@ import React from 'react' import {ColorSchemeName, useColorScheme} from 'react-native' -import * as SystemUI from 'expo-system-ui' -import {isWeb} from 'platform/detection' -import {useThemePrefs} from 'state/shell' +import {isWeb} from '#/platform/detection' +import {useThemePrefs} from '#/state/shell' import {dark, dim, light} from '#/alf/themes' import {ThemeName} from '#/alf/types' @@ -12,7 +11,6 @@ export function useColorModeTheme(): ThemeName { React.useLayoutEffect(() => { updateDocument(theme) - SystemUI.setBackgroundColorAsync(getBackgroundColor(theme)) }, [theme]) return theme diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx index 68bb482af2..fe0daed50e 100644 --- a/src/components/AccountList.tsx +++ b/src/components/AccountList.tsx @@ -1,9 +1,12 @@ import React, {useCallback} from 'react' import {View} from 'react-native' +import {AppBskyActorDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useProfileQuery} from '#/state/queries/profile' +import {sanitizeDisplayName} from '#/lib/strings/display-names' +import {sanitizeHandle} from '#/lib/strings/handles' +import {useProfilesQuery} from '#/state/queries/profile' import {type SessionAccount, useSession} from '#/state/session' import {UserAvatar} from '#/view/com/util/UserAvatar' import {atoms as a, useTheme} from '#/alf' @@ -26,6 +29,9 @@ export function AccountList({ const {currentAccount, accounts} = useSession() const t = useTheme() const {_} = useLingui() + const {data: profiles} = useProfilesQuery({ + handles: accounts.map(acc => acc.did), + }) const onPressAddAccount = useCallback(() => { onSelectOther() @@ -43,6 +49,7 @@ export function AccountList({ {accounts.map(account => ( p.did === account.did)} account={account} onSelect={onSelectAccount} isCurrentAccount={account.did === currentAccount?.did} @@ -84,11 +91,13 @@ export function AccountList({ } function AccountItem({ + profile, account, onSelect, isCurrentAccount, isPendingAccount, }: { + profile?: AppBskyActorDefs.ProfileViewDetailed account: SessionAccount onSelect: (account: SessionAccount) => void isCurrentAccount: boolean @@ -96,9 +105,8 @@ function AccountItem({ }) { const t = useTheme() const {_} = useLingui() - const {data: profile} = useProfileQuery({did: account.did}) - const onPress = React.useCallback(() => { + const onPress = useCallback(() => { onSelect(account) }, [account, onSelect]) @@ -127,10 +135,12 @@ function AccountItem({ - {profile?.displayName || account.handle}{' '} - + {sanitizeDisplayName( + profile?.displayName || profile?.handle || account.handle, + )} + {' '} - {account.handle} + {sanitizeHandle(account.handle)} {isCurrentAccount ? ( diff --git a/src/components/Admonition.tsx b/src/components/Admonition.tsx new file mode 100644 index 0000000000..140e838e70 --- /dev/null +++ b/src/components/Admonition.tsx @@ -0,0 +1,121 @@ +import React from 'react' +import {StyleProp, View, ViewStyle} from 'react-native' + +import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo' +import {Eye_Stroke2_Corner0_Rounded as InfoIcon} from '#/components/icons/Eye' +import {Leaf_Stroke2_Corner0_Rounded as TipIcon} from '#/components/icons/Leaf' +import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning' +import {Text as BaseText, TextProps} from '#/components/Typography' + +const colors = { + warning: { + light: '#DFBC00', + dark: '#BFAF1F', + }, +} + +type Context = { + type: 'info' | 'tip' | 'warning' | 'error' +} + +const Context = React.createContext({ + type: 'info', +}) + +export function Icon() { + const t = useTheme() + const {type} = React.useContext(Context) + const Icon = { + info: InfoIcon, + tip: TipIcon, + warning: WarningIcon, + error: ErrorIcon, + }[type] + const fill = { + info: t.atoms.text_contrast_medium.color, + tip: t.palette.primary_500, + warning: colors.warning.light, + error: t.palette.negative_500, + }[type] + return +} + +export function Text({ + children, + style, + ...rest +}: Pick) { + return ( + + {children} + + ) +} + +export function Row({children}: {children: React.ReactNode}) { + return {children} +} + +export function Outer({ + children, + type = 'info', + style, +}: { + children: React.ReactNode + type?: Context['type'] + style?: StyleProp +}) { + const t = useTheme() + const {gtMobile} = useBreakpoints() + const borderColor = { + info: t.atoms.border_contrast_low.borderColor, + tip: t.atoms.border_contrast_low.borderColor, + warning: t.atoms.border_contrast_low.borderColor, + error: t.atoms.border_contrast_low.borderColor, + }[type] + return ( + + + {children} + + + ) +} + +export function Admonition({ + children, + type, + style, +}: { + children: TextProps['children'] + type?: Context['type'] + style?: StyleProp +}) { + return ( + + + + {children} + + + ) +} diff --git a/src/components/AppLanguageDropdown.tsx b/src/components/AppLanguageDropdown.tsx index 6170ab2e20..82ca4999e3 100644 --- a/src/components/AppLanguageDropdown.tsx +++ b/src/components/AppLanguageDropdown.tsx @@ -7,10 +7,10 @@ import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {APP_LANGUAGES} from '#/locale/languages' import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {resetPostsFeedQueries} from '#/state/queries/post-feed' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, ViewStyleProp} from '#/alf' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' -export function AppLanguageDropdown() { +export function AppLanguageDropdown(_props: ViewStyleProp) { const t = useTheme() const queryClient = useQueryClient() diff --git a/src/components/AppLanguageDropdown.web.tsx b/src/components/AppLanguageDropdown.web.tsx index 00a7b53011..d51b53ac07 100644 --- a/src/components/AppLanguageDropdown.web.tsx +++ b/src/components/AppLanguageDropdown.web.tsx @@ -6,11 +6,11 @@ import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {APP_LANGUAGES} from '#/locale/languages' import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {resetPostsFeedQueries} from '#/state/queries/post-feed' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, ViewStyleProp} from '#/alf' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' import {Text} from '#/components/Typography' -export function AppLanguageDropdown() { +export function AppLanguageDropdown({style}: ViewStyleProp) { const t = useTheme() const queryClient = useQueryClient() @@ -40,6 +40,7 @@ export function AppLanguageDropdown() { // We don't have hitSlop here to increase the tap region, // alternative is negative margins. {height: 32, marginVertical: -((32 - 14) / 2)}, + style, ]}> hoverStyle?: StyleProp children: NonTextElements | ((context: ButtonContext) => NonTextElements) + PressableComponent?: React.ComponentType } export type ButtonTextProps = TextProps & VariantProps & {disabled?: boolean} @@ -114,6 +115,7 @@ export const Button = React.forwardRef( disabled = false, style, hoverStyle: hoverStyleProp, + PressableComponent = Pressable, ...rest }, ref, @@ -352,7 +354,7 @@ export const Button = React.forwardRef( }) } else if (size === 'small') { baseStyles.push({ - paddingVertical: 8, + paddingVertical: 9, paddingHorizontal: 12, borderRadius: 6, gap: 6, @@ -374,7 +376,7 @@ export const Button = React.forwardRef( } } else if (size === 'small') { if (shape === 'round') { - baseStyles.push({height: 36, width: 36}) + baseStyles.push({height: 34, width: 34}) } else { baseStyles.push({height: 34, width: 34}) } @@ -449,10 +451,11 @@ export const Button = React.forwardRef( const flattenedBaseStyles = flatten([baseStyles, style]) return ( - ( {typeof children === 'function' ? children(context) : children} - + ) }, ) @@ -627,9 +630,9 @@ export function useSharedButtonTextStyles() { } if (size === 'large') { - baseStyles.push(a.text_md, a.leading_tight, web({top: -0.4})) + baseStyles.push(a.text_md, a.leading_tight) } else if (size === 'small') { - baseStyles.push(a.text_sm, a.leading_tight, web({top: -0.4})) + baseStyles.push(a.text_sm, a.leading_tight) } else if (size === 'tiny') { baseStyles.push(a.text_xs, a.leading_tight) } @@ -667,7 +670,7 @@ export function ButtonIcon({ size ?? (({ large: 'sm', - small: 'xs', + small: 'sm', tiny: 'xs', }[buttonSize || 'small'] || 'sm') as Exclude< SVGIconProps['size'], diff --git a/src/components/Dialog/context.ts b/src/components/Dialog/context.ts index 859f8edd77..b479bc7f06 100644 --- a/src/components/Dialog/context.ts +++ b/src/components/Dialog/context.ts @@ -6,9 +6,14 @@ import { DialogControlRefProps, DialogOuterProps, } from '#/components/Dialog/types' +import {BottomSheetSnapPoint} from '../../../modules/bottom-sheet/src/BottomSheet.types' export const Context = React.createContext({ close: () => {}, + isNativeDialog: false, + nativeSnapPoint: BottomSheetSnapPoint.Hidden, + disableDrag: false, + setDisableDrag: () => {}, }) export function useDialogContext() { diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index d5d92048ad..c860c4dcfe 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -1,86 +1,52 @@ import React, {useImperativeHandle} from 'react' import { - Dimensions, - Keyboard, + NativeScrollEvent, + NativeSyntheticEvent, Pressable, + ScrollView, StyleProp, + TextInput, View, ViewStyle, } from 'react-native' -import Animated, {useAnimatedStyle} from 'react-native-reanimated' +import { + KeyboardAwareScrollView, + useKeyboardController, + useKeyboardHandler, +} from 'react-native-keyboard-controller' +import {runOnJS} from 'react-native-reanimated' +import {ReanimatedScrollEvent} from 'react-native-reanimated/lib/typescript/reanimated2/hook/commonTypes' import {useSafeAreaInsets} from 'react-native-safe-area-context' -import BottomSheet, { - BottomSheetBackdropProps, - BottomSheetFlatList, - BottomSheetFlatListMethods, - BottomSheetScrollView, - BottomSheetScrollViewMethods, - BottomSheetTextInput, - BottomSheetView, - useBottomSheet, - WINDOW_HEIGHT, -} from '@discord/bottom-sheet/src' -import {BottomSheetFlatListProps} from '@discord/bottom-sheet/src/components/bottomSheetScrollable/types' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {ScrollProvider} from '#/lib/ScrollContext' import {logger} from '#/logger' +import {isAndroid, isIOS} from '#/platform/detection' +import {useA11y} from '#/state/a11y' import {useDialogStateControlContext} from '#/state/dialogs' -import {atoms as a, flatten, useTheme} from '#/alf' -import {Context} from '#/components/Dialog/context' +import {List, ListMethods, ListProps} from '#/view/com/util/List' +import {atoms as a, useTheme} from '#/alf' +import {Context, useDialogContext} from '#/components/Dialog/context' import { DialogControlProps, DialogInnerProps, DialogOuterProps, } from '#/components/Dialog/types' import {createInput} from '#/components/forms/TextField' -import {FullWindowOverlay} from '#/components/FullWindowOverlay' -import {Portal} from '#/components/Portal' +import {BottomSheet, BottomSheetSnapPoint} from '../../../modules/bottom-sheet' +import { + BottomSheetSnapPointChangeEvent, + BottomSheetStateChangeEvent, +} from '../../../modules/bottom-sheet/src/BottomSheet.types' +import {BottomSheetNativeComponent} from '../../../modules/bottom-sheet/src/BottomSheetNativeComponent' export {useDialogContext, useDialogControl} from '#/components/Dialog/context' +export * from '#/components/Dialog/shared' export * from '#/components/Dialog/types' export * from '#/components/Dialog/utils' // @ts-ignore -export const Input = createInput(BottomSheetTextInput) - -function Backdrop(props: BottomSheetBackdropProps) { - const t = useTheme() - const bottomSheet = useBottomSheet() - - const animatedStyle = useAnimatedStyle(() => { - const opacity = - (Math.abs(WINDOW_HEIGHT - props.animatedPosition.value) - 50) / 1000 - - return { - opacity: Math.min(Math.max(opacity, 0), 0.55), - } - }) - - const onPress = React.useCallback(() => { - bottomSheet.close() - }, [bottomSheet]) - - return ( - - - - ) -} +export const Input = createInput(TextInput) export function Outer({ children, @@ -90,22 +56,19 @@ export function Outer({ testID, }: React.PropsWithChildren) { const t = useTheme() - const sheet = React.useRef(null) - const sheetOptions = nativeOptions?.sheet || {} - const hasSnapPoints = !!sheetOptions.snapPoints - const insets = useSafeAreaInsets() + const ref = React.useRef(null) const closeCallbacks = React.useRef<(() => void)[]>([]) - const {setDialogIsOpen} = useDialogStateControlContext() + const {setDialogIsOpen, setFullyExpandedCount} = + useDialogStateControlContext() - /* - * Used to manage open/closed, but index is otherwise handled internally by `BottomSheet` - */ - const [openIndex, setOpenIndex] = React.useState(-1) + const prevSnapPoint = React.useRef( + BottomSheetSnapPoint.Hidden, + ) - /* - * `openIndex` is the index of the snap point to open the bottom sheet to. If >0, the bottom sheet is open. - */ - const isOpen = openIndex > -1 + const [disableDrag, setDisableDrag] = React.useState(false) + const [snapPoint, setSnapPoint] = React.useState( + BottomSheetSnapPoint.Partial, + ) const callQueuedCallbacks = React.useCallback(() => { for (const cb of closeCallbacks.current) { @@ -119,25 +82,19 @@ export function Outer({ closeCallbacks.current = [] }, []) - const open = React.useCallback( - ({index} = {}) => { - // Run any leftover callbacks that might have been queued up before calling `.open()` - callQueuedCallbacks() - - setDialogIsOpen(control.id, true) - // can be set to any index of `snapPoints`, but `0` is the first i.e. "open" - setOpenIndex(index || 0) - sheet.current?.snapToIndex(index || 0) - }, - [setDialogIsOpen, control.id, callQueuedCallbacks], - ) + const open = React.useCallback(() => { + // Run any leftover callbacks that might have been queued up before calling `.open()` + callQueuedCallbacks() + setDialogIsOpen(control.id, true) + ref.current?.present() + }, [setDialogIsOpen, control.id, callQueuedCallbacks]) // This is the function that we call when we want to dismiss the dialog. const close = React.useCallback(cb => { if (typeof cb === 'function') { closeCallbacks.current.push(cb) } - sheet.current?.close() + ref.current?.dismiss() }, []) // This is the actual thing we are doing once we "confirm" the dialog. We want the dialog's close animation to @@ -146,12 +103,39 @@ export function Outer({ // This removes the dialog from our list of stored dialogs. Not super necessary on iOS, but on Android this // tells us that we need to toggle the accessibility overlay setting setDialogIsOpen(control.id, false) - setOpenIndex(-1) - callQueuedCallbacks() onClose?.() }, [callQueuedCallbacks, control.id, onClose, setDialogIsOpen]) + const onSnapPointChange = (e: BottomSheetSnapPointChangeEvent) => { + const {snapPoint} = e.nativeEvent + setSnapPoint(snapPoint) + + if ( + snapPoint === BottomSheetSnapPoint.Full && + prevSnapPoint.current !== BottomSheetSnapPoint.Full + ) { + setFullyExpandedCount(c => c + 1) + } else if ( + snapPoint !== BottomSheetSnapPoint.Full && + prevSnapPoint.current === BottomSheetSnapPoint.Full + ) { + setFullyExpandedCount(c => c - 1) + } + prevSnapPoint.current = snapPoint + } + + const onStateChange = (e: BottomSheetStateChangeEvent) => { + if (e.nativeEvent.state === 'closed') { + onCloseAnimationComplete() + + if (prevSnapPoint.current === BottomSheetSnapPoint.Full) { + setFullyExpandedCount(c => c - 1) + } + prevSnapPoint.current = BottomSheetSnapPoint.Hidden + } + } + useImperativeHandle( control.ref, () => ({ @@ -161,159 +145,192 @@ export function Outer({ [open, close], ) - React.useEffect(() => { - return () => { - setDialogIsOpen(control.id, false) + const context = React.useMemo( + () => ({ + close, + isNativeDialog: true, + nativeSnapPoint: snapPoint, + disableDrag, + setDisableDrag, + }), + [close, snapPoint, disableDrag, setDisableDrag], + ) + + return ( + + + {children} + + + ) +} + +export function Inner({children, style, header}: DialogInnerProps) { + const insets = useSafeAreaInsets() + return ( + <> + {header} + + {children} + + + ) +} + +export const ScrollableInner = React.forwardRef( + function ScrollableInner( + {children, style, contentContainerStyle, header, ...props}, + ref, + ) { + const {nativeSnapPoint, disableDrag, setDisableDrag} = useDialogContext() + const insets = useSafeAreaInsets() + const {setEnabled} = useKeyboardController() + + const [keyboardHeight, setKeyboardHeight] = React.useState(0) + + React.useEffect(() => { + if (!isIOS) { + return + } + + setEnabled(true) + return () => { + setEnabled(false) + } + }) + + useKeyboardHandler({ + onEnd: e => { + 'worklet' + runOnJS(setKeyboardHeight)(e.height) + }, + }) + + const basePading = + (isIOS ? 30 : 50) + (isIOS ? keyboardHeight / 4 : keyboardHeight) + const fullPaddingBase = insets.bottom + insets.top + basePading + const fullPadding = isIOS ? fullPaddingBase : fullPaddingBase + 50 + + const paddingBottom = + nativeSnapPoint === BottomSheetSnapPoint.Full ? fullPadding : basePading + + const onScroll = (e: NativeSyntheticEvent) => { + if (!isAndroid) { + return + } + const {contentOffset} = e.nativeEvent + if (contentOffset.y > 0 && !disableDrag) { + setDisableDrag(true) + } else if (contentOffset.y <= 1 && disableDrag) { + setDisableDrag(false) + } } - }, [control.id, setDialogIsOpen]) - const context = React.useMemo(() => ({close}), [close]) - - return ( - isOpen && ( - - - Keyboard.dismiss()}> - - - - {children} - - - - - + return ( + + {header} + {children} + ) - ) -} - -export function Inner({children, style}: DialogInnerProps) { - const insets = useSafeAreaInsets() - return ( - - {children} - - ) -} - -export const ScrollableInner = React.forwardRef< - BottomSheetScrollViewMethods, - DialogInnerProps ->(function ScrollableInner({children, style}, ref) { - const insets = useSafeAreaInsets() - return ( - - {children} - - - ) -}) + }, +) export const InnerFlatList = React.forwardRef< - BottomSheetFlatListMethods, - BottomSheetFlatListProps & {webInnerStyle?: StyleProp} ->(function InnerFlatList({style, contentContainerStyle, ...props}, ref) { + ListMethods, + ListProps & { + webInnerStyle?: StyleProp + webInnerContentContainerStyle?: StyleProp + } +>(function InnerFlatList({style, ...props}, ref) { const insets = useSafeAreaInsets() + const {nativeSnapPoint, disableDrag, setDisableDrag} = useDialogContext() + + const onScroll = (e: ReanimatedScrollEvent) => { + 'worklet' + if (!isAndroid) { + return + } + const {contentOffset} = e + if (contentOffset.y > 0 && !disableDrag) { + runOnJS(setDisableDrag)(true) + } else if (contentOffset.y <= 1 && disableDrag) { + runOnJS(setDisableDrag)(false) + } + } return ( - - } - ref={ref} - {...props} - style={[ - a.flex_1, - a.p_xl, - a.pt_0, - a.h_full, - { - marginTop: 40, - }, - flatten(style), - ]} - /> + + + } + ref={ref} + {...props} + style={[style]} + /> + ) }) export function Handle() { const t = useTheme() + const {_} = useLingui() + const {screenReaderEnabled} = useA11y() + const {close} = useDialogContext() return ( - - + + close()} + accessibilityLabel={_(msg`Dismiss`)} + accessibilityHint={_(msg`Double tap to close the dialog`)}> + + ) } diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index bf20bd2956..41a39ffda5 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -10,7 +10,9 @@ import { import Animated, {FadeIn, FadeInDown} from 'react-native-reanimated' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {FocusScope} from '@tamagui/focus-scope' +import {DismissableLayer} from '@radix-ui/react-dismissable-layer' +import {useFocusGuards} from '@radix-ui/react-focus-guards' +import {FocusScope} from '@radix-ui/react-focus-scope' import {logger} from '#/logger' import {useDialogStateControlContext} from '#/state/dialogs' @@ -26,11 +28,13 @@ import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' import {Portal} from '#/components/Portal' export {useDialogContext, useDialogControl} from '#/components/Dialog/context' +export * from '#/components/Dialog/shared' export * from '#/components/Dialog/types' export * from '#/components/Dialog/utils' export {Input} from '#/components/forms/TextField' const stopPropagation = (e: any) => e.stopPropagation() +const preventDefault = (e: any) => e.preventDefault() export function Outer({ children, @@ -85,24 +89,13 @@ export function Outer({ [close, open], ) - React.useEffect(() => { - if (!isOpen) return - - function handler(e: KeyboardEvent) { - if (e.key === 'Escape') { - e.stopPropagation() - close() - } - } - - document.addEventListener('keydown', handler) - - return () => document.removeEventListener('keydown', handler) - }, [close, isOpen]) - const context = React.useMemo( () => ({ close, + isNativeDialog: false, + nativeSnapPoint: 0, + disableDrag: false, + setDisableDrag: () => {}, }), [close], ) @@ -162,11 +155,15 @@ export function Inner({ label, accessibilityLabelledBy, accessibilityDescribedBy, + header, + contentContainerStyle, }: DialogInnerProps) { const t = useTheme() + const {close} = React.useContext(Context) const {gtMobile} = useBreakpoints() + useFocusGuards() return ( - + - {children} + ])}> + + {header} + + {children} + + ) @@ -205,21 +210,26 @@ export const ScrollableInner = Inner export const InnerFlatList = React.forwardRef< FlatList, - FlatListProps & {label: string} & {webInnerStyle?: StyleProp} ->(function InnerFlatList({label, style, webInnerStyle, ...props}, ref) { + FlatListProps & {label: string} & { + webInnerStyle?: StyleProp + webInnerContentContainerStyle?: StyleProp + } +>(function InnerFlatList( + {label, style, webInnerStyle, webInnerContentContainerStyle, ...props}, + ref, +) { const {gtMobile} = useBreakpoints() return ( + ]} + contentContainerStyle={[a.px_0, webInnerContentContainerStyle]}> ) } + +export function Handle() { + return null +} diff --git a/src/components/Dialog/shared.tsx b/src/components/Dialog/shared.tsx new file mode 100644 index 0000000000..6f9bc26781 --- /dev/null +++ b/src/components/Dialog/shared.tsx @@ -0,0 +1,61 @@ +import React from 'react' +import {StyleProp, TextStyle, View, ViewStyle} from 'react-native' + +import {atoms as a, useTheme, web} from '#/alf' +import {Text} from '#/components/Typography' + +export function Header({ + renderLeft, + renderRight, + children, + style, +}: { + renderLeft?: () => React.ReactNode + renderRight?: () => React.ReactNode + children?: React.ReactNode + style?: StyleProp +}) { + const t = useTheme() + return ( + + {renderLeft && ( + {renderLeft()} + )} + {children} + {renderRight && ( + {renderRight()} + )} + + ) +} + +export function HeaderText({ + children, + style, +}: { + children?: React.ReactNode + style?: StyleProp +}) { + return ( + + {children} + + ) +} diff --git a/src/components/Dialog/sheet-wrapper.ts b/src/components/Dialog/sheet-wrapper.ts new file mode 100644 index 0000000000..37c6633837 --- /dev/null +++ b/src/components/Dialog/sheet-wrapper.ts @@ -0,0 +1,20 @@ +import {useCallback} from 'react' + +import {useDialogStateControlContext} from '#/state/dialogs' + +/** + * If we're calling a system API like the image picker that opens a sheet + * wrap it in this function to make sure the status bar is the correct color. + */ +export function useSheetWrapper() { + const {setFullyExpandedCount} = useDialogStateControlContext() + return useCallback( + async (promise: Promise): Promise => { + setFullyExpandedCount(c => c + 1) + const res = await promise + setFullyExpandedCount(c => c - 1) + return res + }, + [setFullyExpandedCount], + ) +} diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts index 1ddab02eea..526784baac 100644 --- a/src/components/Dialog/types.ts +++ b/src/components/Dialog/types.ts @@ -4,9 +4,12 @@ import type { GestureResponderEvent, ScrollViewProps, } from 'react-native' -import {BottomSheetProps} from '@discord/bottom-sheet/src' +import {ViewStyle} from 'react-native' +import {StyleProp} from 'react-native' import {ViewStyleProp} from '#/alf' +import {BottomSheetViewProps} from '../../../modules/bottom-sheet' +import {BottomSheetSnapPoint} from '../../../modules/bottom-sheet/src/BottomSheet.types' type A11yProps = Required @@ -37,6 +40,10 @@ export type DialogControlProps = DialogControlRefProps & { export type DialogContextProps = { close: DialogControlProps['close'] + isNativeDialog: boolean + nativeSnapPoint: BottomSheetSnapPoint + disableDrag: boolean + setDisableDrag: React.Dispatch> } export type DialogControlOpenOptions = { @@ -52,9 +59,7 @@ export type DialogControlOpenOptions = { export type DialogOuterProps = { control: DialogControlProps onClose?: () => void - nativeOptions?: { - sheet?: Omit - } + nativeOptions?: Omit webOptions?: {} testID?: string } @@ -66,10 +71,14 @@ export type DialogInnerProps = accessibilityLabelledBy: A11yProps['aria-labelledby'] accessibilityDescribedBy: string keyboardDismissMode?: ScrollViewProps['keyboardDismissMode'] + contentContainerStyle?: StyleProp + header?: React.ReactNode }> | DialogInnerPropsBase<{ label: string accessibilityLabelledBy?: undefined accessibilityDescribedBy?: undefined keyboardDismissMode?: ScrollViewProps['keyboardDismissMode'] + contentContainerStyle?: StyleProp + header?: React.ReactNode }> diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx index 24e2789e50..ff0bbb0451 100644 --- a/src/components/Divider.tsx +++ b/src/components/Divider.tsx @@ -1,6 +1,7 @@ import React from 'react' import {View} from 'react-native' -import {atoms as a, useTheme, ViewStyleProp, flatten} from '#/alf' + +import {atoms as a, flatten, useTheme, ViewStyleProp} from '#/alf' export function Divider({style}: ViewStyleProp) { const t = useTheme() diff --git a/src/components/Error.tsx b/src/components/Error.tsx index 59d219831c..a27ccb88c6 100644 --- a/src/components/Error.tsx +++ b/src/components/Error.tsx @@ -3,8 +3,8 @@ import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useGoBack} from 'lib/hooks/useGoBack' -import {CenteredView} from 'view/com/util/Views' +import {useGoBack} from '#/lib/hooks/useGoBack' +import {CenteredView} from '#/view/com/util/Views' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {Text} from '#/components/Typography' diff --git a/src/components/KeyboardControllerPadding.android.tsx b/src/components/KeyboardControllerPadding.android.tsx deleted file mode 100644 index 92ef1b0b05..0000000000 --- a/src/components/KeyboardControllerPadding.android.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react' -import {useKeyboardHandler} from 'react-native-keyboard-controller' -import Animated, { - useAnimatedStyle, - useSharedValue, -} from 'react-native-reanimated' - -export function KeyboardControllerPadding({maxHeight}: {maxHeight?: number}) { - const keyboardHeight = useSharedValue(0) - - useKeyboardHandler( - { - onMove: e => { - 'worklet' - - if (maxHeight && e.height > maxHeight) { - keyboardHeight.value = maxHeight - } else { - keyboardHeight.value = e.height - } - }, - }, - [maxHeight], - ) - - const animatedStyle = useAnimatedStyle(() => ({ - height: keyboardHeight.value, - })) - - return -} diff --git a/src/components/KeyboardControllerPadding.tsx b/src/components/KeyboardControllerPadding.tsx deleted file mode 100644 index f3163d87cf..0000000000 --- a/src/components/KeyboardControllerPadding.tsx +++ /dev/null @@ -1,7 +0,0 @@ -export function KeyboardControllerPadding({ - maxHeight: _, -}: { - maxHeight?: number -}) { - return null -} diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx new file mode 100644 index 0000000000..ea11e22174 --- /dev/null +++ b/src/components/Layout.tsx @@ -0,0 +1,100 @@ +import React, {useContext, useMemo} from 'react' +import {View, ViewStyle} from 'react-native' +import {StyleProp} from 'react-native' +import {useSafeAreaInsets} from 'react-native-safe-area-context' + +import {ViewHeader} from '#/view/com/util/ViewHeader' +import {ScrollView} from '#/view/com/util/Views' +import {CenteredView} from '#/view/com/util/Views' +import {atoms as a} from '#/alf' + +// Every screen should have a Layout component wrapping it. +// This component provides a default padding for the top of the screen. +// This allows certain screens to avoid the top padding if they want to. + +const LayoutContext = React.createContext({ + withinScreen: false, + topPaddingDisabled: false, + withinScrollView: false, +}) + +/** + * Every screen should have a Layout.Screen component wrapping it. + * This component provides a default padding for the top of the screen + * and height/minHeight + */ +let Screen = ({ + disableTopPadding = false, + style, + ...props +}: React.ComponentProps & { + disableTopPadding?: boolean + style?: StyleProp +}): React.ReactNode => { + const {top} = useSafeAreaInsets() + const context = useMemo( + () => ({ + withinScreen: true, + topPaddingDisabled: disableTopPadding, + withinScrollView: false, + }), + [disableTopPadding], + ) + return ( + + + + ) +} +Screen = React.memo(Screen) +export {Screen} + +let Header = ( + props: React.ComponentProps, +): React.ReactNode => { + const {withinScrollView} = useContext(LayoutContext) + if (!withinScrollView) { + return ( + + + + ) + } else { + return + } +} +Header = React.memo(Header) +export {Header} + +let Content = ({ + style, + contentContainerStyle, + ...props +}: React.ComponentProps & { + style?: StyleProp + contentContainerStyle?: StyleProp +}): React.ReactNode => { + const context = useContext(LayoutContext) + const newContext = useMemo( + () => ({...context, withinScrollView: true}), + [context], + ) + return ( + + + + ) +} +Content = React.memo(Content) +export {Content} diff --git a/src/components/LikedByList.tsx b/src/components/LikedByList.tsx index 0106a56181..a83f982589 100644 --- a/src/components/LikedByList.tsx +++ b/src/components/LikedByList.tsx @@ -3,11 +3,11 @@ import {AppBskyFeedGetLikes as GetLikes} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' import {useLikedByQuery} from '#/state/queries/post-liked-by' import {useResolveUriQuery} from '#/state/queries/resolve-uri' -import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' -import {cleanError} from 'lib/strings/errors' import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard' import {List} from '#/view/com/util/List' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' diff --git a/src/components/LikesDialog.tsx b/src/components/LikesDialog.tsx index 94a3f27e26..4c68596f73 100644 --- a/src/components/LikesDialog.tsx +++ b/src/components/LikesDialog.tsx @@ -1,20 +1,19 @@ -import React, {useMemo, useCallback} from 'react' +import React, {useCallback, useMemo} from 'react' import {ActivityIndicator, FlatList, View} from 'react-native' +import {AppBskyFeedGetLikes as GetLikes} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {AppBskyFeedGetLikes as GetLikes} from '@atproto/api' -import {useResolveUriQuery} from '#/state/queries/resolve-uri' -import {useLikedByQuery} from '#/state/queries/post-liked-by' import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' - -import {atoms as a, useTheme} from '#/alf' -import {Text} from '#/components/Typography' -import * as Dialog from '#/components/Dialog' -import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' +import {useLikedByQuery} from '#/state/queries/post-liked-by' +import {useResolveUriQuery} from '#/state/queries/resolve-uri' import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard' +import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' +import {atoms as a, useTheme} from '#/alf' +import * as Dialog from '#/components/Dialog' import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' interface LikesDialogProps { control: Dialog.DialogOuterProps['control'] @@ -25,7 +24,6 @@ export function LikesDialog(props: LikesDialogProps) { return ( - ) diff --git a/src/components/Link.tsx b/src/components/Link.tsx index c80b9f3707..054a543c19 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -1,15 +1,11 @@ import React from 'react' -import { - GestureResponderEvent, - Pressable, - StyleProp, - ViewStyle, -} from 'react-native' +import {GestureResponderEvent} from 'react-native' import {sanitizeUrl} from '@braintree/sanitize-url' import {StackActions, useLinkProps} from '@react-navigation/native' import {BSKY_DOWNLOAD_URL} from '#/lib/constants' import {useNavigationDeduped} from '#/lib/hooks/useNavigationDeduped' +import {useOpenLink} from '#/lib/hooks/useOpenLink' import {AllNavigatorParams} from '#/lib/routes/types' import {shareUrl} from '#/lib/sharing' import { @@ -21,7 +17,6 @@ import { import {isNative, isWeb} from '#/platform/detection' import {shouldClickOpenNewTab} from '#/platform/urls' import {useModalControls} from '#/state/modals' -import {useOpenLink} from '#/state/preferences/in-app-browser' import {atoms as a, flatten, TextStyleProp, useTheme, web} from '#/alf' import {Button, ButtonProps} from '#/components/Button' import {useInteractionState} from '#/components/hooks/useInteractionState' @@ -103,17 +98,17 @@ export function useLink({ linkRequiresWarning(href, displayText), ) - if (requiresWarning) { + if (isWeb) { e.preventDefault() + } + if (requiresWarning) { openModal({ name: 'link-warning', text: displayText, href: href, }) } else { - e.preventDefault() - if (isExternal) { openLink(href) } else { @@ -330,45 +325,22 @@ export function InlineLinkText({ } /** - * A Pressable that uses useLink to handle navigation. It is unstyled, so can be used in cases where the Button styles - * in Link are not desired. - * @param displayText - * @param style - * @param children - * @param rest - * @constructor + * Utility to create a static `onPress` handler for a `Link` that would otherwise link to a URI + * + * Example: + * ` {...})} />` */ -export function BaseLink({ - displayText, - onPress: onPressOuter, - style, - children, - ...rest -}: { - style?: StyleProp - children: React.ReactNode - to: string - action: 'push' | 'replace' | 'navigate' - onPress?: () => false | void - shareOnLongPress?: boolean - label: string - displayText?: string -}) { - const {onPress, ...btnProps} = useLink({ - displayText: displayText ?? rest.to, - ...rest, - }) - return ( - { - onPressOuter?.() - onPress(e) - }} - {...btnProps}> - {children} - - ) +export function createStaticClick( + onPressHandler: Exclude, +): Pick { + return { + to: '#', + onPress(e: GestureResponderEvent) { + e.preventDefault() + onPressHandler(e) + return false + }, + } } export function WebOnlyInlineLinkText({ diff --git a/src/components/Lists.tsx b/src/components/Lists.tsx index 2d9e61a969..16bd6a9eab 100644 --- a/src/components/Lists.tsx +++ b/src/components/Lists.tsx @@ -3,8 +3,8 @@ import {StyleProp, View, ViewStyle} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {cleanError} from 'lib/strings/errors' -import {CenteredView} from 'view/com/util/Views' +import {cleanError} from '#/lib/strings/errors' +import {CenteredView} from '#/view/com/util/Views' import {atoms as a, flatten, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {Error} from '#/components/Error' diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx index a0a21a50f9..4d35a63bdb 100644 --- a/src/components/Menu/index.tsx +++ b/src/components/Menu/index.tsx @@ -4,7 +4,7 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import flattenReactChildren from 'react-keyed-flatten-children' -import {isNative} from 'platform/detection' +import {isNative} from '#/platform/detection' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -82,19 +82,20 @@ export function Outer({ style?: StyleProp }>) { const context = React.useContext(Context) + const {_} = useLingui() return ( - + - {/* Re-wrap with context since Dialogs are portal-ed to root */} - + {children} {isNative && showCancel && } - @@ -116,15 +117,14 @@ export function Item({children, label, style, onPress, ...rest}: ItemProps) { {...rest} accessibilityHint="" accessibilityLabel={label} - onPress={e => { - onPress(e) - + onFocus={onFocus} + onBlur={onBlur} + onPress={async e => { + await onPress(e) if (!e.defaultPrevented) { control?.close() } }} - onFocus={onFocus} - onBlur={onBlur} onPressIn={e => { onPressIn() rest.onPressIn?.(e) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index 1a523a839d..6b02f88c6c 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -5,12 +5,12 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {differenceInSeconds} from 'date-fns' +import {HITSLOP_10} from '#/lib/constants' import {useGetTimeAgo} from '#/lib/hooks/useTimeAgo' +import {sanitizeDisplayName} from '#/lib/strings/display-names' import {isNative} from '#/platform/detection' import {useModerationOpts} from '#/state/preferences/moderation-opts' -import {HITSLOP_10} from 'lib/constants' -import {sanitizeDisplayName} from 'lib/strings/display-names' -import {useSession} from 'state/session' +import {useSession} from '#/state/session' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -127,7 +127,7 @@ export function NewskieDialog({ }}> }>) { const {gtMobile} = useBreakpoints() const titleId = React.useId() @@ -39,10 +42,12 @@ export function Outer({ ) return ( - + + - - void color?: ButtonColor /** * Optional i18n string. If undefined, it will default to "Confirm". @@ -194,7 +199,7 @@ export function Basic({ * Note: The dialog will close automatically when the action is pressed, you * should NOT close the dialog as a side effect of this method. */ - onConfirm: ButtonProps['onPress'] + onConfirm: (e: GestureResponderEvent) => void confirmButtonColor?: ButtonColor showCancel?: boolean }>) { diff --git a/src/components/ReportDialog/SelectLabelerView.tsx b/src/components/ReportDialog/SelectLabelerView.tsx index f7a8139ea5..039bbf123f 100644 --- a/src/components/ReportDialog/SelectLabelerView.tsx +++ b/src/components/ReportDialog/SelectLabelerView.tsx @@ -4,7 +4,6 @@ import {AppBskyLabelerDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -export {useDialogControl as useReportDialogControl} from '#/components/Dialog' import {getLabelingServiceTitle} from '#/lib/moderation' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, useButtonContext} from '#/components/Button' diff --git a/src/components/ReportDialog/SubmitView.tsx b/src/components/ReportDialog/SubmitView.tsx index e323d15042..ef4a9b7fbc 100644 --- a/src/components/ReportDialog/SubmitView.tsx +++ b/src/components/ReportDialog/SubmitView.tsx @@ -6,6 +6,7 @@ import {useLingui} from '@lingui/react' import {getLabelingServiceTitle} from '#/lib/moderation' import {ReportOption} from '#/lib/moderation/useReportOptions' +import {isAndroid} from '#/platform/detection' import {useAgent} from '#/state/session' import {CharProgress} from '#/view/com/composer/char-progress/CharProgress' import * as Toast from '#/view/com/util/Toast' @@ -225,6 +226,8 @@ export function SubmitView({ {submitting && } + {/* Maybe fix this later -h */} + {isAndroid ? : null} ) } diff --git a/src/components/ReportDialog/index.tsx b/src/components/ReportDialog/index.tsx index c87d32f9ec..4402152abe 100644 --- a/src/components/ReportDialog/index.tsx +++ b/src/components/ReportDialog/index.tsx @@ -1,5 +1,6 @@ import React from 'react' import {Pressable, View} from 'react-native' +import {ScrollView} from 'react-native-gesture-handler' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -8,12 +9,10 @@ import {useMyLabelersQuery} from '#/state/queries/preferences' export {useDialogControl as useReportDialogControl} from '#/components/Dialog' import {AppBskyLabelerDefs} from '@atproto/api' -import {BottomSheetScrollViewMethods} from '@discord/bottom-sheet/src' import {atoms as a} from '#/alf' import * as Dialog from '#/components/Dialog' import {useDelayedLoading} from '#/components/hooks/useDelayedLoading' -import {useOnKeyboardDidShow} from '#/components/hooks/useOnKeyboard' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' import {SelectLabelerView} from './SelectLabelerView' @@ -25,7 +24,6 @@ export function ReportDialog(props: ReportDialogProps) { return ( - ) @@ -37,13 +35,10 @@ function ReportDialogInner(props: ReportDialogProps) { isLoading: isLabelerLoading, data: labelers, error, - } = useMyLabelersQuery() + } = useMyLabelersQuery({excludeNonConfigurableLabelers: true}) const isLoading = useDelayedLoading(500, isLabelerLoading) - const ref = React.useRef(null) - useOnKeyboardDidShow(() => { - ref.current?.scrollToEnd({animated: true}) - }) + const ref = React.useRef(null) return ( diff --git a/src/components/StarterPack/Main/FeedsList.tsx b/src/components/StarterPack/Main/FeedsList.tsx index 7d7cd2047c..31d85ab42c 100644 --- a/src/components/StarterPack/Main/FeedsList.tsx +++ b/src/components/StarterPack/Main/FeedsList.tsx @@ -3,9 +3,9 @@ import {ListRenderItemInfo, View} from 'react-native' import {AppBskyFeedDefs} from '@atproto/api' import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' -import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' -import {isNative, isWeb} from 'platform/detection' -import {List, ListRef} from 'view/com/util/List' +import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' +import {isNative, isWeb} from '#/platform/detection' +import {List, ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' import {atoms as a, useTheme} from '#/alf' import * as FeedCard from '#/components/FeedCard' diff --git a/src/components/StarterPack/Main/PostsList.tsx b/src/components/StarterPack/Main/PostsList.tsx index 0ff84ff459..a5275ae875 100644 --- a/src/components/StarterPack/Main/PostsList.tsx +++ b/src/components/StarterPack/Main/PostsList.tsx @@ -3,11 +3,11 @@ import {View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {isNative} from '#/platform/detection' import {FeedDescriptor} from '#/state/queries/post-feed' -import {isNative} from 'platform/detection' -import {Feed} from 'view/com/posts/Feed' -import {EmptyState} from 'view/com/util/EmptyState' -import {ListRef} from 'view/com/util/List' +import {Feed} from '#/view/com/posts/Feed' +import {EmptyState} from '#/view/com/util/EmptyState' +import {ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' interface ProfilesListProps { diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index a5c7cd1b73..ecd6225bb0 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -8,13 +8,13 @@ import { } from '@atproto/api' import {InfiniteData, UseInfiniteQueryResult} from '@tanstack/react-query' -import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' -import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' -import {isBlockedOrBlocking} from 'lib/moderation/blocked-and-muted' -import {isNative, isWeb} from 'platform/detection' -import {useAllListMembersQuery} from 'state/queries/list-members' -import {useSession} from 'state/session' -import {List, ListRef} from 'view/com/util/List' +import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' +import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {isBlockedOrBlocking} from '#/lib/moderation/blocked-and-muted' +import {isNative, isWeb} from '#/platform/detection' +import {useAllListMembersQuery} from '#/state/queries/list-members' +import {useSession} from '#/state/session' +import {List, ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' import {atoms as a, useTheme} from '#/alf' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' diff --git a/src/components/StarterPack/QrCodeDialog.tsx b/src/components/StarterPack/QrCodeDialog.tsx index b2af8ff73a..2feea0973a 100644 --- a/src/components/StarterPack/QrCodeDialog.tsx +++ b/src/components/StarterPack/QrCodeDialog.tsx @@ -149,7 +149,6 @@ export function QrCodeDialog({ return ( - diff --git a/src/components/StarterPack/ShareDialog.tsx b/src/components/StarterPack/ShareDialog.tsx index 9851b08567..997c6479c5 100644 --- a/src/components/StarterPack/ShareDialog.tsx +++ b/src/components/StarterPack/ShareDialog.tsx @@ -6,14 +6,14 @@ import {AppBskyGraphDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {saveImageToMediaLibrary} from '#/lib/media/manip' +import {shareUrl} from '#/lib/sharing' +import {logEvent} from '#/lib/statsig/statsig' +import {getStarterPackOgCard} from '#/lib/strings/starter-pack' import {logger} from '#/logger' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {saveImageToMediaLibrary} from 'lib/media/manip' -import {shareUrl} from 'lib/sharing' -import {logEvent} from 'lib/statsig/statsig' -import {getStarterPackOgCard} from 'lib/strings/starter-pack' -import {isNative, isWeb} from 'platform/detection' -import * as Toast from 'view/com/util/Toast' +import {isNative, isWeb} from '#/platform/detection' +import * as Toast from '#/view/com/util/Toast' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {DialogControlProps} from '#/components/Dialog' @@ -32,6 +32,7 @@ interface Props { export function ShareDialog(props: Props) { return ( + ) @@ -84,7 +85,6 @@ function ShareDialogInner({ return ( <> - {!imageLoaded || !link ? ( diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index ead9c92480..22e0a155ab 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -13,7 +13,7 @@ import {precacheStarterPack} from '#/state/queries/starter-packs' import {useSession} from '#/state/session' import {atoms as a, useTheme} from '#/alf' import {StarterPack} from '#/components/icons/StarterPack' -import {BaseLink} from '#/components/Link' +import {Link as BaseLink, LinkProps as BaseLinkProps} from '#/components/Link' import {Text} from '#/components/Typography' export function Default({ @@ -62,14 +62,20 @@ export function Card({ } return ( - - + + {!noIcon ? : null} - - + + {record.name} - + {creator?.did === currentAccount?.did ? _(msg`Starter pack by you`) : _(msg`Starter pack by ${sanitizeHandle(creator.handle, '@')}`)} @@ -96,7 +102,7 @@ export function Link({ }: { starterPack: AppBskyGraphDefs.StarterPackViewBasic onPress?: () => void - children: React.ReactNode + children: BaseLinkProps['children'] }) { const {_} = useLingui() const queryClient = useQueryClient() @@ -123,7 +129,8 @@ export function Link({ starterPack.creator.did, ) precacheStarterPack(queryClient, starterPack) - }}> + }} + style={[a.flex_col, a.align_start]}> {children} ) @@ -140,7 +147,6 @@ export function Embed({ return ( (null) + const listRef = useRef(null) const getData = () => { if (state.currentStep === 'Feeds') return state.feeds @@ -76,10 +76,7 @@ export function WizardEditListDialog({ ) return ( - + @@ -143,8 +135,6 @@ export function WizardEditListDialog({ paddingHorizontal: 0, marginTop: 0, paddingTop: 0, - borderTopLeftRadius: 40, - borderTopRightRadius: 40, }), ]} webInnerStyle={[a.py_0, {maxWidth: 500, minWidth: 200}]} diff --git a/src/components/SubtleWebHover.tsx b/src/components/SubtleWebHover.tsx new file mode 100644 index 0000000000..e6f427237b --- /dev/null +++ b/src/components/SubtleWebHover.tsx @@ -0,0 +1,3 @@ +export function SubtleWebHover({}: {hover: boolean}) { + return null +} diff --git a/src/components/SubtleWebHover.web.tsx b/src/components/SubtleWebHover.web.tsx new file mode 100644 index 0000000000..e98251e0dd --- /dev/null +++ b/src/components/SubtleWebHover.web.tsx @@ -0,0 +1,48 @@ +import React from 'react' +import {StyleSheet, View} from 'react-native' + +import {isTouchDevice} from '#/lib/browser' +import {useTheme} from '#/alf' + +export function SubtleWebHover({hover}: {hover: boolean}) { + const t = useTheme() + if (isTouchDevice) { + return null + } + let opacity: number + switch (t.name) { + case 'dark': + opacity = 0.4 + break + case 'dim': + opacity = 0.45 + break + case 'light': + opacity = 0.5 + break + } + return ( + + ) +} + +const styles = StyleSheet.create({ + container: { + position: 'absolute', + left: 0, + right: 0, + bottom: 0, + top: 0, + pointerEvents: 'none', + // @ts-ignore web only + transition: '0.15s ease-in-out opacity', + }, +}) diff --git a/src/components/TagMenu/index.tsx b/src/components/TagMenu/index.tsx index 2c6a0b674c..ae9fcdae21 100644 --- a/src/components/TagMenu/index.tsx +++ b/src/components/TagMenu/index.tsx @@ -4,7 +4,6 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' -import {makeSearchLink} from '#/lib/routes/links' import {NavigationProp} from '#/lib/routes/types' import {isInvalidHandle} from '#/lib/strings/handles' import { @@ -19,7 +18,7 @@ import {Divider} from '#/components/Divider' import {MagnifyingGlass2_Stroke2_Corner0_Rounded as Search} from '#/components/icons/MagnifyingGlass2' import {Mute_Stroke2_Corner0_Rounded as Mute} from '#/components/icons/Mute' import {Person_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' -import {Link} from '#/components/Link' +import {createStaticClick, Link} from '#/components/Link' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' @@ -85,7 +84,6 @@ export function TagMenu({ - {isPreferencesLoading ? ( @@ -102,19 +100,14 @@ export function TagMenu({ t.atoms.bg_contrast_25, ]}> { - e.preventDefault() - + label={_(msg`View all posts with tag ${displayTag}`)} + {...createStaticClick(() => { control.close(() => { navigation.push('Hashtag', { tag: encodeURIComponent(tag), }) }) - - return false - }}> + })}> { - e.preventDefault() - + {...createStaticClick(() => { control.close(() => { navigation.push('Hashtag', { tag: encodeURIComponent(tag), author: authorHandle, }) }) - - return false - }}> + })}> & { title?: string } & ( | { - emoji: true + emoji?: true children: StringChild } | { @@ -53,11 +53,14 @@ export function childIsString( ) } -export function renderChildrenWithEmoji(children: StringChild) { +export function renderChildrenWithEmoji( + children: StringChild, + props: Omit = {}, +) { const normalized = Array.isArray(children) ? children : [children] return ( - + {normalized.map(child => { if (typeof child !== 'string') return child @@ -68,10 +71,12 @@ export function renderChildrenWithEmoji(children: StringChild) { } return child.split(EMOJI).map((stringPart, index) => ( - + {stringPart} {emojis[index] ? ( - + {emojis[index]} ) : null} @@ -163,15 +168,17 @@ export function Text({ } } + const shared = { + uiTextView: true, + selectable, + style: s, + dataSet: Object.assign({tooltip: title}, dataSet || {}), + ...rest, + } + return ( - - {isIOS && emoji ? renderChildrenWithEmoji(children) : children} + + {isIOS && emoji ? renderChildrenWithEmoji(children, shared) : children} ) } diff --git a/src/components/dialogs/BirthDateSettings.tsx b/src/components/dialogs/BirthDateSettings.tsx index 08608f9d88..8f47d05b06 100644 --- a/src/components/dialogs/BirthDateSettings.tsx +++ b/src/components/dialogs/BirthDateSettings.tsx @@ -29,9 +29,8 @@ export function BirthDateSettingsDialog({ const {isLoading, error, data: preferences} = usePreferencesQuery() return ( - + - diff --git a/src/components/dialogs/EmbedConsent.tsx b/src/components/dialogs/EmbedConsent.tsx index 765b8adc7e..824155d8bb 100644 --- a/src/components/dialogs/EmbedConsent.tsx +++ b/src/components/dialogs/EmbedConsent.tsx @@ -50,7 +50,6 @@ export function EmbedConsentDialog({ return ( - diff --git a/src/components/dialogs/GifSelect.ios.tsx b/src/components/dialogs/GifSelect.ios.tsx deleted file mode 100644 index 2f867e8657..0000000000 --- a/src/components/dialogs/GifSelect.ios.tsx +++ /dev/null @@ -1,255 +0,0 @@ -import React, { - useCallback, - useImperativeHandle, - useMemo, - useRef, - useState, -} from 'react' -import {Modal, ScrollView, TextInput, View} from 'react-native' -import {msg, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' - -import {cleanError} from '#/lib/strings/errors' -import { - Gif, - useFeaturedGifsQuery, - useGifSearchQuery, -} from '#/state/queries/tenor' -import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' -import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' -import {FlatList_INTERNAL} from '#/view/com/util/Views' -import {atoms as a, useBreakpoints, useTheme} from '#/alf' -import * as TextField from '#/components/forms/TextField' -import {MagnifyingGlass2_Stroke2_Corner0_Rounded as Search} from '#/components/icons/MagnifyingGlass2' -import {Button, ButtonText} from '../Button' -import {Handle} from '../Dialog' -import {useThrottledValue} from '../hooks/useThrottledValue' -import {ListFooter, ListMaybePlaceholder} from '../Lists' -import {GifPreview} from './GifSelect.shared' - -export function GifSelectDialog({ - controlRef, - onClose, - onSelectGif: onSelectGifProp, -}: { - controlRef: React.RefObject<{open: () => void}> - onClose: () => void - onSelectGif: (gif: Gif) => void -}) { - const t = useTheme() - const [open, setOpen] = useState(false) - - useImperativeHandle(controlRef, () => ({ - open: () => setOpen(true), - })) - - const close = useCallback(() => { - setOpen(false) - onClose() - }, [onClose]) - - const onSelectGif = useCallback( - (gif: Gif) => { - onSelectGifProp(gif) - close() - }, - [onSelectGifProp, close], - ) - - const renderErrorBoundary = useCallback( - (error: any) => , - [close], - ) - - return ( - - - - - - - - - ) -} - -function GifList({ - onSelectGif, -}: { - close: () => void - onSelectGif: (gif: Gif) => void -}) { - const {_} = useLingui() - const t = useTheme() - const {gtMobile} = useBreakpoints() - const textInputRef = useRef(null) - const listRef = useRef(null) - const [undeferredSearch, setSearch] = useState('') - const search = useThrottledValue(undeferredSearch, 500) - - const isSearching = search.length > 0 - - const trendingQuery = useFeaturedGifsQuery() - const searchQuery = useGifSearchQuery(search) - - const { - data, - fetchNextPage, - isFetchingNextPage, - hasNextPage, - error, - isLoading, - isError, - refetch, - } = isSearching ? searchQuery : trendingQuery - - const flattenedData = useMemo(() => { - return data?.pages.flatMap(page => page.results) || [] - }, [data]) - - const renderItem = useCallback( - ({item}: {item: Gif}) => { - return - }, - [onSelectGif], - ) - - const onEndReached = React.useCallback(() => { - if (isFetchingNextPage || !hasNextPage || error) return - fetchNextPage() - }, [isFetchingNextPage, hasNextPage, error, fetchNextPage]) - - const hasData = flattenedData.length > 0 - - const onGoBack = useCallback(() => { - if (isSearching) { - // clear the input and reset the state - textInputRef.current?.clear() - setSearch('') - } else { - close() - } - }, [isSearching]) - - const listHeader = useMemo(() => { - return ( - - {/* cover top corners */} - - - - - { - setSearch(text) - listRef.current?.scrollToOffset({offset: 0, animated: false}) - }} - returnKeyType="search" - clearButtonMode="while-editing" - inputRef={textInputRef} - maxLength={50} - /> - - - ) - }, [t.atoms.bg, _]) - - return ( - - {listHeader} - {!hasData && ( - - )} - - } - stickyHeaderIndices={[0]} - onEndReached={onEndReached} - onEndReachedThreshold={4} - keyExtractor={(item: Gif) => item.id} - keyboardDismissMode="on-drag" - ListFooterComponent={ - hasData ? ( - - ) : null - } - /> - ) -} - -function ModalError({details, close}: {details?: string; close: () => void}) { - const {_} = useLingui() - - return ( - - - - - ) -} diff --git a/src/components/dialogs/GifSelect.shared.tsx b/src/components/dialogs/GifSelect.shared.tsx deleted file mode 100644 index 90b2abaa83..0000000000 --- a/src/components/dialogs/GifSelect.shared.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import React, {useCallback} from 'react' -import {Image} from 'expo-image' -import {msg} from '@lingui/macro' -import {useLingui} from '@lingui/react' - -import {logEvent} from '#/lib/statsig/statsig' -import {Gif} from '#/state/queries/tenor' -import {atoms as a, useBreakpoints, useTheme} from '#/alf' -import {Button} from '../Button' - -export function GifPreview({ - gif, - onSelectGif, -}: { - gif: Gif - onSelectGif: (gif: Gif) => void -}) { - const {gtTablet} = useBreakpoints() - const {_} = useLingui() - const t = useTheme() - - const onPress = useCallback(() => { - logEvent('composer:gif:select', {}) - onSelectGif(gif) - }, [onSelectGif, gif]) - - return ( - - ) -} diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 1afc588dad..8ced355e47 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -6,10 +6,12 @@ import React, { useState, } from 'react' import {TextInput, View} from 'react-native' -import {BottomSheetFlatListMethods} from '@discord/bottom-sheet' +import {useWindowDimensions} from 'react-native' +import {Image} from 'expo-image' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {logEvent} from '#/lib/statsig/statsig' import {cleanError} from '#/lib/strings/errors' import {isWeb} from '#/platform/detection' import { @@ -19,15 +21,15 @@ import { } from '#/state/queries/tenor' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' -import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {ListMethods} from '#/view/com/util/List' +import {atoms as a, ios, native, useBreakpoints, useTheme, web} from '#/alf' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' import * as TextField from '#/components/forms/TextField' import {useThrottledValue} from '#/components/hooks/useThrottledValue' import {ArrowLeft_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow' import {MagnifyingGlass2_Stroke2_Corner0_Rounded as Search} from '#/components/icons/MagnifyingGlass2' -import {Button, ButtonIcon, ButtonText} from '../Button' -import {ListFooter, ListMaybePlaceholder} from '../Lists' -import {GifPreview} from './GifSelect.shared' +import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' export function GifSelectDialog({ controlRef, @@ -35,7 +37,7 @@ export function GifSelectDialog({ onSelectGif: onSelectGifProp, }: { controlRef: React.RefObject<{open: () => void}> - onClose: () => void + onClose?: () => void onSelectGif: (gif: Gif) => void }) { const control = Dialog.useDialogControl() @@ -59,8 +61,12 @@ export function GifSelectDialog({ return ( + onClose={onClose} + nativeOptions={{ + bottomInset: 0, + // use system corner radius on iOS + ...ios({cornerRadius: undefined}), + }}> @@ -80,9 +86,10 @@ function GifList({ const t = useTheme() const {gtMobile} = useBreakpoints() const textInputRef = useRef(null) - const listRef = useRef(null) + const listRef = useRef(null) const [undeferredSearch, setSearch] = useState('') const search = useThrottledValue(undeferredSearch, 500) + const {height} = useWindowDimensions() const isSearching = search.length > 0 @@ -95,7 +102,7 @@ function GifList({ isFetchingNextPage, hasNextPage, error, - isLoading, + isPending, isError, refetch, } = isSearching ? searchQuery : trendingQuery @@ -132,11 +139,12 @@ function GifList({ return ( {/* cover top corners */} {listHeader} {!hasData && ( item.id} - // @ts-expect-error web only - style={isWeb && {minHeight: '100vh'}} keyboardDismissMode="on-drag" ListFooterComponent={ hasData ? ( @@ -273,3 +284,47 @@ function DialogError({details}: {details?: string}) { ) } + +export function GifPreview({ + gif, + onSelectGif, +}: { + gif: Gif + onSelectGif: (gif: Gif) => void +}) { + const {gtTablet} = useBreakpoints() + const {_} = useLingui() + const t = useTheme() + + const onPress = useCallback(() => { + logEvent('composer:gif:select', {}) + onSelectGif(gif) + }, [onSelectGif, gif]) + + return ( + + ) +} diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx index 47eefae6f9..0b8b386d30 100644 --- a/src/components/dialogs/PostInteractionSettingsDialog.tsx +++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx @@ -204,7 +204,9 @@ export function PostInteractionSettingsDialogControlledInner( label={_(msg`Edit post interaction settings`)} style={[{maxWidth: 500}, a.w_full]}> {isLoading ? ( - + + + ) : ( - @@ -57,6 +56,8 @@ export function SwitchAccountDialog({ pendingDid={pendingDid} /> + + ) diff --git a/src/components/dialogs/VerifyEmailDialog.tsx b/src/components/dialogs/VerifyEmailDialog.tsx new file mode 100644 index 0000000000..8dfb9bc490 --- /dev/null +++ b/src/components/dialogs/VerifyEmailDialog.tsx @@ -0,0 +1,254 @@ +import React from 'react' +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {cleanError} from '#/lib/strings/errors' +import {logger} from '#/logger' +import {useModalControls} from '#/state/modals' +import {useAgent, useSession} from '#/state/session' +import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' +import {atoms as a, useBreakpoints} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import * as TextField from '#/components/forms/TextField' +import {InlineLinkText} from '#/components/Link' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +export function VerifyEmailDialog({ + control, +}: { + control: Dialog.DialogControlProps +}) { + const agent = useAgent() + + const [didVerify, setDidVerify] = React.useState(false) + + return ( + { + if (!didVerify) { + return + } + + try { + await agent.resumeSession(agent.session!) + } catch (e: unknown) { + logger.error(String(e)) + return + } + }}> + + + + ) +} + +export function Inner({ + control, + setDidVerify, +}: { + control: Dialog.DialogControlProps + setDidVerify: (value: boolean) => void +}) { + const {_} = useLingui() + const {currentAccount} = useSession() + const agent = useAgent() + const {openModal} = useModalControls() + const {gtMobile} = useBreakpoints() + + const [currentStep, setCurrentStep] = React.useState< + 'StepOne' | 'StepTwo' | 'StepThree' + >('StepOne') + const [confirmationCode, setConfirmationCode] = React.useState('') + const [isProcessing, setIsProcessing] = React.useState(false) + const [error, setError] = React.useState('') + + const uiStrings = { + StepOne: { + title: _(msg`Verify Your Email`), + message: '', + }, + StepTwo: { + title: _(msg`Enter Code`), + message: _( + msg`An email has been sent! Please enter the confirmation code included in the email below.`, + ), + }, + StepThree: { + title: _(msg`Success!`), + message: _(msg`Thank you! Your email has been successfully verified.`), + }, + } + + const onSendEmail = async () => { + setError('') + setIsProcessing(true) + try { + await agent.com.atproto.server.requestEmailConfirmation() + setCurrentStep('StepTwo') + } catch (e: unknown) { + setError(cleanError(e)) + } finally { + setIsProcessing(false) + } + } + + const onVerifyEmail = async () => { + setError('') + setIsProcessing(true) + try { + await agent.com.atproto.server.confirmEmail({ + email: (currentAccount?.email || '').trim(), + token: confirmationCode.trim(), + }) + } catch (e: unknown) { + setError(cleanError(String(e))) + setIsProcessing(false) + return + } + + setIsProcessing(false) + setDidVerify(true) + setCurrentStep('StepThree') + } + + return ( + + + + + + {uiStrings[currentStep].title} + + {error ? ( + + + + ) : null} + + {currentStep === 'StepOne' ? ( + <> + + You'll receive an email at{' '} + + {currentAccount?.email} + {' '} + to verify it's you. + {' '} + { + e.preventDefault() + control.close(() => { + openModal({name: 'change-email'}) + }) + return false + }}> + Need to change it? + + + ) : ( + uiStrings[currentStep].message + )} + + + {currentStep === 'StepTwo' ? ( + + + Confirmation Code + + + + + + ) : null} + + {currentStep === 'StepOne' ? ( + <> + + + + ) : currentStep === 'StepTwo' ? ( + <> + + + + ) : currentStep === 'StepThree' ? ( + + ) : null} + + + + ) +} diff --git a/src/components/dialogs/nuxs/NeueTypography.tsx b/src/components/dialogs/nuxs/NeueTypography.tsx index f160c87743..f29dc356dd 100644 --- a/src/components/dialogs/nuxs/NeueTypography.tsx +++ b/src/components/dialogs/nuxs/NeueTypography.tsx @@ -44,7 +44,6 @@ export function NeueTypography() { return ( - diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index e7476972ad..d17615aeb5 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -41,7 +41,7 @@ const queuedNuxs: { id: Nux.NeueTypography, enabled(props) { if (props.currentProfile.createdAt) { - if (new Date(props.currentProfile.createdAt) < new Date('2024-10-01')) { + if (new Date(props.currentProfile.createdAt) < new Date('2024-10-09')) { return true } } diff --git a/src/components/dms/ActionsWrapper.tsx b/src/components/dms/ActionsWrapper.tsx index 1bb57ff90b..9b06bd0b20 100644 --- a/src/components/dms/ActionsWrapper.tsx +++ b/src/components/dms/ActionsWrapper.tsx @@ -12,8 +12,8 @@ import {ChatBskyConvoDefs} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {HITSLOP_10} from 'lib/constants' -import {useHaptics} from 'lib/haptics' +import {HITSLOP_10} from '#/lib/constants' +import {useHaptics} from '#/lib/haptics' import {atoms as a} from '#/alf' import {MessageMenu} from '#/components/dms/MessageMenu' import {useMenuControl} from '#/components/Menu' diff --git a/src/components/dms/BlockedByListDialog.tsx b/src/components/dms/BlockedByListDialog.tsx index b786e36815..2a83ea8c0e 100644 --- a/src/components/dms/BlockedByListDialog.tsx +++ b/src/components/dms/BlockedByListDialog.tsx @@ -4,7 +4,7 @@ import {ModerationCause} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {listUriToHref} from 'lib/strings/url-helpers' +import {listUriToHref} from '#/lib/strings/url-helpers' import {atoms as a, useTheme} from '#/alf' import * as Dialog from '#/components/Dialog' import {DialogControlProps} from '#/components/Dialog' diff --git a/src/components/dms/ChatEmptyPill.tsx b/src/components/dms/ChatEmptyPill.tsx index 4633832fc3..ffd022f560 100644 --- a/src/components/dms/ChatEmptyPill.tsx +++ b/src/components/dms/ChatEmptyPill.tsx @@ -9,10 +9,10 @@ import Animated, { import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {ScaleAndFadeIn} from 'lib/custom-animations/ScaleAndFade' -import {ShrinkAndPop} from 'lib/custom-animations/ShrinkAndPop' -import {useHaptics} from 'lib/haptics' -import {isWeb} from 'platform/detection' +import {ScaleAndFadeIn} from '#/lib/custom-animations/ScaleAndFade' +import {ShrinkAndPop} from '#/lib/custom-animations/ShrinkAndPop' +import {useHaptics} from '#/lib/haptics' +import {isWeb} from '#/platform/detection' import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' diff --git a/src/components/dms/ConvoMenu.tsx b/src/components/dms/ConvoMenu.tsx index a4fa625fae..affc292c18 100644 --- a/src/components/dms/ConvoMenu.tsx +++ b/src/components/dms/ConvoMenu.tsx @@ -136,7 +136,7 @@ let ConvoMenu = ({ + onPress={() => leaveConvoControl.open()}> Leave conversation @@ -195,7 +195,7 @@ let ConvoMenu = ({ + onPress={() => reportControl.open()}> Report conversation @@ -206,7 +206,7 @@ let ConvoMenu = ({ + onPress={() => leaveConvoControl.open()}> Leave conversation diff --git a/src/components/dms/DateDivider.tsx b/src/components/dms/DateDivider.tsx new file mode 100644 index 0000000000..a9c82e8ea2 --- /dev/null +++ b/src/components/dms/DateDivider.tsx @@ -0,0 +1,80 @@ +import React from 'react' +import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {subDays} from 'date-fns' + +import {atoms as a, useTheme} from '#/alf' +import {Text} from '../Typography' +import {localDateString} from './util' + +const timeFormatter = new Intl.DateTimeFormat(undefined, { + hour: 'numeric', + minute: 'numeric', +}) +const weekdayFormatter = new Intl.DateTimeFormat(undefined, { + weekday: 'long', +}) +const longDateFormatter = new Intl.DateTimeFormat(undefined, { + weekday: 'short', + month: 'long', + day: 'numeric', +}) +const longDateFormatterWithYear = new Intl.DateTimeFormat(undefined, { + weekday: 'short', + month: 'long', + day: 'numeric', + year: 'numeric', +}) + +let DateDivider = ({date: dateStr}: {date: string}): React.ReactNode => { + const {_} = useLingui() + const t = useTheme() + + let date: string + const time = timeFormatter.format(new Date(dateStr)) + + const timestamp = new Date(dateStr) + + const today = new Date() + const yesterday = subDays(today, 1) + const oneWeekAgo = subDays(today, 7) + + if (localDateString(today) === localDateString(timestamp)) { + date = _(msg`Today`) + } else if (localDateString(yesterday) === localDateString(timestamp)) { + date = _(msg`Yesterday`) + } else { + if (timestamp < oneWeekAgo) { + if (timestamp.getFullYear() === today.getFullYear()) { + date = longDateFormatter.format(timestamp) + } else { + date = longDateFormatterWithYear.format(timestamp) + } + } else { + date = weekdayFormatter.format(timestamp) + } + } + + return ( + + + + + {date} + {' '} + at {time} + + + + ) +} +DateDivider = React.memo(DateDivider) +export {DateDivider} diff --git a/src/components/dms/LeaveConvoPrompt.tsx b/src/components/dms/LeaveConvoPrompt.tsx index b0dd83b294..2baa07b468 100644 --- a/src/components/dms/LeaveConvoPrompt.tsx +++ b/src/components/dms/LeaveConvoPrompt.tsx @@ -3,10 +3,10 @@ import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' -import {NavigationProp} from 'lib/routes/types' -import {isNative} from 'platform/detection' -import {useLeaveConvo} from 'state/queries/messages/leave-conversation' -import * as Toast from 'view/com/util/Toast' +import {NavigationProp} from '#/lib/routes/types' +import {isNative} from '#/platform/detection' +import {useLeaveConvo} from '#/state/queries/messages/leave-conversation' +import * as Toast from '#/view/com/util/Toast' import {DialogOuterProps} from '#/components/Dialog' import * as Prompt from '#/components/Prompt' diff --git a/src/components/dms/MessageItem.tsx b/src/components/dms/MessageItem.tsx index c5c472cf08..52220e2cac 100644 --- a/src/components/dms/MessageItem.tsx +++ b/src/components/dms/MessageItem.tsx @@ -17,13 +17,15 @@ import {useLingui} from '@lingui/react' import {ConvoItem} from '#/state/messages/convo/types' import {useSession} from '#/state/session' -import {TimeElapsed} from 'view/com/util/TimeElapsed' +import {TimeElapsed} from '#/view/com/util/TimeElapsed' import {atoms as a, useTheme} from '#/alf' import {ActionsWrapper} from '#/components/dms/ActionsWrapper' import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' import {isOnlyEmoji, RichText} from '../RichText' +import {DateDivider} from './DateDivider' import {MessageItemEmbed} from './MessageItemEmbed' +import {localDateString} from './util' let MessageItem = ({ item, @@ -33,14 +35,37 @@ let MessageItem = ({ const t = useTheme() const {currentAccount} = useSession() - const {message, nextMessage} = item + const {message, nextMessage, prevMessage} = item const isPending = item.type === 'pending-message' const isFromSelf = message.sender?.did === currentAccount?.did + const nextIsMessage = ChatBskyConvoDefs.isMessageView(nextMessage) + const isNextFromSelf = - ChatBskyConvoDefs.isMessageView(nextMessage) && - nextMessage.sender?.did === currentAccount?.did + nextIsMessage && nextMessage.sender?.did === currentAccount?.did + + const isNextFromSameSender = isNextFromSelf === isFromSelf + + const isNewDay = useMemo(() => { + if (!prevMessage) return true + + const thisDate = new Date(message.sentAt) + const prevDate = new Date(prevMessage.sentAt) + + return localDateString(thisDate) !== localDateString(prevDate) + }, [message, prevMessage]) + + const isLastMessageOfDay = useMemo(() => { + if (!nextMessage || !nextIsMessage) return true + + const thisDate = new Date(message.sentAt) + const prevDate = new Date(nextMessage.sentAt) + + return localDateString(thisDate) !== localDateString(prevDate) + }, [message.sentAt, nextIsMessage, nextMessage]) + + const needsTail = isLastMessageOfDay || !isNextFromSameSender const isLastInGroup = useMemo(() => { // if this message is pending, it means the next message is pending too @@ -48,24 +73,19 @@ let MessageItem = ({ return false } - // if the next message is from a different sender, then it's the last in the group - if (isFromSelf ? !isNextFromSelf : isNextFromSelf) { - return true - } - - // or, if there's a 3 minute gap between this message and the next + // or, if there's a 5 minute gap between this message and the next if (ChatBskyConvoDefs.isMessageView(nextMessage)) { const thisDate = new Date(message.sentAt) const nextDate = new Date(nextMessage.sentAt) const diff = nextDate.getTime() - thisDate.getTime() - // 3 minutes - return diff > 3 * 60 * 1000 + // 5 minutes + return diff > 5 * 60 * 1000 } return true - }, [message, nextMessage, isFromSelf, isNextFromSelf, isPending]) + }, [message, nextMessage, isPending]) const lastInGroupRef = useRef(isLastInGroup) if (lastInGroupRef.current !== isLastInGroup) { @@ -80,52 +100,59 @@ let MessageItem = ({ }, [message.text, message.facets]) return ( - - - {AppBskyEmbedRecord.isView(message.embed) && ( - - )} - {rt.text.length > 0 && ( - - - - )} - + <> + {isNewDay && } + + + {AppBskyEmbedRecord.isView(message.embed) && ( + + )} + {rt.text.length > 0 && ( + + + + )} + - {isLastInGroup && ( - - )} - + {isLastInGroup && ( + + )} + + ) } MessageItem = React.memo(MessageItem) @@ -165,31 +192,12 @@ let MessageItemMetadata = ({ const diff = now.getTime() - date.getTime() - // if under 1 minute - if (diff < 1000 * 60) { + // if under 30 seconds + if (diff < 1000 * 30) { return _(msg`Now`) } - // if in the last day - if (localDateString(now) === localDateString(date)) { - return time - } - - // if yesterday - const yesterday = new Date(now) - yesterday.setDate(yesterday.getDate() - 1) - - if (localDateString(yesterday) === localDateString(date)) { - return _(msg`Yesterday, ${time}`) - } - - return i18n.date(date, { - hour: 'numeric', - minute: 'numeric', - day: 'numeric', - month: 'numeric', - year: 'numeric', - }) + return time }, [_], ) @@ -242,15 +250,5 @@ let MessageItemMetadata = ({ ) } - MessageItemMetadata = React.memo(MessageItemMetadata) export {MessageItemMetadata} - -function localDateString(date: Date) { - // can't use toISOString because it should be in local time - const mm = date.getMonth() - const dd = date.getDate() - const yyyy = date.getFullYear() - // not padding with 0s because it's not necessary, it's just used for comparison - return `${yyyy}-${mm}-${dd}` -} diff --git a/src/components/dms/MessageMenu.tsx b/src/components/dms/MessageMenu.tsx index 2978d2b220..c1867e7270 100644 --- a/src/components/dms/MessageMenu.tsx +++ b/src/components/dms/MessageMenu.tsx @@ -5,13 +5,13 @@ import {ChatBskyConvoDefs, RichText} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {useOpenLink} from '#/lib/hooks/useOpenLink' import {richTextToString} from '#/lib/strings/rich-text-helpers' import {getTranslatorLink} from '#/locale/helpers' +import {isWeb} from '#/platform/detection' +import {useConvoActive} from '#/state/messages/convo' import {useLanguagePrefs} from '#/state/preferences' -import {useOpenLink} from '#/state/preferences/in-app-browser' -import {isWeb} from 'platform/detection' -import {useConvoActive} from 'state/messages/convo' -import {useSession} from 'state/session' +import {useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useTheme} from '#/alf' import {ReportDialog} from '#/components/dms/ReportDialog' @@ -120,7 +120,7 @@ export let MessageMenu = ({ + onPress={() => deleteControl.open()}> {_(msg`Delete for me`)} @@ -128,7 +128,7 @@ export let MessageMenu = ({ + onPress={() => reportControl.open()}> {_(msg`Report`)} diff --git a/src/components/dms/MessageProfileButton.tsx b/src/components/dms/MessageProfileButton.tsx index 7f440d621f..932982d05e 100644 --- a/src/components/dms/MessageProfileButton.tsx +++ b/src/components/dms/MessageProfileButton.tsx @@ -4,12 +4,13 @@ import {AppBskyActorDefs} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {logEvent} from '#/lib/statsig/statsig' import {useMaybeConvoForUser} from '#/state/queries/messages/get-convo-for-members' -import {logEvent} from 'lib/statsig/statsig' import {atoms as a, useTheme} from '#/alf' -import {Message_Stroke2_Corner0_Rounded as Message} from '../icons/Message' -import {Link} from '../Link' -import {canBeMessaged} from './util' +import {ButtonIcon} from '#/components/Button' +import {canBeMessaged} from '#/components/dms/util' +import {Message_Stroke2_Corner0_Rounded as Message} from '#/components/icons/Message' +import {Link} from '#/components/Link' export function MessageProfileButton({ profile, @@ -40,15 +41,9 @@ export function MessageProfileButton({ a.align_center, t.atoms.bg_contrast_25, a.rounded_full, - {width: 36, height: 36}, + {width: 34, height: 34}, ]}> - + ) } else { @@ -66,12 +61,9 @@ export function MessageProfileButton({ shape="round" label={_(msg`Message ${profile.handle}`)} to={`/messages/${convo.id}`} - style={[a.justify_center, {width: 36, height: 36}]} + style={[a.justify_center]} onPress={onPress}> - + ) } else { diff --git a/src/components/dms/MessagesListBlockedFooter.tsx b/src/components/dms/MessagesListBlockedFooter.tsx index a018b8623a..ec7ba28558 100644 --- a/src/components/dms/MessagesListBlockedFooter.tsx +++ b/src/components/dms/MessagesListBlockedFooter.tsx @@ -4,8 +4,8 @@ import {AppBskyActorDefs, ModerationCause} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useProfileShadow} from 'state/cache/profile-shadow' -import {useProfileBlockMutationQueue} from 'state/queries/profile' +import {useProfileShadow} from '#/state/cache/profile-shadow' +import {useProfileBlockMutationQueue} from '#/state/queries/profile' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' diff --git a/src/components/dms/MessagesNUX.tsx b/src/components/dms/MessagesNUX.tsx deleted file mode 100644 index 5c21ee05be..0000000000 --- a/src/components/dms/MessagesNUX.tsx +++ /dev/null @@ -1,175 +0,0 @@ -import React, {useCallback, useEffect} from 'react' -import {View} from 'react-native' -import {ChatBskyActorDeclaration} from '@atproto/api' -import {msg, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' - -import {useUpdateActorDeclaration} from '#/state/queries/messages/actor-declaration' -import {useProfileQuery} from '#/state/queries/profile' -import {useSession} from '#/state/session' -import * as Toast from '#/view/com/util/Toast' -import {atoms as a, useTheme, web} from '#/alf' -import {Button, ButtonText} from '#/components/Button' -import * as Dialog from '#/components/Dialog' -import * as Toggle from '#/components/forms/Toggle' -import {Message_Stroke2_Corner0_Rounded} from '#/components/icons/Message' -import {Text} from '#/components/Typography' - -export function MessagesNUX() { - const control = Dialog.useDialogControl() - - const {currentAccount} = useSession() - const {data: profile} = useProfileQuery({ - did: currentAccount!.did, - }) - - useEffect(() => { - if (profile && typeof profile.associated?.chat === 'undefined') { - const timeout = setTimeout(() => { - control.open() - }, 1000) - - return () => { - clearTimeout(timeout) - } - } - }, [profile, control]) - - if (!profile) return null - - return ( - - - - - ) -} - -function DialogInner({ - chatDeclation, -}: { - chatDeclation?: ChatBskyActorDeclaration.Record -}) { - const control = Dialog.useDialogContext() - const {_} = useLingui() - const t = useTheme() - - const [initialized, setInitialzed] = React.useState(false) - const {mutate: updateDeclaration} = useUpdateActorDeclaration({ - onError: () => { - Toast.show(_(msg`Failed to update settings`), 'xmark') - }, - }) - - const onSelectItem = useCallback( - (keys: string[]) => { - const key = keys[0] - if (!key) return - updateDeclaration(key as 'all' | 'none' | 'following') - }, - [updateDeclaration], - ) - - useEffect(() => { - if (!chatDeclation && !initialized) { - updateDeclaration('following') - setInitialzed(true) - } - }, [chatDeclation, updateDeclaration, initialized]) - - return ( - - - - - - Direct messages are here! - - - Privately chat with other users. - - - - - - Who can message you? - - - You can change this at any time. - - - - - - - - Everyone - - - - - - Users I follow - - - - - - No one - - - - - - - - - - - - ) -} diff --git a/src/components/dms/NewMessagesPill.tsx b/src/components/dms/NewMessagesPill.tsx index 924f7c4558..2f7ff8f4b0 100644 --- a/src/components/dms/NewMessagesPill.tsx +++ b/src/components/dms/NewMessagesPill.tsx @@ -12,9 +12,9 @@ import {Trans} from '@lingui/macro' import { ScaleAndFadeIn, ScaleAndFadeOut, -} from 'lib/custom-animations/ScaleAndFade' -import {useHaptics} from 'lib/haptics' -import {isAndroid, isIOS, isWeb} from 'platform/detection' +} from '#/lib/custom-animations/ScaleAndFade' +import {useHaptics} from '#/lib/haptics' +import {isAndroid, isIOS, isWeb} from '#/platform/detection' import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' diff --git a/src/components/dms/ReportDialog.tsx b/src/components/dms/ReportDialog.tsx index 5493a1c87f..06d69ff4be 100644 --- a/src/components/dms/ReportDialog.tsx +++ b/src/components/dms/ReportDialog.tsx @@ -10,13 +10,11 @@ import {useLingui} from '@lingui/react' import {useMutation} from '@tanstack/react-query' import {ReportOption} from '#/lib/moderation/useReportOptions' -import {isAndroid} from '#/platform/detection' import {useAgent} from '#/state/session' import {CharProgress} from '#/view/com/composer/char-progress/CharProgress' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import * as Dialog from '#/components/Dialog' -import {KeyboardControllerPadding} from '#/components/KeyboardControllerPadding' import {Button, ButtonIcon, ButtonText} from '../Button' import {Divider} from '../Divider' import {ChevronLeft_Stroke2_Corner0_Rounded as Chevron} from '../icons/Chevron' @@ -41,14 +39,11 @@ let ReportDialog = ({ }): React.ReactNode => { const {_} = useLingui() return ( - + - ) @@ -277,6 +272,7 @@ function PreviewMessage({message}: {message: ChatBskyConvoDefs.MessageView}) { message, key: '', nextMessage: null, + prevMessage: null, }} style={[a.text_left, a.mb_0]} /> diff --git a/src/components/dms/dialogs/NewChatDialog.tsx b/src/components/dms/dialogs/NewChatDialog.tsx index 19f6eb6dfc..e80fef2d7e 100644 --- a/src/components/dms/dialogs/NewChatDialog.tsx +++ b/src/components/dms/dialogs/NewChatDialog.tsx @@ -2,9 +2,9 @@ import React, {useCallback} from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {useGetConvoForMembers} from '#/state/queries/messages/get-convo-for-members' -import {logEvent} from 'lib/statsig/statsig' import {FAB} from '#/view/com/util/fab/FAB' import * as Toast from '#/view/com/util/Toast' import {useTheme} from '#/alf' @@ -55,10 +55,8 @@ export function NewChat({ accessibilityHint="" /> - + + (null) + const listRef = useRef(null) const {currentAccount} = useSession() - const inputRef = useRef(null) + const inputRef = useRef(null) const [searchText, setSearchText] = useState('') @@ -101,15 +98,15 @@ export function SearchablePeopleList({ }) } - _items = _items.sort(a => { + _items = _items.sort(item => { // @ts-ignore - return a.enabled ? -1 : 1 + return item.enabled ? -1 : 1 }) } } else { const placeholders: Item[] = Array(10) .fill(0) - .map((_, i) => ({ + .map((__, i) => ({ type: 'placeholder', key: i + '', })) @@ -155,9 +152,9 @@ export function SearchablePeopleList({ } // only sort follows - followsItems = followsItems.sort(a => { + followsItems = followsItems.sort(item => { // @ts-ignore - return a.enabled ? -1 : 1 + return item.enabled ? -1 : 1 }) // then append @@ -177,9 +174,9 @@ export function SearchablePeopleList({ } } - _items = _items.sort(a => { + _items = _items.sort(item => { // @ts-ignore - return a.enabled ? -1 : 1 + return item.enabled ? -1 : 1 }) } else { _items.push(...placeholders) @@ -242,57 +239,46 @@ export function SearchablePeopleList({ - - + {title} + {isWeb ? ( + + ) : null} - + item.key} style={[ web([a.py_0, {height: '100vh', maxHeight: 600}, a.px_0]), - native({ - height: '100%', - paddingHorizontal: 0, - marginTop: 0, - paddingTop: 0, - borderTopLeftRadius: 40, - borderTopRightRadius: 40, - }), + native({height: '100%'}), ]} webInnerStyle={[a.py_0, {maxWidth: 500, minWidth: 200}]} keyboardDismissMode="on-drag" @@ -396,7 +374,8 @@ function ProfileCard({ + numberOfLines={1} + emoji> {displayName} void onEscape: () => void - inputRef: React.RefObject + inputRef: React.RefObject }) { const t = useTheme() const {_} = useLingui() diff --git a/src/components/dms/dialogs/ShareViaChatDialog.tsx b/src/components/dms/dialogs/ShareViaChatDialog.tsx index 01906a430c..38b5583432 100644 --- a/src/components/dms/dialogs/ShareViaChatDialog.tsx +++ b/src/components/dms/dialogs/ShareViaChatDialog.tsx @@ -2,9 +2,9 @@ import React, {useCallback} from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {useGetConvoForMembers} from '#/state/queries/messages/get-convo-for-members' -import {logEvent} from 'lib/statsig/statsig' import * as Toast from '#/view/com/util/Toast' import * as Dialog from '#/components/Dialog' import {SearchablePeopleList} from './SearchablePeopleList' @@ -17,10 +17,8 @@ export function SendViaChatDialog({ onSelectChat: (chatId: string) => void }) { return ( - + + ) diff --git a/src/components/dms/util.ts b/src/components/dms/util.ts index 5952b9acf4..003532d0c6 100644 --- a/src/components/dms/util.ts +++ b/src/components/dms/util.ts @@ -16,3 +16,12 @@ export function canBeMessaged(profile: AppBskyActorDefs.ProfileView) { return false } } + +export function localDateString(date: Date) { + // can't use toISOString because it should be in local time + const mm = date.getMonth() + const dd = date.getDate() + const yyyy = date.getFullYear() + // not padding with 0s because it's not necessary, it's just used for comparison + return `${yyyy}-${mm}-${dd}` +} diff --git a/src/components/forms/SearchInput.tsx b/src/components/forms/SearchInput.tsx index 30791d0052..97540d0bca 100644 --- a/src/components/forms/SearchInput.tsx +++ b/src/components/forms/SearchInput.tsx @@ -23,6 +23,7 @@ export const SearchInput = React.forwardRef( function SearchInput({value, label, onClearText, ...rest}, ref) { const t = useTheme() const {_} = useLingui() + const showClear = value && value.length > 0 return ( @@ -41,11 +42,18 @@ export const SearchInput = React.forwardRef( autoCorrect={false} autoComplete="off" autoCapitalize="none" + style={[ + showClear + ? { + paddingRight: 24, + } + : {}, + ]} {...rest} /> - {value && value.length > 0 && ( + {showClear && ( & { label: string + /** + * @deprecated Controlled inputs are *strongly* discouraged. Use `defaultValue` instead where possible. + * + * See https://github.com/facebook/react-native-website/pull/4247 + */ value?: string onChangeText?: (value: string) => void isInvalid?: boolean @@ -308,10 +313,13 @@ export function SuffixText({ children, label, accessibilityHint, -}: React.PropsWithChildren<{ - label: string - accessibilityHint?: AccessibilityProps['accessibilityHint'] -}>) { + style, +}: React.PropsWithChildren< + TextStyleProp & { + label: string + accessibilityHint?: AccessibilityProps['accessibilityHint'] + } +>) { const t = useTheme() const ctx = React.useContext(Context) return ( @@ -334,6 +342,7 @@ export function SuffixText({ color: t.palette.contrast_800, } : {}, + style, ]}> {children} diff --git a/src/components/forms/Toggle.tsx b/src/components/forms/Toggle.tsx index 6dc387b239..4e3695bbf2 100644 --- a/src/components/forms/Toggle.tsx +++ b/src/components/forms/Toggle.tsx @@ -2,8 +2,8 @@ import React from 'react' import {Pressable, View, ViewStyle} from 'react-native' import Animated, {LinearTransition} from 'react-native-reanimated' +import {HITSLOP_10} from '#/lib/constants' import {isNative} from '#/platform/detection' -import {HITSLOP_10} from 'lib/constants' import { atoms as a, flatten, diff --git a/src/components/forms/ToggleButton.tsx b/src/components/forms/ToggleButton.tsx index f47a272b18..8e08665fde 100644 --- a/src/components/forms/ToggleButton.tsx +++ b/src/components/forms/ToggleButton.tsx @@ -36,7 +36,7 @@ export function Group({children, multiple, ...props}: GroupProps) { export function Button({children, ...props}: ItemProps) { return ( - + {children} ) diff --git a/src/components/hooks/dates.ts b/src/components/hooks/dates.ts index 00b70f762e..48ef03119a 100644 --- a/src/components/hooks/dates.ts +++ b/src/components/hooks/dates.ts @@ -12,19 +12,23 @@ import {formatDistance, Locale} from 'date-fns' import { ca, de, + enGB, es, fi, fr, hi, + hu, id, it, ja, ko, ptBR, ru, + th, tr, uk, zhCN, + zhHK, zhTW, } from 'date-fns/locale' @@ -38,20 +42,24 @@ const locales: Record = { en: undefined, ca, de, + ['en-GB']: enGB, es, fi, fr, ga: undefined, hi, + hu, id, it, ja, ko, ['pt-BR']: ptBR, ru, + th, tr, uk, ['zh-CN']: zhCN, + ['zh-HK']: zhHK, ['zh-TW']: zhTW, } diff --git a/src/components/hooks/useStarterPackEntry.native.ts b/src/components/hooks/useStarterPackEntry.native.ts index 212ecae71d..4104ac074f 100644 --- a/src/components/hooks/useStarterPackEntry.native.ts +++ b/src/components/hooks/useStarterPackEntry.native.ts @@ -3,10 +3,10 @@ import React from 'react' import { createStarterPackLinkFromAndroidReferrer, httpStarterPackUriToAtUri, -} from 'lib/strings/starter-pack' -import {isAndroid} from 'platform/detection' -import {useHasCheckedForStarterPack} from 'state/preferences/used-starter-packs' -import {useSetActiveStarterPack} from 'state/shell/starter-pack' +} from '#/lib/strings/starter-pack' +import {isAndroid} from '#/platform/detection' +import {useHasCheckedForStarterPack} from '#/state/preferences/used-starter-packs' +import {useSetActiveStarterPack} from '#/state/shell/starter-pack' import {Referrer, SharedPrefs} from '../../../modules/expo-bluesky-swiss-army' export function useStarterPackEntry() { diff --git a/src/components/hooks/useStarterPackEntry.ts b/src/components/hooks/useStarterPackEntry.ts index dba801e093..2c2e8c6386 100644 --- a/src/components/hooks/useStarterPackEntry.ts +++ b/src/components/hooks/useStarterPackEntry.ts @@ -1,7 +1,7 @@ import React from 'react' -import {httpStarterPackUriToAtUri} from 'lib/strings/starter-pack' -import {useSetActiveStarterPack} from 'state/shell/starter-pack' +import {httpStarterPackUriToAtUri} from '#/lib/strings/starter-pack' +import {useSetActiveStarterPack} from '#/state/shell/starter-pack' export function useStarterPackEntry() { const [ready, setReady] = React.useState(false) diff --git a/src/components/icons/Bubble.tsx b/src/components/icons/Bubble.tsx index ff6da25316..3654fcf785 100644 --- a/src/components/icons/Bubble.tsx +++ b/src/components/icons/Bubble.tsx @@ -11,3 +11,7 @@ export const Bubble_Stroke2_Corner2_Rounded = createSinglePathSVG({ export const Bubble_Stroke2_Corner3_Rounded = createSinglePathSVG({ path: 'M2.002 7a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H12.28l-4.762 2.858A1 1 0 0 1 6.002 21v-2a4 4 0 0 1-4-4V7Zm4-2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1a1 1 0 0 1 1 1v1.234l3.486-2.092a1 1 0 0 1 .514-.142h6a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-12Z', }) + +export const Bubbles_Stroke2_Corner2_Rounded = createSinglePathSVG({ + path: 'M6.002 6a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3h-1v1a3 3 0 0 1-3 3h-4.24l-4.274 2.374a1 1 0 0 1-1.486-.874V19a3 3 0 0 1-3-3v-6a3 3 0 0 1 3-3h1V6Zm-1 3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h1a1 1 0 0 1 1 1v.8l3.015-1.674a1 1 0 0 1 .485-.126h4.5a1 1 0 0 0 1-1v-1.933a1 1 0 0 1 0-.134V10a1 1 0 0 0-1-1h-10Zm13 4v-3a3 3 0 0 0-3-3h-7V6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-1Z', +}) diff --git a/src/components/icons/Car.tsx b/src/components/icons/Car.tsx new file mode 100644 index 0000000000..25859176ac --- /dev/null +++ b/src/components/icons/Car.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Car_Stroke2_Corner2_Rounded = createSinglePathSVG({ + path: 'M7.018 6a1 1 0 0 0-.808.412L5.4 5.824l.809.588L3 10.825V17a1 1 0 1 0 2 0 1 1 0 0 1 1-1h12a1 1 0 0 1 1 1 1 1 0 1 0 2 0v-5.998l-3.22-4.577A1 1 0 0 0 16.962 6H7.018ZM23 11.686V17a3 3 0 0 1-5.83 1H6.83A3.001 3.001 0 0 1 1 17v-5.5a1 1 0 1 1 0-2h.49l3.102-4.265A3 3 0 0 1 7.018 4h9.944a3 3 0 0 1 2.453 1.274l3.104 4.412H23a1 1 0 1 1 0 2ZM5 13a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1Zm10 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z', +}) diff --git a/src/components/icons/CircleQuestion.tsx b/src/components/icons/CircleQuestion.tsx index 4eb369379b..6242a2b514 100644 --- a/src/components/icons/CircleQuestion.tsx +++ b/src/components/icons/CircleQuestion.tsx @@ -1,5 +1,5 @@ import {createSinglePathSVG} from './TEMPLATE' export const CircleQuestion_Stroke2_Corner2_Rounded = createSinglePathSVG({ - path: 'M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" clip-rule="evenodd"/> + ) : status === 'success' ? ( - <> - + + Email Verified - + - Thanks, you have successfully verified your email address. + Thanks, you have successfully verified your email address. You + can close this dialog. - + ) : status === 'failure' ? ( - <> - + + Invalid Verification Code - + The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one. - + ) : ( - <> - + + Email Resent - + We have sent another verification email to{' '} @@ -103,38 +112,29 @@ function Inner({control}: {control: DialogControlProps}) { . - + )} - {status !== 'loading' ? ( - + + {status === 'failure' && ( + <> + - {status === 'failure' ? ( - - ) : null} - - ) : null} + + )} + + ) } diff --git a/src/components/moderation/ContentHider.tsx b/src/components/moderation/ContentHider.tsx index bf9bae5171..67aef67b46 100644 --- a/src/components/moderation/ContentHider.tsx +++ b/src/components/moderation/ContentHider.tsx @@ -4,9 +4,12 @@ import {ModerationUI} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {isJustAMute} from '#/lib/moderation' +import {ADULT_CONTENT_LABELS, isJustAMute} from '#/lib/moderation' +import {useGlobalLabelStrings} from '#/lib/moderation/useGlobalLabelStrings' +import {getDefinition, getLabelStrings} from '#/lib/moderation/useLabelInfo' import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' import {sanitizeDisplayName} from '#/lib/strings/display-names' +import {useLabelDefinitions} from '#/state/preferences' import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' import {Button} from '#/components/Button' import { @@ -34,10 +37,68 @@ export function ContentHider({ const {gtMobile} = useBreakpoints() const [override, setOverride] = React.useState(false) const control = useModerationDetailsDialogControl() + const {labelDefs} = useLabelDefinitions() + const globalLabelStrings = useGlobalLabelStrings() + const {i18n} = useLingui() const blur = modui?.blurs[0] const desc = useModerationCauseDescription(blur) + const labelName = React.useMemo(() => { + if (!modui?.blurs || !blur) { + return undefined + } + if ( + blur.type !== 'label' || + (blur.type === 'label' && blur.source.type !== 'user') + ) { + return desc.name + } + + let hasAdultContentLabel = false + const selfBlurNames = modui.blurs + .filter(cause => { + if (cause.type !== 'label') { + return false + } + if (cause.source.type !== 'user') { + return false + } + if (ADULT_CONTENT_LABELS.includes(cause.label.val)) { + if (hasAdultContentLabel) { + return false + } + hasAdultContentLabel = true + } + return true + }) + .slice(0, 2) + .map(cause => { + if (cause.type !== 'label') { + return + } + + const def = cause.labelDef || getDefinition(labelDefs, cause.label) + if (def.identifier === 'porn' || def.identifier === 'sexual') { + return _(msg`Adult Content`) + } + return getLabelStrings(i18n.locale, globalLabelStrings, def).name + }) + + if (selfBlurNames.length === 0) { + return desc.name + } + return [...new Set(selfBlurNames)].join(', ') + }, [ + _, + modui?.blurs, + blur, + desc.name, + labelDefs, + i18n.locale, + globalLabelStrings, + ]) + if (!blur || (ignoreMute && isJustAMute(modui))) { return ( @@ -99,8 +160,9 @@ export function ContentHider({ web({ marginBottom: 1, }), - ]}> - {desc.name} + ]} + numberOfLines={2}> + {labelName} {!modui.noOverride && ( - {name} - + + {name} + + {description} @@ -268,7 +270,7 @@ export function LabelerLabelPreference({ a.border, t.atoms.border_contrast_low, ]}> - + {currentPrefLabel} diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx index e63cea93b2..7d1e7d0326 100644 --- a/src/components/moderation/LabelsOnMeDialog.tsx +++ b/src/components/moderation/LabelsOnMeDialog.tsx @@ -10,6 +10,7 @@ import {useLabelInfo} from '#/lib/moderation/useLabelInfo' import {makeProfileLink} from '#/lib/routes/links' import {sanitizeHandle} from '#/lib/strings/handles' import {logger} from '#/logger' +import {isAndroid} from '#/platform/detection' import {useAgent, useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useBreakpoints, useTheme} from '#/alf' @@ -32,7 +33,6 @@ export function LabelsOnMeDialog(props: LabelsOnMeDialogProps) { return ( - ) @@ -158,23 +158,25 @@ function Label({ - - {isSelfLabel ? ( + {isSelfLabel ? ( + This label was applied by you. - ) : ( - - Source:{' '} - control.close()}> - {sourceName} - - - )} - + + ) : ( + + + Source: {' '} + + control.close()}> + {sourceName} + + + )} ) @@ -236,24 +238,26 @@ function AppealForm({ return ( <> - - Appeal "{strings.name}" label - - - - This appeal will be sent to{' '} - control.close()} - style={[a.text_md, a.leading_snug]}> - {sourceName} - - . - - + + + Appeal "{strings.name}" label + + + + This appeal will be sent to{' '} + control.close()} + style={[a.text_md, a.leading_snug]}> + {sourceName} + + . + + + } + {isAndroid && } ) } diff --git a/src/components/moderation/ModerationDetailsDialog.tsx b/src/components/moderation/ModerationDetailsDialog.tsx index 2259178538..ef40a79965 100644 --- a/src/components/moderation/ModerationDetailsDialog.tsx +++ b/src/components/moderation/ModerationDetailsDialog.tsx @@ -141,23 +141,27 @@ function ModerationDetailsDialogInner({ {modcause?.type === 'label' && ( - - {modcause.source.type === 'user' ? ( + {modcause.source.type === 'user' ? ( + This label was applied by the author. - ) : ( - - This label was applied by{' '} - control.close()} - style={a.text_md}> - {desc.source || _(msg`an unknown labeler`)} - - . - - )} - + + ) : ( + <> + + + This label was applied by{' '} + control.close()} + style={a.text_md}> + {desc.source || _(msg`an unknown labeler`)} + + . + + + + )} )} diff --git a/src/components/moderation/PostHider.tsx b/src/components/moderation/PostHider.tsx index b6fb174528..16d9127ffb 100644 --- a/src/components/moderation/PostHider.tsx +++ b/src/components/moderation/PostHider.tsx @@ -6,8 +6,8 @@ import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' -import {addStyle} from 'lib/styles' -import {precacheProfile} from 'state/queries/profile' +import {addStyle} from '#/lib/styles' +import {precacheProfile} from '#/state/queries/profile' // import {Link} from '#/components/Link' TODO this imposes some styles that screw things up import {Link} from '#/view/com/util/Link' import {atoms as a, useTheme} from '#/alf' diff --git a/src/components/moderation/ProfileHeaderAlerts.tsx b/src/components/moderation/ProfileHeaderAlerts.tsx index 94779697fb..891caec18e 100644 --- a/src/components/moderation/ProfileHeaderAlerts.tsx +++ b/src/components/moderation/ProfileHeaderAlerts.tsx @@ -2,7 +2,7 @@ import React from 'react' import {StyleProp, ViewStyle} from 'react-native' import {ModerationDecision} from '@atproto/api' -import {getModerationCauseKey} from 'lib/moderation' +import {getModerationCauseKey} from '#/lib/moderation' import * as Pills from '#/components/Pills' export function ProfileHeaderAlerts({ diff --git a/src/lib/api/feed/custom.ts b/src/lib/api/feed/custom.ts index f3ac45b6e3..c5e0a35f56 100644 --- a/src/lib/api/feed/custom.ts +++ b/src/lib/api/feed/custom.ts @@ -5,7 +5,10 @@ import { jsonStringToLex, } from '@atproto/api' -import {getContentLanguages} from '#/state/preferences/languages' +import { + getAppLanguageAsContentLanguage, + getContentLanguages, +} from '#/state/preferences/languages' import {FeedAPI, FeedAPIResponse} from './types' import {createBskyTopicsHeader, isBlueskyOwnedFeed} from './utils' @@ -103,14 +106,27 @@ async function loggedOutFetch({ limit: number cursor?: string }) { - let contentLangs = getContentLanguages().join(',') + let contentLangs = getAppLanguageAsContentLanguage() + + /** + * Copied from our root `Agent` class + * @see https://github.com/bluesky-social/atproto/blob/60df3fc652b00cdff71dd9235d98a7a4bb828f05/packages/api/src/agent.ts#L120 + */ + const labelersHeader = { + 'atproto-accept-labelers': BskyAgent.appLabelers + .map(l => `${l};redact`) + .join(', '), + } // manually construct fetch call so we can add the `lang` cache-busting param let res = await fetch( `https://api.bsky.app/xrpc/app.bsky.feed.getFeed?feed=${feed}${ cursor ? `&cursor=${cursor}` : '' }&limit=${limit}&lang=${contentLangs}`, - {method: 'GET', headers: {'Accept-Language': contentLangs}}, + { + method: 'GET', + headers: {'Accept-Language': contentLangs, ...labelersHeader}, + }, ) let data = res.ok ? jsonStringToLex(await res.text()) : null if (data?.feed?.length) { @@ -125,7 +141,7 @@ async function loggedOutFetch({ `https://api.bsky.app/xrpc/app.bsky.feed.getFeed?feed=${feed}${ cursor ? `&cursor=${cursor}` : '' }&limit=${limit}`, - {method: 'GET', headers: {'Accept-Language': ''}}, + {method: 'GET', headers: {'Accept-Language': '', ...labelersHeader}}, ) data = res.ok ? jsonStringToLex(await res.text()) : null if (data?.feed?.length) { diff --git a/src/lib/api/feed/merge.ts b/src/lib/api/feed/merge.ts index b41e82fb06..35c3440553 100644 --- a/src/lib/api/feed/merge.ts +++ b/src/lib/api/feed/merge.ts @@ -1,11 +1,11 @@ import {AppBskyFeedDefs, AppBskyFeedGetTimeline, BskyAgent} from '@atproto/api' import shuffle from 'lodash.shuffle' +import {bundleAsync} from '#/lib/async/bundle' +import {timeout} from '#/lib/async/timeout' +import {feedUriToHref} from '#/lib/strings/url-helpers' import {getContentLanguages} from '#/state/preferences/languages' import {FeedParams} from '#/state/queries/post-feed' -import {bundleAsync} from 'lib/async/bundle' -import {timeout} from 'lib/async/timeout' -import {feedUriToHref} from 'lib/strings/url-helpers' import {FeedTuner} from '../feed-manip' import {FeedTunerFn} from '../feed-manip' import {FeedAPI, FeedAPIResponse, ReasonFeedSource} from './types' diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index 1e51c7f255..46dbd1e66a 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -1,236 +1,81 @@ import { - AppBskyEmbedDefs, AppBskyEmbedExternal, AppBskyEmbedImages, AppBskyEmbedRecord, AppBskyEmbedRecordWithMedia, AppBskyEmbedVideo, + AppBskyFeedPost, AppBskyFeedPostgate, AtUri, BlobRef, BskyAgent, ComAtprotoLabelDefs, + ComAtprotoRepoApplyWrites, + ComAtprotoRepoStrongRef, RichText, } from '@atproto/api' +import {TID} from '@atproto/common-web' +import {t} from '@lingui/macro' +import {QueryClient} from '@tanstack/react-query' +import {isNetworkError} from '#/lib/strings/errors' +import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip' import {logger} from '#/logger' -import {ComposerImage, compressImage} from '#/state/gallery' -import {writePostgateRecord} from '#/state/queries/postgate' +import {compressImage} from '#/state/gallery' +import { + fetchResolveGifQuery, + fetchResolveLinkQuery, +} from '#/state/queries/resolve-link' import { createThreadgateRecord, - ThreadgateAllowUISetting, threadgateAllowUISettingToAllowRecordValue, - writeThreadgateRecord, } from '#/state/queries/threadgate' -import {isNetworkError} from 'lib/strings/errors' -import {shortenLinks, stripInvalidMentions} from 'lib/strings/rich-text-manip' -import {LinkMeta} from '../link-meta/link-meta' +import { + EmbedDraft, + PostDraft, + ThreadDraft, +} from '#/view/com/composer/state/composer' +import {createGIFDescription} from '../gif-alt-text' import {uploadBlob} from './upload-blob' export {uploadBlob} -export interface ExternalEmbedDraft { - uri: string - isLoading: boolean - meta?: LinkMeta - embed?: AppBskyEmbedRecord.Main - localThumb?: ComposerImage -} - interface PostOpts { - rawText: string + thread: ThreadDraft replyTo?: string - quote?: { - uri: string - cid: string - } - video?: { - blobRef: BlobRef - altText: string - captions: {lang: string; file: File}[] - aspectRatio?: AppBskyEmbedDefs.AspectRatio - } - extLink?: ExternalEmbedDraft - images?: ComposerImage[] - labels?: string[] - threadgate: ThreadgateAllowUISetting[] - postgate: AppBskyFeedPostgate.Record onStateChange?: (state: string) => void langs?: string[] } -export async function post(agent: BskyAgent, opts: PostOpts) { - let embed: - | AppBskyEmbedImages.Main - | AppBskyEmbedExternal.Main - | AppBskyEmbedRecord.Main - | AppBskyEmbedVideo.Main - | AppBskyEmbedRecordWithMedia.Main - | undefined - let reply - let rt = new RichText({text: opts.rawText.trimEnd()}, {cleanNewlines: true}) +export async function post( + agent: BskyAgent, + queryClient: QueryClient, + opts: PostOpts, +) { + const thread = opts.thread + const draft = thread.posts[0] // TODO: Support threads. - opts.onStateChange?.('Processing...') - - await rt.detectFacets(agent) - - rt = shortenLinks(rt) - rt = stripInvalidMentions(rt) - - // add quote embed if present - if (opts.quote) { - embed = { - $type: 'app.bsky.embed.record', - record: { - uri: opts.quote.uri, - cid: opts.quote.cid, - }, - } as AppBskyEmbedRecord.Main - } - - // add image embed if present - if (opts.images?.length) { - logger.debug(`Uploading images`, { - count: opts.images.length, - }) - - const images: AppBskyEmbedImages.Image[] = [] - for (const image of opts.images) { - opts.onStateChange?.(`Uploading image #${images.length + 1}...`) - - logger.debug(`Compressing image`) - const {path, width, height, mime} = await compressImage(image) - - logger.debug(`Uploading image`) - const res = await uploadBlob(agent, path, mime) - - images.push({ - image: res.data.blob, - alt: image.alt, - aspectRatio: {width, height}, - }) - } - - if (opts.quote) { - embed = { - $type: 'app.bsky.embed.recordWithMedia', - record: embed, - media: { - $type: 'app.bsky.embed.images', - images, - }, - } as AppBskyEmbedRecordWithMedia.Main - } else { - embed = { - $type: 'app.bsky.embed.images', - images, - } as AppBskyEmbedImages.Main - } - } - - // add video embed if present - if (opts.video) { - const captions = await Promise.all( - opts.video.captions - .filter(caption => caption.lang !== '') - .map(async caption => { - const {data} = await agent.uploadBlob(caption.file, { - encoding: 'text/vtt', - }) - return {lang: caption.lang, file: data.blob} - }), - ) - if (opts.quote) { - embed = { - $type: 'app.bsky.embed.recordWithMedia', - record: embed, - media: { - $type: 'app.bsky.embed.video', - video: opts.video.blobRef, - alt: opts.video.altText || undefined, - captions: captions.length === 0 ? undefined : captions, - aspectRatio: opts.video.aspectRatio, - } as AppBskyEmbedVideo.Main, - } as AppBskyEmbedRecordWithMedia.Main - } else { - embed = { - $type: 'app.bsky.embed.video', - video: opts.video.blobRef, - alt: opts.video.altText || undefined, - captions: captions.length === 0 ? undefined : captions, - aspectRatio: opts.video.aspectRatio, - } as AppBskyEmbedVideo.Main - } - } - - // add external embed if present - if (opts.extLink && !opts.images?.length) { - if (opts.extLink.embed) { - embed = opts.extLink.embed - } else { - let thumb - if (opts.extLink.localThumb) { - opts.onStateChange?.('Uploading link thumbnail...') - - const {path, mime} = opts.extLink.localThumb.source - const res = await uploadBlob(agent, path, mime) - - thumb = res.data.blob - } - - if (opts.quote) { - embed = { - $type: 'app.bsky.embed.recordWithMedia', - record: embed, - media: { - $type: 'app.bsky.embed.external', - external: { - uri: opts.extLink.uri, - title: opts.extLink.meta?.title || '', - description: opts.extLink.meta?.description || '', - thumb, - }, - } as AppBskyEmbedExternal.Main, - } as AppBskyEmbedRecordWithMedia.Main - } else { - embed = { - $type: 'app.bsky.embed.external', - external: { - uri: opts.extLink.uri, - title: opts.extLink.meta?.title || '', - description: opts.extLink.meta?.description || '', - thumb, - }, - } as AppBskyEmbedExternal.Main - } - } - } - - // add replyTo if post is a reply to another post + opts.onStateChange?.(t`Processing...`) + // NB -- Do not await anything here to avoid waterfalls! + // Instead, store Promises which will be unwrapped as they're needed. + const rtPromise = resolveRT(agent, draft.richtext) + const embedPromise = resolveEmbed( + agent, + queryClient, + draft, + opts.onStateChange, + ) + let replyPromise if (opts.replyTo) { - const replyToUrip = new AtUri(opts.replyTo) - const parentPost = await agent.getPost({ - repo: replyToUrip.host, - rkey: replyToUrip.rkey, - }) - if (parentPost) { - const parentRef = { - uri: parentPost.uri, - cid: parentPost.cid, - } - reply = { - root: parentPost.value.reply?.root || parentRef, - parent: parentRef, - } - } + replyPromise = resolveReply(agent, opts.replyTo) } // set labels let labels: ComAtprotoLabelDefs.SelfLabels | undefined - if (opts.labels?.length) { + if (draft.labels.length) { labels = { $type: 'com.atproto.label.defs#selfLabels', - values: opts.labels.map(val => ({val})), + values: draft.labels.map(val => ({val})), } } @@ -240,16 +85,77 @@ export async function post(agent: BskyAgent, opts: PostOpts) { langs = opts.langs.slice(0, 3) } - let res - try { - opts.onStateChange?.('Posting...') - res = await agent.post({ + const rkey = TID.nextStr() + const uri = `at://${agent.assertDid}/app.bsky.feed.post/${rkey}` + const date = new Date().toISOString() + + const writes: ComAtprotoRepoApplyWrites.Create[] = [] + + // Create post record + { + const rt = await rtPromise + const embed = await embedPromise + const reply = await replyPromise + const record: AppBskyFeedPost.Record = { + $type: 'app.bsky.feed.post', + createdAt: date, text: rt.text, facets: rt.facets, reply, embed, langs, labels, + } + + writes.push({ + $type: 'com.atproto.repo.applyWrites#create', + collection: 'app.bsky.feed.post', + rkey: rkey, + value: record, + }) + } + + // Create threadgate record + if (thread.threadgate.some(tg => tg.type !== 'everybody')) { + const record = createThreadgateRecord({ + createdAt: date, + post: uri, + allow: threadgateAllowUISettingToAllowRecordValue(thread.threadgate), + }) + + writes.push({ + $type: 'com.atproto.repo.applyWrites#create', + collection: 'app.bsky.feed.threadgate', + rkey: rkey, + value: record, + }) + } + + // Create postgate record + if ( + thread.postgate.embeddingRules?.length || + thread.postgate.detachedEmbeddingUris?.length + ) { + const record: AppBskyFeedPostgate.Record = { + ...thread.postgate, + $type: 'app.bsky.feed.postgate', + createdAt: date, + post: uri, + } + + writes.push({ + $type: 'com.atproto.repo.applyWrites#create', + collection: 'app.bsky.feed.postgate', + rkey: rkey, + value: record, + }) + } + + try { + await agent.com.atproto.repo.applyWrites({ + repo: agent.assertDid, + writes: writes, + validate: true, }) } catch (e: any) { logger.error(`Failed to create post`, { @@ -257,59 +163,222 @@ export async function post(agent: BskyAgent, opts: PostOpts) { }) if (isNetworkError(e)) { throw new Error( - 'Post failed to upload. Please check your Internet connection and try again.', + t`Post failed to upload. Please check your Internet connection and try again.`, ) } else { throw e } } - if (opts.threadgate.some(tg => tg.type !== 'everybody')) { - try { - // TODO: this needs to be batch-created with the post! - await writeThreadgateRecord({ - agent, - postUri: res.uri, - threadgate: createThreadgateRecord({ - post: res.uri, - allow: threadgateAllowUISettingToAllowRecordValue(opts.threadgate), - }), - }) - } catch (e: any) { - logger.error(`Failed to create threadgate`, { - context: 'composer', - safeMessage: e.message, - }) - throw new Error( - 'Failed to save post interaction settings. Your post was created but users may be able to interact with it.', - ) - } - } - - if ( - opts.postgate.embeddingRules?.length || - opts.postgate.detachedEmbeddingUris?.length - ) { - try { - // TODO: this needs to be batch-created with the post! - await writePostgateRecord({ - agent, - postUri: res.uri, - postgate: { - ...opts.postgate, - post: res.uri, - }, - }) - } catch (e: any) { - logger.error(`Failed to create postgate`, { - context: 'composer', - safeMessage: e.message, - }) - throw new Error( - 'Failed to save post interaction settings. Your post was created but users may be able to interact with it.', - ) - } - } - - return res + return {uri} +} + +async function resolveRT(agent: BskyAgent, richtext: RichText) { + let rt = new RichText({text: richtext.text.trimEnd()}, {cleanNewlines: true}) + await rt.detectFacets(agent) + + rt = shortenLinks(rt) + rt = stripInvalidMentions(rt) + return rt +} + +async function resolveReply(agent: BskyAgent, replyTo: string) { + const replyToUrip = new AtUri(replyTo) + const parentPost = await agent.getPost({ + repo: replyToUrip.host, + rkey: replyToUrip.rkey, + }) + if (parentPost) { + const parentRef = { + uri: parentPost.uri, + cid: parentPost.cid, + } + return { + root: parentPost.value.reply?.root || parentRef, + parent: parentRef, + } + } +} + +async function resolveEmbed( + agent: BskyAgent, + queryClient: QueryClient, + draft: PostDraft, + onStateChange: ((state: string) => void) | undefined, +): Promise< + | AppBskyEmbedImages.Main + | AppBskyEmbedVideo.Main + | AppBskyEmbedExternal.Main + | AppBskyEmbedRecord.Main + | AppBskyEmbedRecordWithMedia.Main + | undefined +> { + if (draft.embed.quote) { + const [resolvedMedia, resolvedQuote] = await Promise.all([ + resolveMedia(agent, queryClient, draft.embed, onStateChange), + resolveRecord(agent, queryClient, draft.embed.quote.uri), + ]) + if (resolvedMedia) { + return { + $type: 'app.bsky.embed.recordWithMedia', + record: { + $type: 'app.bsky.embed.record', + record: resolvedQuote, + }, + media: resolvedMedia, + } + } + return { + $type: 'app.bsky.embed.record', + record: resolvedQuote, + } + } + const resolvedMedia = await resolveMedia( + agent, + queryClient, + draft.embed, + onStateChange, + ) + if (resolvedMedia) { + return resolvedMedia + } + if (draft.embed.link) { + const resolvedLink = await fetchResolveLinkQuery( + queryClient, + agent, + draft.embed.link.uri, + ) + if (resolvedLink.type === 'record') { + return { + $type: 'app.bsky.embed.record', + record: resolvedLink.record, + } + } + } + return undefined +} + +async function resolveMedia( + agent: BskyAgent, + queryClient: QueryClient, + embedDraft: EmbedDraft, + onStateChange: ((state: string) => void) | undefined, +): Promise< + | AppBskyEmbedExternal.Main + | AppBskyEmbedImages.Main + | AppBskyEmbedVideo.Main + | undefined +> { + if (embedDraft.media?.type === 'images') { + const imagesDraft = embedDraft.media.images + logger.debug(`Uploading images`, { + count: imagesDraft.length, + }) + onStateChange?.(t`Uploading images...`) + const images: AppBskyEmbedImages.Image[] = await Promise.all( + imagesDraft.map(async (image, i) => { + logger.debug(`Compressing image #${i}`) + const {path, width, height, mime} = await compressImage(image) + logger.debug(`Uploading image #${i}`) + const res = await uploadBlob(agent, path, mime) + return { + image: res.data.blob, + alt: image.alt, + aspectRatio: {width, height}, + } + }), + ) + return { + $type: 'app.bsky.embed.images', + images, + } + } + if ( + embedDraft.media?.type === 'video' && + embedDraft.media.video.status === 'done' + ) { + const videoDraft = embedDraft.media.video + const captions = await Promise.all( + videoDraft.captions + .filter(caption => caption.lang !== '') + .map(async caption => { + const {data} = await agent.uploadBlob(caption.file, { + encoding: 'text/vtt', + }) + return {lang: caption.lang, file: data.blob} + }), + ) + return { + $type: 'app.bsky.embed.video', + video: videoDraft.pendingPublish.blobRef, + alt: videoDraft.altText || undefined, + captions: captions.length === 0 ? undefined : captions, + aspectRatio: { + width: videoDraft.asset.width, + height: videoDraft.asset.height, + }, + } + } + if (embedDraft.media?.type === 'gif') { + const gifDraft = embedDraft.media + const resolvedGif = await fetchResolveGifQuery( + queryClient, + agent, + gifDraft.gif, + ) + let blob: BlobRef | undefined + if (resolvedGif.thumb) { + onStateChange?.(t`Uploading link thumbnail...`) + const {path, mime} = resolvedGif.thumb.source + const response = await uploadBlob(agent, path, mime) + blob = response.data.blob + } + return { + $type: 'app.bsky.embed.external', + external: { + uri: resolvedGif.uri, + title: resolvedGif.title, + description: createGIFDescription(resolvedGif.title, gifDraft.alt), + thumb: blob, + }, + } + } + if (embedDraft.link) { + const resolvedLink = await fetchResolveLinkQuery( + queryClient, + agent, + embedDraft.link.uri, + ) + if (resolvedLink.type === 'external') { + let blob: BlobRef | undefined + if (resolvedLink.thumb) { + onStateChange?.(t`Uploading link thumbnail...`) + const {path, mime} = resolvedLink.thumb.source + const response = await uploadBlob(agent, path, mime) + blob = response.data.blob + } + return { + $type: 'app.bsky.embed.external', + external: { + uri: resolvedLink.uri, + title: resolvedLink.title, + description: resolvedLink.description, + thumb: blob, + }, + } + } + } + return undefined +} + +async function resolveRecord( + agent: BskyAgent, + queryClient: QueryClient, + uri: string, +): Promise { + const resolvedLink = await fetchResolveLinkQuery(queryClient, agent, uri) + if (resolvedLink.type !== 'record') { + throw Error(t`Expected uri to resolve to a record`) + } + return resolvedLink.record } diff --git a/src/lib/api/resolve.ts b/src/lib/api/resolve.ts new file mode 100644 index 0000000000..3710623500 --- /dev/null +++ b/src/lib/api/resolve.ts @@ -0,0 +1,232 @@ +import { + AppBskyFeedDefs, + AppBskyGraphDefs, + ComAtprotoRepoStrongRef, +} from '@atproto/api' +import {AtUri} from '@atproto/api' +import {BskyAgent} from '@atproto/api' + +import {POST_IMG_MAX} from '#/lib/constants' +import {getLinkMeta} from '#/lib/link-meta/link-meta' +import {resolveShortLink} from '#/lib/link-meta/resolve-short-link' +import {downloadAndResize} from '#/lib/media/manip' +import { + createStarterPackUri, + parseStarterPackUri, +} from '#/lib/strings/starter-pack' +import { + isBskyCustomFeedUrl, + isBskyListUrl, + isBskyPostUrl, + isBskyStarterPackUrl, + isBskyStartUrl, + isShortLink, +} from '#/lib/strings/url-helpers' +import {ComposerImage} from '#/state/gallery' +import {createComposerImage} from '#/state/gallery' +import {Gif} from '#/state/queries/tenor' +import {createGIFDescription} from '../gif-alt-text' +import {convertBskyAppUrlIfNeeded, makeRecordUri} from '../strings/url-helpers' + +type ResolvedExternalLink = { + type: 'external' + uri: string + title: string + description: string + thumb: ComposerImage | undefined +} + +type ResolvedPostRecord = { + type: 'record' + record: ComAtprotoRepoStrongRef.Main + kind: 'post' + view: AppBskyFeedDefs.PostView +} + +type ResolvedFeedRecord = { + type: 'record' + record: ComAtprotoRepoStrongRef.Main + kind: 'feed' + view: AppBskyFeedDefs.GeneratorView +} + +type ResolvedListRecord = { + type: 'record' + record: ComAtprotoRepoStrongRef.Main + kind: 'list' + view: AppBskyGraphDefs.ListView +} + +type ResolvedStarterPackRecord = { + type: 'record' + record: ComAtprotoRepoStrongRef.Main + kind: 'starter-pack' + view: AppBskyGraphDefs.StarterPackView +} + +export type ResolvedLink = + | ResolvedExternalLink + | ResolvedPostRecord + | ResolvedFeedRecord + | ResolvedListRecord + | ResolvedStarterPackRecord + +export class EmbeddingDisabledError extends Error { + constructor() { + super('Embedding is disabled for this record') + } +} + +export async function resolveLink( + agent: BskyAgent, + uri: string, +): Promise { + if (isShortLink(uri)) { + uri = await resolveShortLink(uri) + } + if (isBskyPostUrl(uri)) { + uri = convertBskyAppUrlIfNeeded(uri) + const [_0, user, _1, rkey] = uri.split('/').filter(Boolean) + const recordUri = makeRecordUri(user, 'app.bsky.feed.post', rkey) + const post = await getPost({uri: recordUri}) + if (post.viewer?.embeddingDisabled) { + throw new EmbeddingDisabledError() + } + return { + type: 'record', + record: { + cid: post.cid, + uri: post.uri, + }, + kind: 'post', + view: post, + } + } + if (isBskyCustomFeedUrl(uri)) { + uri = convertBskyAppUrlIfNeeded(uri) + const [_0, handleOrDid, _1, rkey] = uri.split('/').filter(Boolean) + const did = await fetchDid(handleOrDid) + const feed = makeRecordUri(did, 'app.bsky.feed.generator', rkey) + const res = await agent.app.bsky.feed.getFeedGenerator({feed}) + return { + type: 'record', + record: { + uri: res.data.view.uri, + cid: res.data.view.cid, + }, + kind: 'feed', + view: res.data.view, + } + } + if (isBskyListUrl(uri)) { + uri = convertBskyAppUrlIfNeeded(uri) + const [_0, handleOrDid, _1, rkey] = uri.split('/').filter(Boolean) + const did = await fetchDid(handleOrDid) + const list = makeRecordUri(did, 'app.bsky.graph.list', rkey) + const res = await agent.app.bsky.graph.getList({list}) + return { + type: 'record', + record: { + uri: res.data.list.uri, + cid: res.data.list.cid, + }, + kind: 'list', + view: res.data.list, + } + } + if (isBskyStartUrl(uri) || isBskyStarterPackUrl(uri)) { + const parsed = parseStarterPackUri(uri) + if (!parsed) { + throw new Error( + 'Unexpectedly called getStarterPackAsEmbed with a non-starterpack url', + ) + } + const did = await fetchDid(parsed.name) + const starterPack = createStarterPackUri({did, rkey: parsed.rkey}) + const res = await agent.app.bsky.graph.getStarterPack({starterPack}) + return { + type: 'record', + record: { + uri: res.data.starterPack.uri, + cid: res.data.starterPack.cid, + }, + kind: 'starter-pack', + view: res.data.starterPack, + } + } + return resolveExternal(agent, uri) + + // Forked from useGetPost. TODO: move into RQ. + async function getPost({uri}: {uri: string}) { + const urip = new AtUri(uri) + if (!urip.host.startsWith('did:')) { + const res = await agent.resolveHandle({ + handle: urip.host, + }) + urip.host = res.data.did + } + const res = await agent.getPosts({ + uris: [urip.toString()], + }) + if (res.success && res.data.posts[0]) { + return res.data.posts[0] + } + throw new Error('getPost: post not found') + } + + // Forked from useFetchDid. TODO: move into RQ. + async function fetchDid(handleOrDid: string) { + let identifier = handleOrDid + if (!identifier.startsWith('did:')) { + const res = await agent.resolveHandle({handle: identifier}) + identifier = res.data.did + } + return identifier + } +} + +export async function resolveGif( + agent: BskyAgent, + gif: Gif, +): Promise { + const uri = `${gif.media_formats.gif.url}?hh=${gif.media_formats.gif.dims[1]}&ww=${gif.media_formats.gif.dims[0]}` + return { + type: 'external', + uri, + title: gif.content_description, + description: createGIFDescription(gif.content_description), + thumb: await imageToThumb(gif.media_formats.preview.url), + } +} + +async function resolveExternal( + agent: BskyAgent, + uri: string, +): Promise { + const result = await getLinkMeta(agent, uri) + return { + type: 'external', + uri: result.url, + title: result.title ?? '', + description: result.description ?? '', + thumb: result.image ? await imageToThumb(result.image) : undefined, + } +} + +async function imageToThumb( + imageUri: string, +): Promise { + try { + const img = await downloadAndResize({ + uri: imageUri, + width: POST_IMG_MAX.width, + height: POST_IMG_MAX.height, + mode: 'contain', + maxSize: POST_IMG_MAX.size, + timeout: 15e3, + }) + if (img) { + return await createComposerImage(img) + } + } catch {} +} diff --git a/src/lib/app-info.ts b/src/lib/app-info.ts index 729881acae..4da70d75d8 100644 --- a/src/lib/app-info.ts +++ b/src/lib/app-info.ts @@ -3,6 +3,7 @@ import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application' export const BUILD_ENV = process.env.EXPO_PUBLIC_ENV export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' export const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight' +export const IS_INTERNAL = IS_DEV || IS_TESTFLIGHT // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings // along with the other version info. Useful for debugging/reporting. diff --git a/src/lib/app-info.web.ts b/src/lib/app-info.web.ts index 7227e28632..742ccfe975 100644 --- a/src/lib/app-info.web.ts +++ b/src/lib/app-info.web.ts @@ -3,6 +3,7 @@ import {version} from '../../package.json' export const BUILD_ENV = process.env.EXPO_PUBLIC_ENV export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' export const IS_TESTFLIGHT = false +export const IS_INTERNAL = IS_DEV // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings // along with the other version info. Useful for debugging/reporting. diff --git a/src/lib/async/retry.ts b/src/lib/async/retry.ts index f14ae6cf66..abf78de55f 100644 --- a/src/lib/async/retry.ts +++ b/src/lib/async/retry.ts @@ -1,4 +1,4 @@ -import {isNetworkError} from 'lib/strings/errors' +import {isNetworkError} from '#/lib/strings/errors' export async function retry

( retries: number, diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 9bf1fb35ea..1a13304fa9 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -21,7 +21,7 @@ export const STARTER_PACK_MAX_SIZE = 150 // code and update this number with each release until we can get the // server route done. // -prf -export const JOINED_THIS_WEEK = 3060000 // estimate as of 9/6/24 +export const JOINED_THIS_WEEK = 650000 // estimate as of 10/28/24 const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` export function FEEDBACK_FORM_URL({ @@ -50,7 +50,7 @@ export const MAX_DM_GRAPHEME_LENGTH = 1000 // Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html // but increasing limit per user feedback -export const MAX_ALT_TEXT = 1000 +export const MAX_ALT_TEXT = 2000 export function IS_TEST_USER(handle?: string) { return handle && handle?.endsWith('.test') diff --git a/src/lib/custom-animations/CountWheel.tsx b/src/lib/custom-animations/CountWheel.tsx index 2e435f7d38..b4ca62c6e2 100644 --- a/src/lib/custom-animations/CountWheel.tsx +++ b/src/lib/custom-animations/CountWheel.tsx @@ -8,10 +8,10 @@ import Animated, { } from 'react-native-reanimated' import {i18n} from '@lingui/core' -import {decideShouldRoll} from 'lib/custom-animations/util' -import {s} from 'lib/styles' -import {formatCount} from 'view/com/util/numeric/format' -import {Text} from 'view/com/util/text/Text' +import {decideShouldRoll} from '#/lib/custom-animations/util' +import {s} from '#/lib/styles' +import {formatCount} from '#/view/com/util/numeric/format' +import {Text} from '#/view/com/util/text/Text' import {atoms as a, useTheme} from '#/alf' const animationConfig = { diff --git a/src/lib/custom-animations/CountWheel.web.tsx b/src/lib/custom-animations/CountWheel.web.tsx index 78120b7078..980ed06e6c 100644 --- a/src/lib/custom-animations/CountWheel.web.tsx +++ b/src/lib/custom-animations/CountWheel.web.tsx @@ -3,10 +3,10 @@ import {View} from 'react-native' import {useReducedMotion} from 'react-native-reanimated' import {i18n} from '@lingui/core' -import {decideShouldRoll} from 'lib/custom-animations/util' -import {s} from 'lib/styles' -import {formatCount} from 'view/com/util/numeric/format' -import {Text} from 'view/com/util/text/Text' +import {decideShouldRoll} from '#/lib/custom-animations/util' +import {s} from '#/lib/styles' +import {formatCount} from '#/view/com/util/numeric/format' +import {Text} from '#/view/com/util/text/Text' import {atoms as a, useTheme} from '#/alf' const animationConfig = { diff --git a/src/lib/custom-animations/GestureActionView.tsx b/src/lib/custom-animations/GestureActionView.tsx new file mode 100644 index 0000000000..79e9db8a91 --- /dev/null +++ b/src/lib/custom-animations/GestureActionView.tsx @@ -0,0 +1,410 @@ +import React from 'react' +import {ColorValue, Dimensions, StyleSheet, View} from 'react-native' +import {Gesture, GestureDetector} from 'react-native-gesture-handler' +import Animated, { + clamp, + interpolate, + interpolateColor, + runOnJS, + useAnimatedReaction, + useAnimatedStyle, + useDerivedValue, + useReducedMotion, + useSharedValue, + withSequence, + withTiming, +} from 'react-native-reanimated' + +import {useHaptics} from '#/lib/haptics' + +interface GestureAction { + color: ColorValue + action: () => void + threshold: number + icon: React.ElementType +} + +interface GestureActions { + leftFirst?: GestureAction + leftSecond?: GestureAction + rightFirst?: GestureAction + rightSecond?: GestureAction +} + +const MAX_WIDTH = Dimensions.get('screen').width +const ICON_SIZE = 32 + +export function GestureActionView({ + children, + actions, +}: { + children: React.ReactNode + actions: GestureActions +}) { + if ( + (actions.leftSecond && !actions.leftFirst) || + (actions.rightSecond && !actions.rightFirst) + ) { + throw new Error( + 'You must provide the first action before the second action', + ) + } + + const [activeAction, setActiveAction] = React.useState< + 'leftFirst' | 'leftSecond' | 'rightFirst' | 'rightSecond' | null + >(null) + + const haptic = useHaptics() + const isReducedMotion = useReducedMotion() + + const transX = useSharedValue(0) + const clampedTransX = useDerivedValue(() => { + const min = actions.leftFirst ? -MAX_WIDTH : 0 + const max = actions.rightFirst ? MAX_WIDTH : 0 + return clamp(transX.value, min, max) + }) + + const iconScale = useSharedValue(1) + const isActive = useSharedValue(false) + const hitFirst = useSharedValue(false) + const hitSecond = useSharedValue(false) + + const runPopAnimation = () => { + 'worklet' + if (isReducedMotion) { + return + } + + iconScale.value = withSequence( + withTiming(1.2, {duration: 175}), + withTiming(1, {duration: 100}), + ) + } + + useAnimatedReaction( + () => transX, + () => { + if (transX.value === 0) { + runOnJS(setActiveAction)(null) + } else if (transX.value < 0) { + if ( + actions.leftSecond && + transX.value <= -actions.leftSecond.threshold + ) { + if (activeAction !== 'leftSecond') { + runOnJS(setActiveAction)('leftSecond') + } + } else if (activeAction !== 'leftFirst') { + runOnJS(setActiveAction)('leftFirst') + } + } else if (transX.value > 0) { + if ( + actions.rightSecond && + transX.value > actions.rightSecond.threshold + ) { + if (activeAction !== 'rightSecond') { + runOnJS(setActiveAction)('rightSecond') + } + } else if (activeAction !== 'rightFirst') { + runOnJS(setActiveAction)('rightFirst') + } + } + }, + ) + + const panGesture = Gesture.Pan() + .activeOffsetX([-10, 10]) + // Absurdly high value so it doesn't interfere with the pan gestures above (i.e., scroll) + // reanimated doesn't offer great support for disabling y/x axes :/ + .activeOffsetY([-200, 200]) + .onStart(() => { + 'worklet' + isActive.value = true + }) + .onChange(e => { + 'worklet' + transX.value = e.translationX + + if (e.translationX < 0) { + // Left side + if (actions.leftSecond) { + if ( + e.translationX <= -actions.leftSecond.threshold && + !hitSecond.value + ) { + runPopAnimation() + runOnJS(haptic)() + hitSecond.value = true + } else if ( + hitSecond.value && + e.translationX > -actions.leftSecond.threshold + ) { + runPopAnimation() + hitSecond.value = false + } + } + + if (!hitSecond.value && actions.leftFirst) { + if ( + e.translationX <= -actions.leftFirst.threshold && + !hitFirst.value + ) { + runPopAnimation() + runOnJS(haptic)() + hitFirst.value = true + } else if ( + hitFirst.value && + e.translationX > -actions.leftFirst.threshold + ) { + hitFirst.value = false + } + } + } else if (e.translationX > 0) { + // Right side + if (actions.rightSecond) { + if ( + e.translationX >= actions.rightSecond.threshold && + !hitSecond.value + ) { + runPopAnimation() + runOnJS(haptic)() + hitSecond.value = true + } else if ( + hitSecond.value && + e.translationX < actions.rightSecond.threshold + ) { + runPopAnimation() + hitSecond.value = false + } + } + + if (!hitSecond.value && actions.rightFirst) { + if ( + e.translationX >= actions.rightFirst.threshold && + !hitFirst.value + ) { + runPopAnimation() + runOnJS(haptic)() + hitFirst.value = true + } else if ( + hitFirst.value && + e.translationX < actions.rightFirst.threshold + ) { + hitFirst.value = false + } + } + } + }) + .onEnd(e => { + 'worklet' + if (e.translationX < 0) { + if (hitSecond.value && actions.leftSecond) { + runOnJS(actions.leftSecond.action)() + } else if (hitFirst.value && actions.leftFirst) { + runOnJS(actions.leftFirst.action)() + } + } else if (e.translationX > 0) { + if (hitSecond.value && actions.rightSecond) { + runOnJS(actions.rightSecond.action)() + } else if (hitSecond.value && actions.rightFirst) { + runOnJS(actions.rightFirst.action)() + } + } + transX.value = withTiming(0, {duration: 200}) + hitFirst.value = false + hitSecond.value = false + isActive.value = false + }) + + const composedGesture = Gesture.Simultaneous(panGesture) + + const animatedSliderStyle = useAnimatedStyle(() => { + return { + transform: [{translateX: clampedTransX.value}], + } + }) + + const leftSideInterpolation = React.useMemo(() => { + return createInterpolation({ + firstColor: actions.leftFirst?.color, + secondColor: actions.leftSecond?.color, + firstThreshold: actions.leftFirst?.threshold, + secondThreshold: actions.leftSecond?.threshold, + side: 'left', + }) + }, [actions.leftFirst, actions.leftSecond]) + + const rightSideInterpolation = React.useMemo(() => { + return createInterpolation({ + firstColor: actions.rightFirst?.color, + secondColor: actions.rightSecond?.color, + firstThreshold: actions.rightFirst?.threshold, + secondThreshold: actions.rightSecond?.threshold, + side: 'right', + }) + }, [actions.rightFirst, actions.rightSecond]) + + const interpolation = React.useMemo<{ + inputRange: number[] + outputRange: ColorValue[] + }>(() => { + if (!actions.leftFirst) { + return rightSideInterpolation! + } else if (!actions.rightFirst) { + return leftSideInterpolation! + } else { + return { + inputRange: [ + ...leftSideInterpolation.inputRange, + ...rightSideInterpolation.inputRange, + ], + outputRange: [ + ...leftSideInterpolation.outputRange, + ...rightSideInterpolation.outputRange, + ], + } + } + }, [ + leftSideInterpolation, + rightSideInterpolation, + actions.leftFirst, + actions.rightFirst, + ]) + + const animatedBackgroundStyle = useAnimatedStyle(() => { + return { + backgroundColor: interpolateColor( + clampedTransX.value, + interpolation.inputRange, + // @ts-expect-error - Weird type expected by reanimated, but this is okay + interpolation.outputRange, + ), + } + }) + + const animatedIconStyle = useAnimatedStyle(() => { + const absTransX = Math.abs(clampedTransX.value) + return { + opacity: interpolate(absTransX, [0, 75], [0.15, 1]), + transform: [{scale: iconScale.value}], + } + }) + + return ( + + + + + + {activeAction === 'leftFirst' && actions.leftFirst?.icon ? ( + + ) : activeAction === 'leftSecond' && actions.leftSecond?.icon ? ( + + ) : activeAction === 'rightFirst' && actions.rightFirst?.icon ? ( + + ) : activeAction === 'rightSecond' && + actions.rightSecond?.icon ? ( + + ) : null} + + + + {children} + + + ) +} + +function createInterpolation({ + firstColor, + secondColor, + firstThreshold, + secondThreshold, + side, +}: { + firstColor?: ColorValue + secondColor?: ColorValue + firstThreshold?: number + secondThreshold?: number + side: 'left' | 'right' +}): { + inputRange: number[] + outputRange: ColorValue[] +} { + if ((secondThreshold && !secondColor) || (!secondThreshold && secondColor)) { + throw new Error( + 'You must provide a second color if you provide a second threshold', + ) + } + + if (!firstThreshold) { + return { + inputRange: [0], + outputRange: ['transparent'], + } + } + + const offset = side === 'left' ? -20 : 20 + + if (side === 'left') { + firstThreshold = -firstThreshold + + if (secondThreshold) { + secondThreshold = -secondThreshold + } + } + + let res + if (secondThreshold) { + res = { + inputRange: [ + 0, + firstThreshold, + firstThreshold + offset - 20, + secondThreshold, + ], + outputRange: ['transparent', firstColor!, firstColor!, secondColor!], + } + } else { + res = { + inputRange: [0, firstThreshold], + outputRange: ['transparent', firstColor!], + } + } + + if (side === 'left') { + // Reverse the input/output ranges + res.inputRange.reverse() + res.outputRange.reverse() + } + + return res +} diff --git a/src/lib/custom-animations/GestureActionView.web.tsx b/src/lib/custom-animations/GestureActionView.web.tsx new file mode 100644 index 0000000000..3caaa724f8 --- /dev/null +++ b/src/lib/custom-animations/GestureActionView.web.tsx @@ -0,0 +1,5 @@ +import React from 'react' + +export function GestureActionView({children}: {children: React.ReactNode}) { + return children +} diff --git a/src/lib/custom-animations/LikeIcon.tsx b/src/lib/custom-animations/LikeIcon.tsx index ee3d413e5f..5c736e88d4 100644 --- a/src/lib/custom-animations/LikeIcon.tsx +++ b/src/lib/custom-animations/LikeIcon.tsx @@ -6,7 +6,7 @@ import Animated, { useReducedMotion, } from 'react-native-reanimated' -import {s} from 'lib/styles' +import {s} from '#/lib/styles' import {useTheme} from '#/alf' import { Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled, diff --git a/src/lib/custom-animations/LikeIcon.web.tsx b/src/lib/custom-animations/LikeIcon.web.tsx index 9a70212fe4..79a646e6d8 100644 --- a/src/lib/custom-animations/LikeIcon.web.tsx +++ b/src/lib/custom-animations/LikeIcon.web.tsx @@ -2,7 +2,7 @@ import React from 'react' import {View} from 'react-native' import {useReducedMotion} from 'react-native-reanimated' -import {s} from 'lib/styles' +import {s} from '#/lib/styles' import {useTheme} from '#/alf' import { Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled, diff --git a/src/lib/custom-animations/PressableScale.tsx b/src/lib/custom-animations/PressableScale.tsx index ca080dc8ae..4737b9ea32 100644 --- a/src/lib/custom-animations/PressableScale.tsx +++ b/src/lib/custom-animations/PressableScale.tsx @@ -4,6 +4,7 @@ import Animated, { cancelAnimation, runOnJS, useAnimatedStyle, + useReducedMotion, useSharedValue, withTiming, } from 'react-native-reanimated' @@ -26,6 +27,8 @@ export function PressableScale({ targetScale?: number style?: StyleProp } & Exclude) { + const reducedMotion = useReducedMotion() + const scale = useSharedValue(1) const animatedStyle = useAnimatedStyle(() => ({ @@ -51,7 +54,7 @@ export function PressableScale({ cancelAnimation(scale) scale.value = withTiming(1, {duration: 100}) }} - style={[animatedStyle, style]} + style={[!reducedMotion && animatedStyle, style]} {...rest}> {children} diff --git a/src/lib/generate-starterpack.ts b/src/lib/generate-starterpack.ts index dba98b942a..3be338ac8a 100644 --- a/src/lib/generate-starterpack.ts +++ b/src/lib/generate-starterpack.ts @@ -8,11 +8,11 @@ import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useMutation} from '@tanstack/react-query' -import {until} from 'lib/async/until' -import {sanitizeDisplayName} from 'lib/strings/display-names' -import {sanitizeHandle} from 'lib/strings/handles' -import {enforceLen} from 'lib/strings/helpers' -import {useAgent} from 'state/session' +import {until} from '#/lib/async/until' +import {sanitizeDisplayName} from '#/lib/strings/display-names' +import {sanitizeHandle} from '#/lib/strings/handles' +import {enforceLen} from '#/lib/strings/helpers' +import {useAgent} from '#/state/session' export const createStarterPackList = async ({ name, diff --git a/src/lib/hooks/useAnimatedScrollHandler_FIXED.web.ts b/src/lib/hooks/useAnimatedScrollHandler_FIXED.web.ts index 98e05a8ce6..7f8a99506a 100644 --- a/src/lib/hooks/useAnimatedScrollHandler_FIXED.web.ts +++ b/src/lib/hooks/useAnimatedScrollHandler_FIXED.web.ts @@ -1,4 +1,4 @@ -import {useRef, useEffect} from 'react' +import {useEffect, useRef} from 'react' import {useAnimatedScrollHandler as useAnimatedScrollHandler_BUGGY} from 'react-native-reanimated' export const useAnimatedScrollHandler: typeof useAnimatedScrollHandler_BUGGY = ( diff --git a/src/lib/hooks/useBottomBarOffset.ts b/src/lib/hooks/useBottomBarOffset.ts index 945c980620..abe18c81b7 100644 --- a/src/lib/hooks/useBottomBarOffset.ts +++ b/src/lib/hooks/useBottomBarOffset.ts @@ -1,8 +1,8 @@ import {useSafeAreaInsets} from 'react-native-safe-area-context' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {clamp} from 'lib/numbers' -import {isWeb} from 'platform/detection' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {clamp} from '#/lib/numbers' +import {isWeb} from '#/platform/detection' export function useBottomBarOffset(modifier: number = 0) { const {isTabletOrDesktop} = useWebMediaQueries() diff --git a/src/lib/hooks/useColorSchemeStyle.ts b/src/lib/hooks/useColorSchemeStyle.ts index 100dc44e41..8b79e9e429 100644 --- a/src/lib/hooks/useColorSchemeStyle.ts +++ b/src/lib/hooks/useColorSchemeStyle.ts @@ -1,4 +1,4 @@ -import {useTheme} from 'lib/ThemeContext' +import {useTheme} from '#/lib/ThemeContext' export function useColorSchemeStyle(lightStyle: T, darkStyle: T) { const colorScheme = useTheme().colorScheme diff --git a/src/lib/hooks/useCustomPalette.ts b/src/lib/hooks/useCustomPalette.ts index 4f8f5c8368..5691ea79b5 100644 --- a/src/lib/hooks/useCustomPalette.ts +++ b/src/lib/hooks/useCustomPalette.ts @@ -1,6 +1,7 @@ import React from 'react' -import {useTheme} from 'lib/ThemeContext' -import {choose} from 'lib/functions' + +import {choose} from '#/lib/functions' +import {useTheme} from '#/lib/ThemeContext' export function useCustomPalette({light, dark}: {light: T; dark: T}) { const theme = useTheme() diff --git a/src/lib/hooks/useDraggableScrollView.ts b/src/lib/hooks/useDraggableScrollView.ts index b0f7465d79..3471d0d06c 100644 --- a/src/lib/hooks/useDraggableScrollView.ts +++ b/src/lib/hooks/useDraggableScrollView.ts @@ -1,7 +1,8 @@ -import {useEffect, useRef, useMemo, ForwardedRef} from 'react' -import {Platform, findNodeHandle} from 'react-native' +import {ForwardedRef, useEffect, useMemo, useRef} from 'react' import type {ScrollView} from 'react-native' -import {mergeRefs} from 'lib/merge-refs' +import {findNodeHandle, Platform} from 'react-native' + +import {mergeRefs} from '#/lib/merge-refs' type Props = { cursor?: string diff --git a/src/lib/hooks/useGoBack.ts b/src/lib/hooks/useGoBack.ts index 59555bdac1..e5a39f745c 100644 --- a/src/lib/hooks/useGoBack.ts +++ b/src/lib/hooks/useGoBack.ts @@ -1,6 +1,6 @@ import {StackActions, useNavigation} from '@react-navigation/native' -import {NavigationProp} from 'lib/routes/types' +import {NavigationProp} from '#/lib/routes/types' import {router} from '#/routes' export function useGoBack(onGoBack?: () => unknown) { diff --git a/src/lib/hooks/useInitialNumToRender.ts b/src/lib/hooks/useInitialNumToRender.ts index f729cbffa6..fd80d5d770 100644 --- a/src/lib/hooks/useInitialNumToRender.ts +++ b/src/lib/hooks/useInitialNumToRender.ts @@ -1,7 +1,7 @@ import {useWindowDimensions} from 'react-native' import {useSafeAreaInsets} from 'react-native-safe-area-context' -import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' +import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' const MIN_POST_HEIGHT = 100 diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index ce1d474d31..a33aff2371 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -13,6 +13,9 @@ type IntentType = 'compose' | 'verify-email' const VALID_IMAGE_REGEX = /^[\w.:\-_/]+\|\d+(\.\d+)?\|\d+(\.\d+)?$/ +// This needs to stay outside of react to persist between account switches +let previousIntentUrl = '' + export function useIntentHandler() { const incomingUrl = Linking.useURL() const composeIntent = useComposeIntent() @@ -68,7 +71,13 @@ export function useIntentHandler() { } } - if (incomingUrl) handleIncomingURL(incomingUrl) + if (incomingUrl) { + if (previousIntentUrl === incomingUrl) { + return + } + handleIncomingURL(incomingUrl) + previousIntentUrl = incomingUrl + } }, [incomingUrl, composeIntent, verifyEmailIntent]) } @@ -93,9 +102,10 @@ export function useComposeIntent() { // Whenever a video URI is present, we don't support adding images right now. if (videoUri) { + const [uri, width, height] = videoUri.split('|') openComposer({ text: text ?? undefined, - videoUri, + videoUri: {uri, width: Number(width), height: Number(height)}, }) return } diff --git a/src/lib/hooks/useIsKeyboardVisible.ts b/src/lib/hooks/useIsKeyboardVisible.ts index 38fc80bde1..5a9bbd5742 100644 --- a/src/lib/hooks/useIsKeyboardVisible.ts +++ b/src/lib/hooks/useIsKeyboardVisible.ts @@ -1,6 +1,7 @@ -import {useState, useEffect} from 'react' +import {useEffect, useState} from 'react' import {Keyboard} from 'react-native' -import {isIOS} from 'platform/detection' + +import {isIOS} from '#/platform/detection' export function useIsKeyboardVisible({ iosUseWillEvents, diff --git a/src/lib/hooks/useNavigationDeduped.ts b/src/lib/hooks/useNavigationDeduped.ts index d913f7f3d0..56ae5e8a29 100644 --- a/src/lib/hooks/useNavigationDeduped.ts +++ b/src/lib/hooks/useNavigationDeduped.ts @@ -1,9 +1,10 @@ import React from 'react' import {useNavigation} from '@react-navigation/core' -import {AllNavigatorParams, NavigationProp} from 'lib/routes/types' -import type {NavigationAction} from '@react-navigation/routers' import {NavigationState} from '@react-navigation/native' -import {useDedupe} from 'lib/hooks/useDedupe' +import type {NavigationAction} from '@react-navigation/routers' + +import {useDedupe} from '#/lib/hooks/useDedupe' +import {AllNavigatorParams, NavigationProp} from '#/lib/routes/types' export type DebouncedNavigationProp = Pick< NavigationProp, diff --git a/src/lib/hooks/useNavigationTabState.ts b/src/lib/hooks/useNavigationTabState.ts index e1fa950089..2d15bce562 100644 --- a/src/lib/hooks/useNavigationTabState.ts +++ b/src/lib/hooks/useNavigationTabState.ts @@ -1,6 +1,6 @@ import {useNavigationState} from '@react-navigation/native' -import {getTabState, TabState} from 'lib/routes/helpers' +import {getTabState, TabState} from '#/lib/routes/helpers' export function useNavigationTabState() { return useNavigationState(state => { diff --git a/src/lib/hooks/useNavigationTabState.web.ts b/src/lib/hooks/useNavigationTabState.web.ts index e86d6c6c37..03dcbbb038 100644 --- a/src/lib/hooks/useNavigationTabState.web.ts +++ b/src/lib/hooks/useNavigationTabState.web.ts @@ -1,6 +1,6 @@ import {useNavigationState} from '@react-navigation/native' -import {getCurrentRoute} from 'lib/routes/helpers' +import {getCurrentRoute} from '#/lib/routes/helpers' export function useNavigationTabState() { return useNavigationState(state => { diff --git a/src/lib/hooks/useOTAUpdates.ts b/src/lib/hooks/useOTAUpdates.ts index a1692e62cc..731406dcec 100644 --- a/src/lib/hooks/useOTAUpdates.ts +++ b/src/lib/hooks/useOTAUpdates.ts @@ -10,9 +10,9 @@ import { useUpdates, } from 'expo-updates' +import {IS_TESTFLIGHT} from '#/lib/app-info' import {logger} from '#/logger' -import {IS_TESTFLIGHT} from 'lib/app-info' -import {isIOS} from 'platform/detection' +import {isIOS} from '#/platform/detection' const MINIMUM_MINIMIZE_TIME = 15 * 60e3 diff --git a/src/lib/hooks/useOpenLink.ts b/src/lib/hooks/useOpenLink.ts new file mode 100644 index 0000000000..5b75695b8e --- /dev/null +++ b/src/lib/hooks/useOpenLink.ts @@ -0,0 +1,54 @@ +import {useCallback} from 'react' +import {Linking} from 'react-native' +import * as WebBrowser from 'expo-web-browser' + +import { + createBskyAppAbsoluteUrl, + isBskyRSSUrl, + isRelativeUrl, +} from '#/lib/strings/url-helpers' +import {isNative} from '#/platform/detection' +import {useModalControls} from '#/state/modals' +import {useInAppBrowser} from '#/state/preferences/in-app-browser' +import {useTheme} from '#/alf' +import {useSheetWrapper} from '#/components/Dialog/sheet-wrapper' + +export function useOpenLink() { + const {openModal} = useModalControls() + const enabled = useInAppBrowser() + const t = useTheme() + const sheetWrapper = useSheetWrapper() + + const openLink = useCallback( + async (url: string, override?: boolean) => { + if (isBskyRSSUrl(url) && isRelativeUrl(url)) { + url = createBskyAppAbsoluteUrl(url) + } + + if (isNative && !url.startsWith('mailto:')) { + if (override === undefined && enabled === undefined) { + openModal({ + name: 'in-app-browser-consent', + href: url, + }) + return + } else if (override ?? enabled) { + await sheetWrapper( + WebBrowser.openBrowserAsync(url, { + presentationStyle: + WebBrowser.WebBrowserPresentationStyle.PAGE_SHEET, + toolbarColor: t.atoms.bg.backgroundColor, + controlsColor: t.palette.primary_500, + createTask: false, + }), + ) + return + } + } + Linking.openURL(url) + }, + [enabled, openModal, t, sheetWrapper], + ) + + return openLink +} diff --git a/src/lib/hooks/usePalette.ts b/src/lib/hooks/usePalette.ts index eeb43d0b1f..2530642f60 100644 --- a/src/lib/hooks/usePalette.ts +++ b/src/lib/hooks/usePalette.ts @@ -1,6 +1,7 @@ import {useMemo} from 'react' import {TextStyle, ViewStyle} from 'react-native' -import {useTheme, PaletteColorName, PaletteColor} from '../ThemeContext' + +import {PaletteColor, PaletteColorName, useTheme} from '../ThemeContext' export interface UsePaletteValue { colors: PaletteColor diff --git a/src/lib/hooks/usePermissions.ts b/src/lib/hooks/usePermissions.ts index d248e19759..6da14232f5 100644 --- a/src/lib/hooks/usePermissions.ts +++ b/src/lib/hooks/usePermissions.ts @@ -2,8 +2,8 @@ import {Linking} from 'react-native' import {Camera} from 'expo-camera/legacy' // TODO: Migrate to the new one. import * as MediaLibrary from 'expo-media-library' -import {isWeb} from 'platform/detection' -import {Alert} from 'view/com/util/Alert' +import {isWeb} from '#/platform/detection' +import {Alert} from '#/view/com/util/Alert' const openPermissionAlert = (perm: string) => { Alert.alert( diff --git a/src/lib/hooks/useSetTitle.ts b/src/lib/hooks/useSetTitle.ts index 129023f717..fa1e2a5b11 100644 --- a/src/lib/hooks/useSetTitle.ts +++ b/src/lib/hooks/useSetTitle.ts @@ -1,8 +1,8 @@ import {useEffect} from 'react' import {useNavigation} from '@react-navigation/native' -import {NavigationProp} from 'lib/routes/types' -import {bskyTitle} from 'lib/strings/headings' +import {NavigationProp} from '#/lib/routes/types' +import {bskyTitle} from '#/lib/strings/headings' import {useUnreadNotifications} from '#/state/queries/notifications/unread' export function useSetTitle(title?: string) { diff --git a/src/lib/hooks/useTabFocusEffect.ts b/src/lib/hooks/useTabFocusEffect.ts index e446084c5a..a54a3af73f 100644 --- a/src/lib/hooks/useTabFocusEffect.ts +++ b/src/lib/hooks/useTabFocusEffect.ts @@ -1,6 +1,7 @@ import {useEffect, useState} from 'react' import {useNavigation} from '@react-navigation/native' -import {getTabState, TabState} from 'lib/routes/helpers' + +import {getTabState, TabState} from '#/lib/routes/helpers' export function useTabFocusEffect( tabName: string, diff --git a/src/lib/hooks/useToggleMutationQueue.ts b/src/lib/hooks/useToggleMutationQueue.ts index 28ae861424..c4b86d3253 100644 --- a/src/lib/hooks/useToggleMutationQueue.ts +++ b/src/lib/hooks/useToggleMutationQueue.ts @@ -1,4 +1,4 @@ -import {useState, useRef, useEffect, useCallback} from 'react' +import {useCallback, useEffect, useRef, useState} from 'react' type Task = { isOn: boolean diff --git a/src/lib/hooks/useWebBodyScrollLock.ts b/src/lib/hooks/useWebBodyScrollLock.ts index 0dcf911fe4..c63c23b29c 100644 --- a/src/lib/hooks/useWebBodyScrollLock.ts +++ b/src/lib/hooks/useWebBodyScrollLock.ts @@ -1,4 +1,5 @@ import {useEffect} from 'react' + import {isWeb} from '#/platform/detection' let refCount = 0 diff --git a/src/lib/hooks/useWebMediaQueries.tsx b/src/lib/hooks/useWebMediaQueries.tsx index 71a96a89b1..fa9d6ffa64 100644 --- a/src/lib/hooks/useWebMediaQueries.tsx +++ b/src/lib/hooks/useWebMediaQueries.tsx @@ -1,5 +1,6 @@ import {useMediaQuery} from 'react-responsive' -import {isNative} from 'platform/detection' + +import {isNative} from '#/platform/detection' export function useWebMediaQueries() { const isDesktop = useMediaQuery({minWidth: 1300}) diff --git a/src/lib/hooks/useWebScrollRestoration.ts b/src/lib/hooks/useWebScrollRestoration.ts index f68fbf0f2f..36484ba0f1 100644 --- a/src/lib/hooks/useWebScrollRestoration.ts +++ b/src/lib/hooks/useWebScrollRestoration.ts @@ -1,4 +1,4 @@ -import {useMemo, useState, useEffect} from 'react' +import {useEffect, useMemo, useState} from 'react' import {EventArg, useNavigation} from '@react-navigation/core' if ('scrollRestoration' in history) { diff --git a/src/lib/link-meta/bsky.ts b/src/lib/link-meta/bsky.ts deleted file mode 100644 index 3d49f5237f..0000000000 --- a/src/lib/link-meta/bsky.ts +++ /dev/null @@ -1,225 +0,0 @@ -import {AppBskyFeedPost, AppBskyGraphStarterpack, BskyAgent} from '@atproto/api' - -import {useFetchDid} from '#/state/queries/handle' -import {useGetPost} from '#/state/queries/post' -import * as apilib from 'lib/api/index' -import { - createStarterPackUri, - parseStarterPackUri, -} from 'lib/strings/starter-pack' -import {ComposerOptsQuote} from 'state/shell/composer' -// import {match as matchRoute} from 'view/routes' -import {convertBskyAppUrlIfNeeded, makeRecordUri} from '../strings/url-helpers' -import {LikelyType, LinkMeta} from './link-meta' - -// TODO -// import {Home} from 'view/screens/Home' -// import {Search} from 'view/screens/Search' -// import {Notifications} from 'view/screens/Notifications' -// import {PostThread} from 'view/screens/PostThread' -// import {PostUpvotedBy} from 'view/screens/PostUpvotedBy' -// import {PostRepostedBy} from 'view/screens/PostRepostedBy' -// import {Profile} from 'view/screens/Profile' -// import {ProfileFollowers} from 'view/screens/ProfileFollowers' -// import {ProfileFollows} from 'view/screens/ProfileFollows' - -// NOTE -// this is a hack around the lack of hosted social metadata -// remove once that's implemented -// -prf -export async function extractBskyMeta( - agent: BskyAgent, - url: string, -): Promise { - url = convertBskyAppUrlIfNeeded(url) - // const route = matchRoute(url) - let meta: LinkMeta = { - likelyType: LikelyType.AtpData, - url, - // title: route.defaultTitle, - } - - // if (route.Com === Home) { - // meta = { - // ...meta, - // title: 'Bluesky', - // description: 'A new kind of social network', - // } - // } else if (route.Com === Search) { - // meta = { - // ...meta, - // title: 'Search - Bluesky', - // description: 'A new kind of social network', - // } - // } else if (route.Com === Notifications) { - // meta = { - // ...meta, - // title: 'Notifications - Bluesky', - // description: 'A new kind of social network', - // } - // } else if ( - // route.Com === PostThread || - // route.Com === PostUpvotedBy || - // route.Com === PostRepostedBy - // ) { - // // post and post-related screens - // const threadUri = makeRecordUri( - // route.params.name, - // 'app.bsky.feed.post', - // route.params.rkey, - // ) - // const threadView = new PostThreadViewModel(store, { - // uri: threadUri, - // depth: 0, - // }) - // await threadView.setup().catch(_err => undefined) - // const title = [ - // route.Com === PostUpvotedBy - // ? 'Likes on a post by' - // : route.Com === PostRepostedBy - // ? 'Reposts of a post by' - // : 'Post by', - // threadView.thread?.post.author.displayName || - // threadView.thread?.post.author.handle || - // 'a bluesky user', - // ].join(' ') - // meta = { - // ...meta, - // title, - // description: threadView.thread?.postRecord?.text, - // } - // } else if ( - // route.Com === Profile || - // route.Com === ProfileFollowers || - // route.Com === ProfileFollows - // ) { - // // profile and profile-related screens - // const profile = await store.profiles.getProfile(route.params.name) - // if (profile?.data) { - // meta = { - // ...meta, - // title: profile.data.displayName || profile.data.handle, - // description: profile.data.description, - // } - // } - // } - - return meta -} - -export class EmbeddingDisabledError extends Error { - constructor() { - super('Embedding is disabled for this record') - } -} -export async function getPostAsQuote( - getPost: ReturnType, - url: string, -): Promise { - url = convertBskyAppUrlIfNeeded(url) - const [_0, user, _1, rkey] = url.split('/').filter(Boolean) - const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey) - const post = await getPost({uri: uri}) - if (post.viewer?.embeddingDisabled) { - throw new EmbeddingDisabledError() - } - return { - uri: post.uri, - cid: post.cid, - text: AppBskyFeedPost.isRecord(post.record) ? post.record.text : '', - indexedAt: post.indexedAt, - author: post.author, - } -} - -export async function getFeedAsEmbed( - agent: BskyAgent, - fetchDid: ReturnType, - url: string, -): Promise { - url = convertBskyAppUrlIfNeeded(url) - const [_0, handleOrDid, _1, rkey] = url.split('/').filter(Boolean) - const did = await fetchDid(handleOrDid) - const feed = makeRecordUri(did, 'app.bsky.feed.generator', rkey) - const res = await agent.app.bsky.feed.getFeedGenerator({feed}) - return { - isLoading: false, - uri: feed, - meta: { - url: feed, - likelyType: LikelyType.AtpData, - title: res.data.view.displayName, - }, - embed: { - $type: 'app.bsky.embed.record', - record: { - uri: res.data.view.uri, - cid: res.data.view.cid, - }, - }, - } -} - -export async function getListAsEmbed( - agent: BskyAgent, - fetchDid: ReturnType, - url: string, -): Promise { - url = convertBskyAppUrlIfNeeded(url) - const [_0, handleOrDid, _1, rkey] = url.split('/').filter(Boolean) - const did = await fetchDid(handleOrDid) - const list = makeRecordUri(did, 'app.bsky.graph.list', rkey) - const res = await agent.app.bsky.graph.getList({list}) - return { - isLoading: false, - uri: list, - meta: { - url: list, - likelyType: LikelyType.AtpData, - title: res.data.list.name, - }, - embed: { - $type: 'app.bsky.embed.record', - record: { - uri: res.data.list.uri, - cid: res.data.list.cid, - }, - }, - } -} - -export async function getStarterPackAsEmbed( - agent: BskyAgent, - fetchDid: ReturnType, - url: string, -): Promise { - const parsed = parseStarterPackUri(url) - if (!parsed) { - throw new Error( - 'Unexepectedly called getStarterPackAsEmbed with a non-starterpack url', - ) - } - const did = await fetchDid(parsed.name) - const starterPack = createStarterPackUri({did, rkey: parsed.rkey}) - const res = await agent.app.bsky.graph.getStarterPack({starterPack}) - const record = res.data.starterPack.record - return { - isLoading: false, - uri: starterPack, - meta: { - url: starterPack, - likelyType: LikelyType.AtpData, - // Validation here should never fail - title: AppBskyGraphStarterpack.isRecord(record) - ? record.name - : 'Starter Pack', - }, - embed: { - $type: 'app.bsky.embed.record', - record: { - uri: res.data.starterPack.uri, - cid: res.data.starterPack.cid, - }, - }, - } -} diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index 6416df2b72..ea9190b6ee 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -1,10 +1,9 @@ import {BskyAgent} from '@atproto/api' -import {LINK_META_PROXY} from 'lib/constants' -import {getGiphyMetaUri} from 'lib/strings/embed-player' -import {parseStarterPackUri} from 'lib/strings/starter-pack' +import {LINK_META_PROXY} from '#/lib/constants' +import {getGiphyMetaUri} from '#/lib/strings/embed-player' +import {parseStarterPackUri} from '#/lib/strings/starter-pack' import {isBskyAppUrl} from '../strings/url-helpers' -import {extractBskyMeta} from './bsky' export enum LikelyType { HTML, @@ -31,7 +30,10 @@ export async function getLinkMeta( timeout = 15e3, ): Promise { if (isBskyAppUrl(url) && !parseStarterPackUri(url)) { - return extractBskyMeta(agent, url) + return { + likelyType: LikelyType.AtpData, + url, + } } let urlp diff --git a/src/lib/media/image-sizes.ts b/src/lib/media/image-sizes.ts index 4ea95ea237..7a15556882 100644 --- a/src/lib/media/image-sizes.ts +++ b/src/lib/media/image-sizes.ts @@ -1,5 +1,6 @@ import {Image} from 'react-native' -import type {Dimensions} from 'lib/media/types' + +import type {Dimensions} from '#/lib/media/types' const sizes: Map = new Map() const activeRequests: Map> = new Map() diff --git a/src/lib/media/picker.shared.ts b/src/lib/media/picker.shared.ts index b959ce8be9..a45bf5c0f1 100644 --- a/src/lib/media/picker.shared.ts +++ b/src/lib/media/picker.shared.ts @@ -3,8 +3,10 @@ import { launchImageLibraryAsync, MediaTypeOptions, } from 'expo-image-picker' +// TODO: replace global i18n instance with one returned from useLingui -sfn +import {t} from '@lingui/macro' -import * as Toast from 'view/com/util/Toast' +import * as Toast from '#/view/com/util/Toast' import {getDataUriSize} from './util' export async function openPicker(opts?: ImagePickerOptions) { @@ -17,14 +19,14 @@ export async function openPicker(opts?: ImagePickerOptions) { }) if (response.assets && response.assets.length > 4) { - Toast.show('You may only select up to 4 images', 'exclamation-circle') + Toast.show(t`You may only select up to 4 images`, 'exclamation-circle') } return (response.assets ?? []) .slice(0, 4) .filter(asset => { if (asset.mimeType?.startsWith('image/')) return true - Toast.show('Only image files are supported', 'exclamation-circle') + Toast.show(t`Only image files are supported`, 'exclamation-circle') return false }) .map(image => ({ diff --git a/src/lib/media/video/compress.ts b/src/lib/media/video/compress.ts index dec9032a34..c2d1470c63 100644 --- a/src/lib/media/video/compress.ts +++ b/src/lib/media/video/compress.ts @@ -2,8 +2,8 @@ import {getVideoMetaData, Video} from 'react-native-compressor' import {ImagePickerAsset} from 'expo-image-picker' import {SUPPORTED_MIME_TYPES, SupportedMimeTypes} from '#/lib/constants' -import {extToMime} from '#/state/queries/video/util' import {CompressedVideo} from './types' +import {extToMime} from './util' const MIN_SIZE_FOR_COMPRESSION = 25 // 25mb diff --git a/src/lib/media/video/compress.web.ts b/src/lib/media/video/compress.web.ts index 7f057d2ea5..ef868792aa 100644 --- a/src/lib/media/video/compress.web.ts +++ b/src/lib/media/video/compress.web.ts @@ -1,6 +1,6 @@ import {ImagePickerAsset} from 'expo-image-picker' -import {VideoTooLargeError} from 'lib/media/video/errors' +import {VideoTooLargeError} from '#/lib/media/video/errors' import {CompressedVideo} from './types' const MAX_VIDEO_SIZE = 1024 * 1024 * 50 // 50mb diff --git a/src/lib/media/video/upload.shared.ts b/src/lib/media/video/upload.shared.ts new file mode 100644 index 0000000000..8c217eadcf --- /dev/null +++ b/src/lib/media/video/upload.shared.ts @@ -0,0 +1,61 @@ +import {BskyAgent} from '@atproto/api' +import {I18n} from '@lingui/core' +import {msg} from '@lingui/macro' + +import {VIDEO_SERVICE_DID} from '#/lib/constants' +import {UploadLimitError} from '#/lib/media/video/errors' +import {getServiceAuthAudFromUrl} from '#/lib/strings/url-helpers' +import {createVideoAgent} from './util' + +export async function getServiceAuthToken({ + agent, + aud, + lxm, + exp, +}: { + agent: BskyAgent + aud?: string + lxm: string + exp?: number +}) { + const pdsAud = getServiceAuthAudFromUrl(agent.dispatchUrl) + if (!pdsAud) { + throw new Error('Agent does not have a PDS URL') + } + const {data: serviceAuth} = await agent.com.atproto.server.getServiceAuth({ + aud: aud ?? pdsAud, + lxm, + exp, + }) + return serviceAuth.token +} + +export async function getVideoUploadLimits(agent: BskyAgent, _: I18n['_']) { + const token = await getServiceAuthToken({ + agent, + lxm: 'app.bsky.video.getUploadLimits', + aud: VIDEO_SERVICE_DID, + }) + const videoAgent = createVideoAgent() + const {data: limits} = await videoAgent.app.bsky.video + .getUploadLimits({}, {headers: {Authorization: `Bearer ${token}`}}) + .catch(err => { + if (err instanceof Error) { + throw new UploadLimitError(err.message) + } else { + throw err + } + }) + + if (!limits.canUpload) { + if (limits.message) { + throw new UploadLimitError(limits.message) + } else { + throw new UploadLimitError( + _( + msg`You have temporarily reached the limit for video uploads. Please try again later.`, + ), + ) + } + } +} diff --git a/src/lib/media/video/upload.ts b/src/lib/media/video/upload.ts new file mode 100644 index 0000000000..720283a8da --- /dev/null +++ b/src/lib/media/video/upload.ts @@ -0,0 +1,79 @@ +import {createUploadTask, FileSystemUploadType} from 'expo-file-system' +import {AppBskyVideoDefs, BskyAgent} from '@atproto/api' +import {I18n} from '@lingui/core' +import {msg} from '@lingui/macro' +import {nanoid} from 'nanoid/non-secure' + +import {AbortError} from '#/lib/async/cancelable' +import {ServerError} from '#/lib/media/video/errors' +import {CompressedVideo} from '#/lib/media/video/types' +import {getServiceAuthToken, getVideoUploadLimits} from './upload.shared' +import {createVideoEndpointUrl, mimeToExt} from './util' + +export async function uploadVideo({ + video, + agent, + did, + setProgress, + signal, + _, +}: { + video: CompressedVideo + agent: BskyAgent + did: string + setProgress: (progress: number) => void + signal: AbortSignal + _: I18n['_'] +}) { + if (signal.aborted) { + throw new AbortError() + } + await getVideoUploadLimits(agent, _) + + const uri = createVideoEndpointUrl('/xrpc/app.bsky.video.uploadVideo', { + did, + name: `${nanoid(12)}.${mimeToExt(video.mimeType)}`, + }) + + if (signal.aborted) { + throw new AbortError() + } + const token = await getServiceAuthToken({ + agent, + lxm: 'com.atproto.repo.uploadBlob', + exp: Date.now() / 1000 + 60 * 30, // 30 minutes + }) + const uploadTask = createUploadTask( + uri, + video.uri, + { + headers: { + 'content-type': video.mimeType, + Authorization: `Bearer ${token}`, + }, + httpMethod: 'POST', + uploadType: FileSystemUploadType.BINARY_CONTENT, + }, + p => setProgress(p.totalBytesSent / p.totalBytesExpectedToSend), + ) + + if (signal.aborted) { + throw new AbortError() + } + const res = await uploadTask.uploadAsync() + + if (!res?.body) { + throw new Error('No response') + } + + const responseBody = JSON.parse(res.body) as AppBskyVideoDefs.JobStatus + + if (!responseBody.jobId) { + throw new ServerError(responseBody.error || _(msg`Failed to upload video`)) + } + + if (signal.aborted) { + throw new AbortError() + } + return responseBody +} diff --git a/src/lib/media/video/upload.web.ts b/src/lib/media/video/upload.web.ts new file mode 100644 index 0000000000..d1b441a369 --- /dev/null +++ b/src/lib/media/video/upload.web.ts @@ -0,0 +1,95 @@ +import {AppBskyVideoDefs} from '@atproto/api' +import {BskyAgent} from '@atproto/api' +import {I18n} from '@lingui/core' +import {msg} from '@lingui/macro' +import {nanoid} from 'nanoid/non-secure' + +import {AbortError} from '#/lib/async/cancelable' +import {ServerError} from '#/lib/media/video/errors' +import {CompressedVideo} from '#/lib/media/video/types' +import {getServiceAuthToken, getVideoUploadLimits} from './upload.shared' +import {createVideoEndpointUrl, mimeToExt} from './util' + +export async function uploadVideo({ + video, + agent, + did, + setProgress, + signal, + _, +}: { + video: CompressedVideo + agent: BskyAgent + did: string + setProgress: (progress: number) => void + signal: AbortSignal + _: I18n['_'] +}) { + if (signal.aborted) { + throw new AbortError() + } + await getVideoUploadLimits(agent, _) + + const uri = createVideoEndpointUrl('/xrpc/app.bsky.video.uploadVideo', { + did, + name: `${nanoid(12)}.${mimeToExt(video.mimeType)}`, + }) + + let bytes = video.bytes + if (!bytes) { + if (signal.aborted) { + throw new AbortError() + } + bytes = await fetch(video.uri).then(res => res.arrayBuffer()) + } + + if (signal.aborted) { + throw new AbortError() + } + const token = await getServiceAuthToken({ + agent, + lxm: 'com.atproto.repo.uploadBlob', + exp: Date.now() / 1000 + 60 * 30, // 30 minutes + }) + + if (signal.aborted) { + throw new AbortError() + } + const xhr = new XMLHttpRequest() + const res = await new Promise( + (resolve, reject) => { + xhr.upload.addEventListener('progress', e => { + const progress = e.loaded / e.total + setProgress(progress) + }) + xhr.onloadend = () => { + if (signal.aborted) { + reject(new AbortError()) + } else if (xhr.readyState === 4) { + const uploadRes = JSON.parse( + xhr.responseText, + ) as AppBskyVideoDefs.JobStatus + resolve(uploadRes) + } else { + reject(new ServerError(_(msg`Failed to upload video`))) + } + } + xhr.onerror = () => { + reject(new ServerError(_(msg`Failed to upload video`))) + } + xhr.open('POST', uri) + xhr.setRequestHeader('Content-Type', video.mimeType) + xhr.setRequestHeader('Authorization', `Bearer ${token}`) + xhr.send(bytes) + }, + ) + + if (!res.jobId) { + throw new ServerError(res.error || _(msg`Failed to upload video`)) + } + + if (signal.aborted) { + throw new AbortError() + } + return res +} diff --git a/src/state/queries/video/util.ts b/src/lib/media/video/util.ts similarity index 86% rename from src/state/queries/video/util.ts rename to src/lib/media/video/util.ts index 2c1298ab63..87b422c2c9 100644 --- a/src/state/queries/video/util.ts +++ b/src/lib/media/video/util.ts @@ -1,4 +1,3 @@ -import {useMemo} from 'react' import {AtpAgent} from '@atproto/api' import {SupportedMimeTypes, VIDEO_SERVICE} from '#/lib/constants' @@ -17,12 +16,10 @@ export const createVideoEndpointUrl = ( return url.href } -export function useVideoAgent() { - return useMemo(() => { - return new AtpAgent({ - service: VIDEO_SERVICE, - }) - }, []) +export function createVideoAgent() { + return new AtpAgent({ + service: VIDEO_SERVICE, + }) } export function mimeToExt(mimeType: SupportedMimeTypes | (string & {})) { diff --git a/src/lib/moderation.ts b/src/lib/moderation.ts index 7576a9c33c..be503f4c79 100644 --- a/src/lib/moderation.ts +++ b/src/lib/moderation.ts @@ -14,6 +14,14 @@ import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' import {AppModerationCause} from '#/components/Pills' +export const ADULT_CONTENT_LABELS = ['sexual', 'nudity', 'porn'] +export const OTHER_SELF_LABELS = ['graphic-media'] +export const SELF_LABELS = [...ADULT_CONTENT_LABELS, ...OTHER_SELF_LABELS] + +export type AdultSelfLabel = (typeof ADULT_CONTENT_LABELS)[number] +export type OtherSelfLabel = (typeof OTHER_SELF_LABELS)[number] +export type SelfLabel = (typeof SELF_LABELS)[number] + export function getModerationCauseKey( cause: ModerationCause | AppModerationCause, ): string { diff --git a/src/lib/moderation/create-sanitized-display-name.ts b/src/lib/moderation/create-sanitized-display-name.ts index 5863503f5b..4f9584f918 100644 --- a/src/lib/moderation/create-sanitized-display-name.ts +++ b/src/lib/moderation/create-sanitized-display-name.ts @@ -1,7 +1,7 @@ import {AppBskyActorDefs} from '@atproto/api' -import {sanitizeDisplayName} from 'lib/strings/display-names' -import {sanitizeHandle} from 'lib/strings/handles' +import {sanitizeDisplayName} from '#/lib/strings/display-names' +import {sanitizeHandle} from '#/lib/strings/handles' export function createSanitizedDisplayName( profile: diff --git a/src/lib/moderation/useLabelBehaviorDescription.ts b/src/lib/moderation/useLabelBehaviorDescription.ts index 0250c1bc89..4e773e0f0f 100644 --- a/src/lib/moderation/useLabelBehaviorDescription.ts +++ b/src/lib/moderation/useLabelBehaviorDescription.ts @@ -1,6 +1,6 @@ import {InterpretedLabelValueDefinition, LabelPreference} from '@atproto/api' -import {useLingui} from '@lingui/react' import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' export function useLabelBehaviorDescription( labelValueDef: InterpretedLabelValueDefinition, diff --git a/src/lib/notifications/notifications.ts b/src/lib/notifications/notifications.ts index 88b9eee3a5..dfdc3b49c4 100644 --- a/src/lib/notifications/notifications.ts +++ b/src/lib/notifications/notifications.ts @@ -3,10 +3,10 @@ import * as Notifications from 'expo-notifications' import {getBadgeCountAsync, setBadgeCountAsync} from 'expo-notifications' import {BskyAgent} from '@atproto/api' +import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' +import {devicePlatform, isAndroid, isNative} from '#/platform/detection' import {SessionAccount, useAgent, useSession} from '#/state/session' -import {logEvent} from 'lib/statsig/statsig' -import {devicePlatform, isAndroid, isNative} from 'platform/detection' import BackgroundNotificationHandler from '../../../modules/expo-background-notification-handler' const SERVICE_DID = (serviceUrl?: string) => diff --git a/src/lib/routes/links.ts b/src/lib/routes/links.ts index 56b716677b..8a99502620 100644 --- a/src/lib/routes/links.ts +++ b/src/lib/routes/links.ts @@ -1,6 +1,6 @@ import {AppBskyGraphDefs, AtUri} from '@atproto/api' -import {isInvalidHandle} from 'lib/strings/handles' +import {isInvalidHandle} from '#/lib/strings/handles' export function makeProfileLink( info: { diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 426665d07d..e699a47d33 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -11,7 +11,6 @@ export type CommonNavigatorParams = { ModerationMutedAccounts: undefined ModerationBlockedAccounts: undefined Settings: undefined - LanguageSettings: undefined Profile: {name: string; hideBackButton?: boolean} ProfileFollowers: {name: string} ProfileFollows: {name: string} @@ -33,6 +32,7 @@ export type CommonNavigatorParams = { TermsOfService: undefined CommunityGuidelines: undefined CopyrightPolicy: undefined + LanguageSettings: undefined AppPasswords: undefined SavedFeeds: undefined PreferencesFollowingFeed: undefined @@ -40,6 +40,10 @@ export type CommonNavigatorParams = { PreferencesExternalEmbeds: undefined AccessibilitySettings: undefined AppearanceSettings: undefined + AccountSettings: undefined + PrivacyAndSecuritySettings: undefined + ContentAndMediaSettings: undefined + AboutSettings: undefined Search: {q?: string} Hashtag: {tag: string; author?: string} MessagesConversation: {conversation: string; embed?: string} diff --git a/src/lib/sentry.ts b/src/lib/sentry.ts index 37d41e3a2d..2c390d7de9 100644 --- a/src/lib/sentry.ts +++ b/src/lib/sentry.ts @@ -7,7 +7,7 @@ import {Platform} from 'react-native' import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application' import {init} from '@sentry/react-native' -import {BUILD_ENV, IS_DEV, IS_TESTFLIGHT} from 'lib/app-info' +import {BUILD_ENV, IS_DEV, IS_TESTFLIGHT} from '#/lib/app-info' /** * Examples: diff --git a/src/lib/sharing.ts b/src/lib/sharing.ts index a77b5cccaa..c89d2d7a6a 100644 --- a/src/lib/sharing.ts +++ b/src/lib/sharing.ts @@ -1,8 +1,10 @@ import {Share} from 'react-native' // import * as Sharing from 'expo-sharing' import {setStringAsync} from 'expo-clipboard' +// TODO: replace global i18n instance with one returned from useLingui -sfn +import {t} from '@lingui/macro' -import {isAndroid, isIOS} from 'platform/detection' +import {isAndroid, isIOS} from '#/platform/detection' import * as Toast from '#/view/com/util/Toast' /** @@ -20,6 +22,6 @@ export async function shareUrl(url: string) { // React Native Share is not supported by web. Web Share API // has increasing but not full support, so default to clipboard setStringAsync(url) - Toast.show('Copied to clipboard', 'clipboard-check') + Toast.show(t`Copied to clipboard`, 'clipboard-check') } } diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index c9bc8fefb2..9a306ee4f4 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -145,6 +145,8 @@ export type LogEvents = { } 'post:mute': {} 'post:unmute': {} + 'post:pin': {} + 'post:unpin': {} 'profile:follow:sampled': { didBecomeMutual: boolean | undefined followeeClout: number | undefined diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 866d87aef0..715e09be76 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -1,5 +1,5 @@ export type Gate = // Keep this alphabetic please. - | 'debug_show_feedcontext' - | 'post_feed_lang_window' + | 'debug_show_feedcontext' // DISABLED DUE TO EME + | 'post_feed_lang_window' // DISABLED DUE TO EME | 'suggested_feeds_interstitial' diff --git a/src/lib/statsig/statsig.tsx b/src/lib/statsig/statsig.tsx index c50bfeb862..36bd54e2ae 100644 --- a/src/lib/statsig/statsig.tsx +++ b/src/lib/statsig/statsig.tsx @@ -4,10 +4,10 @@ import {AppState, AppStateStatus} from 'react-native' import {sha256} from 'js-sha256' import {Statsig, StatsigProvider} from 'statsig-react-native-expo' +import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from '#/lib/app-info' import {logger} from '#/logger' import {isWeb} from '#/platform/detection' import * as persisted from '#/state/persisted' -import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from 'lib/app-info' import {useSession} from '../../state/session' import {timeout} from '../async/timeout' import {useNonReactiveCallback} from '../hooks/useNonReactiveCallback' @@ -89,7 +89,7 @@ export function toClout(n: number | null | undefined): number | undefined { } } -const DOWNSAMPLE_RATE = 0.95 // 95% likely +const DOWNSAMPLE_RATE = 0.99 // 99% likely const DOWNSAMPLED_EVENTS: Set = new Set([ 'router:navigate:notifications:sampled', 'state:background:sampled', diff --git a/src/lib/strings/display-names.ts b/src/lib/strings/display-names.ts index e0f23fa2cc..a95bfd6798 100644 --- a/src/lib/strings/display-names.ts +++ b/src/lib/strings/display-names.ts @@ -7,6 +7,7 @@ import {ModerationUI} from '@atproto/api' const CHECK_MARKS_RE = /[\u2705\u2713\u2714\u2611]/gu const CONTROL_CHARS_RE = /[\u0000-\u001F\u007F-\u009F\u061C\u200E\u200F\u202A-\u202E\u2066-\u2069]/g +const MULTIPLE_SPACES_RE = /[\s][\s\u200B]+/g export function sanitizeDisplayName( str: string, @@ -16,7 +17,11 @@ export function sanitizeDisplayName( return '' } if (typeof str === 'string') { - return str.replace(CHECK_MARKS_RE, '').replace(CONTROL_CHARS_RE, '').trim() + return str + .replace(CHECK_MARKS_RE, '') + .replace(CONTROL_CHARS_RE, '') + .replace(MULTIPLE_SPACES_RE, ' ') + .trim() } return '' } diff --git a/src/lib/strings/handles.ts b/src/lib/strings/handles.ts index 7955e1b2e4..90786ac3f6 100644 --- a/src/lib/strings/handles.ts +++ b/src/lib/strings/handles.ts @@ -1,6 +1,6 @@ // Regex from the go implementation // https://github.com/bluesky-social/indigo/blob/main/atproto/syntax/handle.go#L10 -import {forceLTR} from 'lib/strings/bidi' +import {forceLTR} from '#/lib/strings/bidi' const VALIDATE_REGEX = /^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$/ diff --git a/src/lib/strings/helpers.ts b/src/lib/strings/helpers.ts index acd55da2d2..ca77c46663 100644 --- a/src/lib/strings/helpers.ts +++ b/src/lib/strings/helpers.ts @@ -41,6 +41,20 @@ export function useEnforceMaxGraphemeCount() { ) } +export function useWarnMaxGraphemeCount({ + text, + maxCount, +}: { + text: string + maxCount: number +}) { + const splitter = useMemo(() => new Graphemer(), []) + + return useMemo(() => { + return splitter.countGraphemes(text) > maxCount + }, [splitter, maxCount, text]) +} + // https://stackoverflow.com/a/52171480 export function toHashCode(str: string, seed = 0): number { let h1 = 0xdeadbeef ^ seed, diff --git a/src/lib/strings/rich-text-helpers.ts b/src/lib/strings/rich-text-helpers.ts index 662004599b..54f0733d0c 100644 --- a/src/lib/strings/rich-text-helpers.ts +++ b/src/lib/strings/rich-text-helpers.ts @@ -1,4 +1,5 @@ import {AppBskyRichtextFacet, RichText} from '@atproto/api' + import {linkRequiresWarning} from './url-helpers' export function richTextToString(rt: RichText, loose: boolean): string { diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 4c8db83999..c44fdf7c2e 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -2,10 +2,10 @@ import {AtUri} from '@atproto/api' import psl from 'psl' import TLDs from 'tlds' +import {BSKY_SERVICE} from '#/lib/constants' +import {isInvalidHandle} from '#/lib/strings/handles' +import {startUriToStarterPackUri} from '#/lib/strings/starter-pack' import {logger} from '#/logger' -import {BSKY_SERVICE} from 'lib/constants' -import {isInvalidHandle} from 'lib/strings/handles' -import {startUriToStarterPackUri} from 'lib/strings/starter-pack' export const BSKY_APP_HOST = 'https://bsky.app' const BSKY_TRUSTED_HOSTS = [ diff --git a/src/lib/themes.ts b/src/lib/themes.ts index eb11872fa3..2aeec31398 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -2,6 +2,7 @@ import {Platform} from 'react-native' import {tokens} from '#/alf' import {darkPalette, dimPalette, lightPalette} from '#/alf/themes' +import {fontWeight} from '#/alf/tokens' import {colors} from './styles' import type {Theme} from './ThemeContext' @@ -90,195 +91,195 @@ export const defaultTheme: Theme = { '2xl-thin': { fontSize: 18, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, '2xl': { fontSize: 18, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, '2xl-medium': { fontSize: 18, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, '2xl-bold': { fontSize: 18, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, '2xl-heavy': { fontSize: 18, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'xl-thin': { fontSize: 17, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, xl: { fontSize: 17, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'xl-medium': { fontSize: 17, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'xl-bold': { fontSize: 17, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'xl-heavy': { fontSize: 17, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'lg-thin': { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, lg: { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'lg-medium': { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'lg-bold': { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'lg-heavy': { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'md-thin': { fontSize: 15, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, md: { fontSize: 15, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'md-medium': { fontSize: 15, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'md-bold': { fontSize: 15, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'md-heavy': { fontSize: 15, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'sm-thin': { fontSize: 14, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, sm: { fontSize: 14, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'sm-medium': { fontSize: 14, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'sm-bold': { fontSize: 14, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'sm-heavy': { fontSize: 14, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'xs-thin': { fontSize: 13, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, xs: { fontSize: 13, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'xs-medium': { fontSize: 13, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'xs-bold': { fontSize: 13, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'xs-heavy': { fontSize: 13, letterSpacing: tokens.TRACKING, - fontWeight: '800', + fontWeight: fontWeight.heavy, }, 'title-2xl': { fontSize: 34, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'title-xl': { fontSize: 28, letterSpacing: tokens.TRACKING, - fontWeight: '600', + fontWeight: fontWeight.bold, }, 'title-lg': { fontSize: 22, - fontWeight: '600', + fontWeight: fontWeight.bold, }, title: { - fontWeight: '600', + fontWeight: fontWeight.bold, fontSize: 20, letterSpacing: tokens.TRACKING, }, 'title-sm': { - fontWeight: '600', + fontWeight: fontWeight.bold, fontSize: 17, letterSpacing: tokens.TRACKING, }, 'post-text': { fontSize: 16, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'post-text-lg': { fontSize: 20, letterSpacing: tokens.TRACKING, - fontWeight: '400', + fontWeight: fontWeight.normal, }, 'button-lg': { - fontWeight: '600', + fontWeight: fontWeight.bold, fontSize: 18, letterSpacing: tokens.TRACKING, }, button: { - fontWeight: '600', + fontWeight: fontWeight.bold, fontSize: 14, letterSpacing: tokens.TRACKING, }, diff --git a/src/locale/__tests__/helpers.test.ts b/src/locale/__tests__/helpers.test.ts index 5e924c9fe8..0cc0b7816e 100644 --- a/src/locale/__tests__/helpers.test.ts +++ b/src/locale/__tests__/helpers.test.ts @@ -1,4 +1,4 @@ -import {test, expect} from '@jest/globals' +import {expect, test} from '@jest/globals' import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {AppLanguage} from '#/locale/languages' diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index a7517eae9b..4613533ab0 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -2,7 +2,7 @@ import {AppBskyFeedDefs, AppBskyFeedPost} from '@atproto/api' import * as bcp47Match from 'bcp-47-match' import lande from 'lande' -import {hasProp} from 'lib/type-guards' +import {hasProp} from '#/lib/type-guards' import { AppLanguage, LANGUAGES_MAP_CODE2, @@ -123,6 +123,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ca case 'de': return AppLanguage.de + case 'en-GB': + return AppLanguage.en_GB case 'es': return AppLanguage.es case 'fi': @@ -133,6 +135,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ga case 'hi': return AppLanguage.hi + case 'hu': + return AppLanguage.hu case 'id': return AppLanguage.id case 'it': @@ -145,12 +149,16 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.pt_BR case 'ru': return AppLanguage.ru + case 'th': + return AppLanguage.th case 'tr': return AppLanguage.tr case 'uk': return AppLanguage.uk case 'zh-CN': return AppLanguage.zh_CN + case 'zh-HK': + return AppLanguage.zh_HK case 'zh-TW': return AppLanguage.zh_TW default: diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts index dce9193a73..b9f69784c4 100644 --- a/src/locale/i18n.ts +++ b/src/locale/i18n.ts @@ -14,20 +14,24 @@ import {AppLanguage} from '#/locale/languages' import {messages as messagesCa} from '#/locale/locales/ca/messages' import {messages as messagesDe} from '#/locale/locales/de/messages' import {messages as messagesEn} from '#/locale/locales/en/messages' +import {messages as messagesEn_GB} from '#/locale/locales/en-GB/messages' import {messages as messagesEs} from '#/locale/locales/es/messages' import {messages as messagesFi} from '#/locale/locales/fi/messages' import {messages as messagesFr} from '#/locale/locales/fr/messages' import {messages as messagesGa} from '#/locale/locales/ga/messages' import {messages as messagesHi} from '#/locale/locales/hi/messages' +import {messages as messagesHu} from '#/locale/locales/hu/messages' import {messages as messagesId} from '#/locale/locales/id/messages' import {messages as messagesIt} from '#/locale/locales/it/messages' import {messages as messagesJa} from '#/locale/locales/ja/messages' import {messages as messagesKo} from '#/locale/locales/ko/messages' import {messages as messagesPt_BR} from '#/locale/locales/pt-BR/messages' import {messages as messagesRu} from '#/locale/locales/ru/messages' +import {messages as messagesTh} from '#/locale/locales/th/messages' import {messages as messagesTr} from '#/locale/locales/tr/messages' import {messages as messagesUk} from '#/locale/locales/uk/messages' import {messages as messagesZh_CN} from '#/locale/locales/zh-CN/messages' +import {messages as messagesZh_HK} from '#/locale/locales/zh-HK/messages' import {messages as messagesZh_TW} from '#/locale/locales/zh-TW/messages' import {useLanguagePrefs} from '#/state/preferences' @@ -52,6 +56,14 @@ export async function dynamicActivate(locale: AppLanguage) { ]) break } + case AppLanguage.en_GB: { + i18n.loadAndActivate({locale, messages: messagesEn_GB}) + await Promise.all([ + import('@formatjs/intl-pluralrules/locale-data/en'), + import('@formatjs/intl-numberformat/locale-data/en-GB'), + ]) + break + } case AppLanguage.es: { i18n.loadAndActivate({locale, messages: messagesEs}) await Promise.all([ @@ -92,6 +104,14 @@ export async function dynamicActivate(locale: AppLanguage) { ]) break } + case AppLanguage.hu: { + i18n.loadAndActivate({locale, messages: messagesHu}) + await Promise.all([ + import('@formatjs/intl-pluralrules/locale-data/hu'), + import('@formatjs/intl-numberformat/locale-data/hu'), + ]) + break + } case AppLanguage.id: { i18n.loadAndActivate({locale, messages: messagesId}) await Promise.all([ @@ -140,6 +160,14 @@ export async function dynamicActivate(locale: AppLanguage) { ]) break } + case AppLanguage.th: { + i18n.loadAndActivate({locale, messages: messagesTh}) + await Promise.all([ + import('@formatjs/intl-pluralrules/locale-data/th'), + import('@formatjs/intl-numberformat/locale-data/th'), + ]) + break + } case AppLanguage.tr: { i18n.loadAndActivate({locale, messages: messagesTr}) await Promise.all([ @@ -164,6 +192,14 @@ export async function dynamicActivate(locale: AppLanguage) { ]) break } + case AppLanguage.zh_HK: { + i18n.loadAndActivate({locale, messages: messagesZh_HK}) + await Promise.all([ + import('@formatjs/intl-pluralrules/locale-data/zh'), + import('@formatjs/intl-numberformat/locale-data/zh'), + ]) + break + } case AppLanguage.zh_TW: { i18n.loadAndActivate({locale, messages: messagesZh_TW}) await Promise.all([ diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 5f5f8592eb..04197fe154 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -20,6 +20,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/de/messages`) break } + case AppLanguage.en_GB: { + mod = await import(`./locales/en-GB/messages`) + break + } case AppLanguage.es: { mod = await import(`./locales/es/messages`) break @@ -40,6 +44,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/hi/messages`) break } + case AppLanguage.hu: { + mod = await import(`./locales/hu/messages`) + break + } case AppLanguage.id: { mod = await import(`./locales/id/messages`) break @@ -64,6 +72,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/ru/messages`) break } + case AppLanguage.th: { + mod = await import(`./locales/th/messages`) + break + } case AppLanguage.tr: { mod = await import(`./locales/tr/messages`) break @@ -76,6 +88,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/zh-CN/messages`) break } + case AppLanguage.zh_HK: { + mod = await import(`./locales/zh-HK/messages`) + break + } case AppLanguage.zh_TW: { mod = await import(`./locales/zh-TW/messages`) break diff --git a/src/locale/i18nProvider.tsx b/src/locale/i18nProvider.tsx index 3766f5b716..f7f0679731 100644 --- a/src/locale/i18nProvider.tsx +++ b/src/locale/i18nProvider.tsx @@ -1,6 +1,7 @@ import React from 'react' -import {I18nProvider as DefaultI18nProvider} from '@lingui/react' import {i18n} from '@lingui/core' +import {I18nProvider as DefaultI18nProvider} from '@lingui/react' + import {useLocaleLanguage} from './i18n' export default function I18nProvider({children}: {children: React.ReactNode}) { diff --git a/src/locale/languages.ts b/src/locale/languages.ts index 71a77986ff..b3672936cc 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -8,20 +8,24 @@ export enum AppLanguage { en = 'en', ca = 'ca', de = 'de', + en_GB = 'en-GB', es = 'es', fi = 'fi', fr = 'fr', ga = 'ga', hi = 'hi', + hu = 'hu', id = 'id', it = 'it', ja = 'ja', ko = 'ko', pt_BR = 'pt-BR', ru = 'ru', + th = 'th', tr = 'tr', uk = 'uk', zh_CN = 'zh-CN', + zh_HK = 'zh-HK', zh_TW = 'zh-TW', } @@ -34,21 +38,25 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.en, name: 'English'}, {code2: AppLanguage.ca, name: 'Català – Catalan'}, {code2: AppLanguage.de, name: 'Deutsch – German'}, + {code2: AppLanguage.en_GB, name: 'English (UK)'}, {code2: AppLanguage.es, name: 'Español – Spanish'}, {code2: AppLanguage.fi, name: 'Suomi – Finnish'}, {code2: AppLanguage.fr, name: 'Français – French'}, {code2: AppLanguage.ga, name: 'Gaeilge – Irish'}, {code2: AppLanguage.hi, name: 'हिंदी – Hindi'}, + {code2: AppLanguage.hu, name: 'magyar – Hungarian'}, {code2: AppLanguage.id, name: 'Bahasa Indonesia – Indonesian'}, {code2: AppLanguage.it, name: 'Italiano – Italian'}, {code2: AppLanguage.ja, name: '日本語 – Japanese'}, {code2: AppLanguage.ko, name: '한국어 – Korean'}, {code2: AppLanguage.pt_BR, name: 'Português (BR) – Portuguese (BR)'}, {code2: AppLanguage.ru, name: 'Русский – Russian'}, + {code2: AppLanguage.th, name: 'ภาษาไทย – Thai'}, {code2: AppLanguage.tr, name: 'Türkçe – Turkish'}, {code2: AppLanguage.uk, name: 'Українська – Ukrainian'}, - {code2: AppLanguage.zh_CN, name: '简体中文(中国)– Chinese (Simplified)'}, - {code2: AppLanguage.zh_TW, name: '繁體中文(臺灣)– Chinese (Traditional)'}, + {code2: AppLanguage.zh_CN, name: '简体中文 – Simplified Chinese'}, + {code2: AppLanguage.zh_TW, name: '繁體中文 – Traditional Chinese'}, + {code2: AppLanguage.zh_HK, name: '粵文 – Cantonese'}, ] export const LANGUAGES: Language[] = [ diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index bb09cd6cf9..563cdaad90 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -16,7 +16,7 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(té contingut incrustat)" @@ -25,7 +25,7 @@ msgid "(no email)" msgstr "(sense correu)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" @@ -65,7 +65,7 @@ msgstr "{0, plural, one {# minut} other {# minuts}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# mesos}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# republicació} other {# republicacions}}" @@ -87,15 +87,15 @@ msgstr "{0, plural, one {seguidor} other {seguidors}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguint} other {seguint}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {m'agrada} other {m'agrades}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -104,19 +104,19 @@ msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users} msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicació} other {publicacions}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citació} other {citacions}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Resposta per (# reply)} other {Resposta per (# replies)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicació} other {republicacions}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# likes)}}" @@ -138,15 +138,15 @@ msgstr "{0} <0>en <1>etiquetes" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>text i etiquetes" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} s'han unit aquesta setmana" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0} de {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} persones han utilitzat aquest starter pack" @@ -154,7 +154,7 @@ msgstr "{0} persones han utilitzat aquest starter pack" #~ msgid "{0} your feeds" #~ msgstr "{0} els teus canals" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -191,7 +191,7 @@ msgstr "{0}me" msgid "{0}s" msgstr "{0}s" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -216,7 +216,7 @@ msgstr "{count, plural, one {Li ha agradat a # user} other {Li ha agradat a # us #~ msgstr "{diffSeconds, plural, one {segon} other {segons}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Starter Pack de {displayName}" @@ -228,12 +228,12 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuts}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguint" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "No es poden enviar missatges a {handle}" @@ -251,9 +251,9 @@ msgstr "No es poden enviar missatges a {handle}" #~ msgid "{invitesAvailable} invite codes available" #~ msgstr "{invitesAvailable} codis d'invitació disponibles" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -261,7 +261,7 @@ msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a #~ msgid "{message}" #~ msgstr "{missatge}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} no llegides" @@ -285,12 +285,12 @@ msgstr "{profileName} s'uní a Bluesky amb un starter pack, fa {0}" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" @@ -299,15 +299,15 @@ msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} es #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "<0>{0}, <1>{1}, i {2} {3, plural, one {altre} other {altres}} estan inclosos al teu starter pack" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" @@ -315,7 +315,7 @@ msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} seguint" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} està inclòs al teu starter pack" @@ -323,6 +323,10 @@ msgstr "<0>{0} està inclòs al teu starter pack" msgid "<0>{0} members" msgstr "<0>{0} membres" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} a les {time}" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "<0>{followers} <1>{pluralizedFollowers}" @@ -341,18 +345,18 @@ msgstr "<0>{0} membres" #~ msgstr "<0>Segueix alguns<1>usuaris<2>recomanats" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>No aplicable. Aquesta advertència només està disponible per publicacions amb contingut adjunt." +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>No aplicable. Aquesta advertència només està disponible per publicacions amb contingut adjunt." #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Us donem la benvinguda a<1>Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu i<1> <2>{0} esteu inclosos al teu starter pack" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Identificador invàlid" @@ -360,7 +364,7 @@ msgstr "⚠Identificador invàlid" msgid "24 hours" msgstr "24 hores" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Confirmació 2FA" @@ -384,8 +388,8 @@ msgstr "7 dies" #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "Hi ha una nova versió d'aquesta aplicació. Actualitza-la per a continuar." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Accedeix als enllaços de navegació i configuració" @@ -393,17 +397,16 @@ msgstr "Accedeix als enllaços de navegació i configuració" msgid "Access profile and other navigation links" msgstr "Accedeix al perfil i altres enllaços de navegació" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Accessibilitat" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" @@ -411,21 +414,21 @@ msgstr "Configuració d'accessibilitat" #~ msgid "account" #~ msgstr "compte" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Compte bloquejat" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Compte seguit" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Compte silenciat" @@ -446,27 +449,27 @@ msgstr "Opcions del compte" msgid "Account removed from quick access" msgstr "Compte eliminat de l'accés ràpid" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Compte desbloquejat" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Compte no seguit" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Compte no silenciat" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Afegeix" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Afegeix-ne {0} més per a continuar" @@ -474,27 +477,29 @@ msgstr "Afegeix-ne {0} més per a continuar" msgid "Add {displayName} to starter pack" msgstr "Afegeix {displayName} al teu starter pack" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Afegeix una advertència de contingut" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Afegeix un usuari a aquesta llista" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Afegeix un compte" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Afegeix text alternatiu" @@ -502,13 +507,13 @@ msgstr "Afegeix text alternatiu" #~ msgid "Add ALT text" #~ msgstr "Afegeix text alternatiu" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "Afegeix text alternatiu (opcional)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Afegeix una contrasenya d'aplicació" @@ -545,7 +550,7 @@ msgstr "Afegeix les paraules i etiquetes silenciades" msgid "Add recommended feeds" msgstr "Afegeix els canals recomanats" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Afegiu alguns canals al teu starter pack" @@ -553,16 +558,16 @@ msgstr "Afegiu alguns canals al teu starter pack" msgid "Add the default feed of only people you follow" msgstr "Afegeix el canal per defecte només de la gent que segueixes" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Afegeix el següent registre DNS al teu domini:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Afegeix aquest canal als teus canals" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Afegeix a les llistes" @@ -575,7 +580,7 @@ msgstr "Afegeix als meus canals" #~ msgstr "Afegit" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Afegit a la llista" @@ -587,9 +592,10 @@ msgstr "Afegit als meus canals" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per a aparèixer al teu canal." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Contingut per a adults" @@ -597,16 +603,21 @@ msgstr "Contingut per a adults" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "El contingut per a adults només es pot habilitar via web a <0/>." -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "El contingut per a adults només es pot activar a través del web a <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "El contingut per a adults està deshabilitat." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Avançat" @@ -614,11 +625,11 @@ msgstr "Avançat" msgid "Algorithm training complete!" msgstr "Entrenament de l'algorisme completat" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "S'han seguit tots els comptes!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Tots els canals que has desat, en un sol lloc." @@ -632,53 +643,58 @@ msgstr "Permet l'accés als teus missatges directes" #~ msgid "Allow messages from" #~ msgstr "Permet missatges de" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Permet missatges nou de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Permet respostes de:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "Permet l'accés als missatges directes" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Ja tens un codi?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Ja estàs registrat com a @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Text alternatiu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Text alternatiu" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda a donar context a tothom." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "El text alternatiu es tallarà. Límit: {0} caràcters." + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'entrar aquí sota." @@ -686,7 +702,11 @@ msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'en msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "S'ha enviat un correu a la teva adreça prèvia, {0}. Inclou un codi de confirmació que has d'entrar aquí sota." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "S'ha enviat un correu. Entra el codi de confirmació que t'ha arribat per correu." + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Hi ha hagut un error" @@ -694,15 +714,15 @@ msgstr "Hi ha hagut un error" #~ msgid "An error occured" #~ msgstr "Hi ha hagut un error" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Hi ha hagut un error" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "Hi ha hagut un error mentre es comprimia el vídeo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?" @@ -715,19 +735,19 @@ msgid "An error occurred while loading the video. Please try again." msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "S'ha produït un error en desar la imatge!" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "S'ha produït un error en desar la imatge." #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "S'ha produït un error en desar el codi QR!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "Hi ha hagut un error mentre es seleccionava el vídeo" @@ -735,12 +755,12 @@ msgstr "Hi ha hagut un error mentre es seleccionava el vídeo" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Hi ha hagut un error intentant esborrar el missatge. Torna-ho a provar." -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "S'ha produït un error en intentar seguir-ho tot" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "Hi ha hagut un error mentre es pujava el vídeo." @@ -752,40 +772,40 @@ msgstr "Un problema que no està inclòs en aquestes opcions" msgid "An issue occurred starting the chat" msgstr "Hi ha hagut un problema en inciar el xat" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Hi ha hagut un problema en provar d'obrir el xat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Hi ha hagut un problema, prova-ho de nou." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "hi ha hagut un problema desconegut" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "un etiquetador desconegut" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "i" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF animat" @@ -793,15 +813,20 @@ msgstr "GIF animat" msgid "Anti-Social Behavior" msgstr "Comportament antisocial" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Qualsevol idioma" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Qualsevol pot interactuar" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Idioma de l'aplicació" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Contrasenya de l'aplicació esborrada" @@ -813,7 +838,7 @@ msgstr "La contrasenya de l'aplicació només pot estar formada per lletres, nú msgid "App Password names must be at least 4 characters long." msgstr "La contrasenya de l'aplicació ha de ser d'almenys 4 caràcters." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Configuració de la contrasenya d'aplicació" @@ -821,18 +846,18 @@ msgstr "Configuració de la contrasenya d'aplicació" #~ msgid "App passwords" #~ msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Apel·la" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Apel·la \"{0}\" etiqueta" @@ -848,8 +873,8 @@ msgstr "Apel·la \"{0}\" etiqueta" #~ msgid "Appeal Decision" #~ msgstr "Decisión de apelación" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apel·lació enviada" @@ -857,10 +882,10 @@ msgstr "Apel·lació enviada" #~ msgid "Appeal submitted." #~ msgstr "Apel·lació enviada." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Apel·la aquesta decisió" @@ -868,16 +893,16 @@ msgstr "Apel·la aquesta decisió" #~ msgid "Appeal this decision." #~ msgstr "Apel·la aquesta decisió." -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Aparença" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Preferències de l'aparença" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Preferències de l'aparença" @@ -890,7 +915,7 @@ msgstr "Aplica els canals recomanats per defecte" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "Segur que vols suprimir aquest starter pack?" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?" @@ -902,10 +927,14 @@ msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Estàs segur que vols eliminar aquest starter pack?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborraran per a tu, però no per als altres participants." @@ -918,11 +947,11 @@ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatge s'esborra msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confirmes que vols eliminar {0} dels teus canals?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "Segur que vols eliminar-ho dels teus canals?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" @@ -939,11 +968,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Estàs escrivint en <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Art" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Nuesa artística o no eròtica." @@ -952,22 +981,22 @@ msgid "At least 3 characters" msgstr "Almenys 3 caràcters" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Endarrere" @@ -980,20 +1009,20 @@ msgstr "Endarrere" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Segons els teus interessos en {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Conceptes bàsics" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Aniversari" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Aniversari:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Bloqueja" @@ -1002,24 +1031,24 @@ msgstr "Bloqueja" msgid "Block account" msgstr "Bloqueja el compte" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Bloqueja el compte" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Vols bloquejar el compte?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Bloqueja comptes" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Bloqueja una llista" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Vols bloquejar aquests comptes?" @@ -1027,24 +1056,24 @@ msgstr "Vols bloquejar aquests comptes?" #~ msgid "Block this List" #~ msgstr "Bloqueja la llista" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Bloquejada" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Comptes bloquejats" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veuràs mai el seu contingut ni ells el teu." @@ -1056,26 +1085,30 @@ msgstr "Publicació bloquejada." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu compte." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueig és públic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Bloquejar no evitarà que s'apliquin etiquetes al teu compte, però no deixarà que aquest compte respongui els teus fils ni interactuï amb tu." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotjament. L'allotjament personalitzat està disponible en beta per a desenvolupadors." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotjament. L'allotjament personalitzat està disponible en beta per a desenvolupadors." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotjament. Si ets un desenvolupador pots allotjar el teu propi servidor." #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -1097,18 +1130,18 @@ msgstr "Bluesky és millor amb col·legues!" #~ msgstr "Bluesky és públic." #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "Bluesky té més de 10 milions d'usuaris ara, i jo he estat el #{0}!" #: src/view/com/modals/Waitlist.tsx:70 #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky utilitza les invitacions per construir una comunitat saludable. Si no coneixes ningú amb invitacions, pots apuntar-te a la llista d'espera i te n'enviarem una aviat." -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la teva xarxa." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat." @@ -1125,13 +1158,13 @@ msgid "Blur images and filter from feeds" msgstr "Difumina les imatges i filtra-ho dels canals" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Llibres" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "Presumeix-ne una mica!" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1151,7 +1184,7 @@ msgstr "Explora més recomanacions" #: src/components/FeedInterstitials.tsx:358 #: src/components/FeedInterstitials.tsx:492 msgid "Browse more suggestions on the Explore page" -msgstr "Explora més recomancaions a la pàgina Explora" +msgstr "Explora més recomanacions a la pàgina Explora" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 @@ -1162,7 +1195,7 @@ msgstr "Explora altres canals" #~ msgid "Build version {0} {1}" #~ msgstr "Versió {0} {1}" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Negocis" @@ -1178,7 +1211,7 @@ msgstr "per -" #~ msgid "by {0}" #~ msgstr "per {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Per {0}" @@ -1191,14 +1224,26 @@ msgid "by <0/>" msgstr "per <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Creant el compte indiques que estàs d'acord amb {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Creant un compte indiques que estàs d'acord amb {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "Creant un compte indiques que estàs d'acord amb la <0>Política de privadesa." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei i amb la <0>Política de privadesa." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei." #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "per tu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Càmera" @@ -1207,33 +1252,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha de tenir almenys 4 caràcters i no més de 32." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Cancel·la" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1249,19 +1293,19 @@ msgstr "Cancel·la la supressió del compte" #~ msgid "Cancel add image alt text" #~ msgstr "Cancel·la afegir text a la imatge" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Cancel·la el canvi d'identificador" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Cancel·la la retallada de la imatge" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Cancel·la l'edició del perfil" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Cancel·la l'edició del perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Cancel·la la citació de la publicació" @@ -1270,6 +1314,7 @@ msgid "Cancel reactivation and log out" msgstr "Cancel·la la reactivació i surt" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Cancel·la la cerca" @@ -1281,14 +1326,14 @@ msgstr "Cancel·la la cerca" msgid "Cancels opening the linked website" msgstr "Cancel·la obrir la web enllaçada" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "No pots interactuar amb un usuari bloquejat" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "Subtítols (.vtt)" @@ -1297,24 +1342,28 @@ msgid "Captions & alt text" msgstr "Subtítols i text alternatiu" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "Celebrant {0} usuaris" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "Canvia l'adreça de correu" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Canvia l'identificador" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Canvia l'identificador" @@ -1322,12 +1371,12 @@ msgstr "Canvia l'identificador" msgid "Change my email" msgstr "Canvia el meu correu" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Canvia la contrasenya" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Canvia la contrasenya" @@ -1343,9 +1392,10 @@ msgstr "Canvia l'idioma de la publicació a {0}" msgid "Change Your Email" msgstr "Canvia el teu correu" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Xat" @@ -1355,14 +1405,14 @@ msgstr "Xat silenciat" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Configuració del xat" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Configuració del xat" @@ -1387,7 +1437,7 @@ msgstr "Comprova el meu estat" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Mira alguns usuaris recomanats. Segueix-los per a veure altres usuaris similars." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Comprova el teu correu electrònic per a obtenir un codi d'inici de sessió i introdueix-lo aquí." @@ -1411,23 +1461,27 @@ msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aqu #~ msgid "Choose at least {0} more" #~ msgstr "Tria'n almenys {0} més" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Tria els canals" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Tria per mi" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Tria les persones" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Tria un servei" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Tria els algoritmes que alimentaran els teus canals personalitzats." @@ -1449,7 +1503,7 @@ msgstr "Tria aquest color com el teu avatar" #~ msgid "Choose your main feeds" #~ msgstr "Tria els teus canals principals" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Tria la teva contrasenya" @@ -1461,16 +1515,15 @@ msgstr "Tria la teva contrasenya" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Esborra totes les dades antigues emmagatzemades (i després reinicia)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i després reinicia)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Esborra la cerca" @@ -1478,11 +1531,11 @@ msgstr "Esborra la cerca" #~ msgid "Clears all legacy storage data" #~ msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clica aquí" @@ -1506,15 +1559,15 @@ msgstr "Clica aquí per a obrir el menú d'etiquetes per {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clica aquí per a obrir el menú d'etiquetes per #{tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Clica per a deshabilitar les citacions d'aquesta publicació." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Clica per a habilitar les citacions d'aquesta publicació." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Clica aquí per provar d'enviar el missatge de nou" @@ -1526,27 +1579,25 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Tanca" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Tanca el diàleg actiu" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Tanca l'advertència" @@ -1554,12 +1605,11 @@ msgstr "Tanca l'advertència" msgid "Close bottom drawer" msgstr "Tanca el calaix inferior" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Tanca el diàleg" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Tanca el diàleg de GIF" @@ -1572,29 +1622,29 @@ msgid "Close image viewer" msgstr "Tanca el visor d'imatges" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Tanca el modal" +#~ msgid "Close modal" +#~ msgstr "Tanca el modal" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Tanca el peu de la navegació" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Tanca aquest diàleg" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Tanca la barra de navegació inferior" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Tanca l'alerta d'actualització de contrasenya" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Tanca l'editor de la publicació i descarta l'esborrany" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Tanca l'editor de la publicació i descarta l'esborrany" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1604,41 +1654,49 @@ msgstr "Tanca la visualització de la imatge de la capçalera" msgid "Collapse list of users" msgstr "Plega la llista d'usuaris" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Mode de color" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Comèdia" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Còmics" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrius de la comunitat" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Finalitza el registre i comença a utilitzar el teu compte" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Completa la prova" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Crea publicacions de fins a {MAX_GRAPHEME_LENGTH} caràcters" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Redacta una resposta" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "Comprimint..." @@ -1651,17 +1709,19 @@ msgstr "Redacta una resposta" msgid "Configure content filtering setting for category: {name}" msgstr "Configura els filtres de continguts per la categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Configurat a <0>configuració de moderació." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Confirma" @@ -1688,34 +1748,39 @@ msgstr "Confirma l'eliminació del compte" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Confirma la teva edat per a habilitar el contingut per a adults" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Confirma la teva edat:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Confirma la teva data de naixement" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Codi de confirmació" +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "Codi de confirmació" + #: src/view/com/modals/Waitlist.tsx:120 #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "Confirma afegir {email} a la llista d'espera" -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Connectant…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Contacta amb suport" @@ -1735,12 +1800,12 @@ msgstr "Contingut bloquejat" #~ msgid "Content Filtering" #~ msgstr "Filtre de contingut" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Filtres de contingut" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Idiomes del contingut" @@ -1750,13 +1815,13 @@ msgid "Content Not Available" msgstr "Contingut no disponible" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Advertència del contingut" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Advertències del contingut" @@ -1764,12 +1829,12 @@ msgstr "Advertències del contingut" msgid "Context menu backdrop, click to close the menu." msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Continua" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Continua com a {0} (sessió actual)" @@ -1777,9 +1842,9 @@ msgstr "Continua com a {0} (sessió actual)" msgid "Continue thread..." msgstr "Continua el fil..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Continua" @@ -1791,7 +1856,7 @@ msgstr "Continua" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Continua sense seguir cap compte" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Conversa esborrada" @@ -1804,20 +1869,21 @@ msgstr "Cuina" msgid "Copied" msgstr "Copiat" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Copiat en memòria" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Copiat" @@ -1825,17 +1891,17 @@ msgstr "Copiat" msgid "Copies app password" msgstr "Copia la contrasenya d'aplicació" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copia" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Copia {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Copia el codi" @@ -1847,12 +1913,12 @@ msgstr "Copia l'enllaç" msgid "Copy Link" msgstr "Copia l'enllaç" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Copia l'enllaç a la llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Copia l'enllaç a la publicació" @@ -1865,17 +1931,17 @@ msgstr "Copia l'enllaç a la publicació" msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Copia el text de la publicació" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Copia el codi QR" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de drets d'autor" @@ -1887,11 +1953,11 @@ msgstr "Política de drets d'autor" msgid "Could not leave chat" msgstr "No s'ha pogut sortir del xat" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "No s'ha pogut carregar el canal" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "No s'ha pogut carregar la llista" @@ -1915,34 +1981,39 @@ msgstr "No s'ha pogut processar el teu vídeo" #~ msgid "Country" #~ msgstr "País" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Crea" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Crea un nou compte" +#~ msgid "Create a new account" +#~ msgstr "Crea un nou compte" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Crea un codi QR per a un starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Crea un starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Crea un starter pack per a mi" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "Crea un compte" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Crea un compte" @@ -1951,11 +2022,11 @@ msgstr "Crea un compte" msgid "Create an account" msgstr "Crea un compte" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Enlloc d'això, crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Crea'n un altre" @@ -1964,7 +2035,7 @@ msgid "Create App Password" msgstr "Crea una contrasenya d'aplicació" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crea un nou compte" @@ -1976,7 +2047,7 @@ msgstr "Crea un nou compte" msgid "Create report for {0}" msgstr "Crea un informe per a {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Creat {0}" @@ -1993,29 +2064,29 @@ msgstr "Creat {0}" #~ msgstr "Crea una targeta amb una miniatura. La targeta enllaça a {url}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Cultura" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Personalitzat" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Domini personalitzat" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Els canals personalitzats fets per la comunitat et porten noves experiències i t'ajuden a trobar contingut que t'agradarà." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Personalitza el contingut dels llocs externs." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Personalitza qui pot interactuar amb aquesta publicació." @@ -2023,20 +2094,16 @@ msgstr "Personalitza qui pot interactuar amb aquesta publicació." #~ msgid "Danger Zone" #~ msgstr "Zona de perill" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Fosc" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Mode fosc" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Tema fosc" @@ -2044,38 +2111,43 @@ msgstr "Tema fosc" #~ msgid "Dark Theme" #~ msgstr "Tema fosc" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Data de naixement" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Desactiva el compte" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Desactiva el meu compte" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Moderació de depuració" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Panell de depuració" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "Per defecte" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Elimina el compte" @@ -2087,16 +2159,16 @@ msgstr "Elimina el compte" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Elimina el compte <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Elimina la contrasenya d'aplicació" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Vols eliminar la contrasenya d'aplicació?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -2104,7 +2176,7 @@ msgstr "Suprimeix el registre de declaració de xat" msgid "Delete for me" msgstr "Elimina-ho per mi" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Elimina la llista" @@ -2124,33 +2196,33 @@ msgstr "Elimina el meu compte" #~ msgid "Delete my account…" #~ msgstr "Elimina el meu compte…" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Elimina el meu compte…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Elimina la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Elimina l'starter pack" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Vols eliminar l'starter pack?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Vols eliminar aquesta llista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Eliminat" @@ -2158,27 +2230,35 @@ msgstr "Eliminat" msgid "Deleted post." msgstr "Publicació eliminada." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Suprimeix el registre de declaració de xat" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Descripció" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Text alternatiu descriptiu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Desenganxa la citació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "Vols desenganxar la citació?" @@ -2194,32 +2274,31 @@ msgstr "Vols desenganxar la citació?" msgid "Dialog: adjust who can interact with this post" msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Vols dir alguna cosa?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Tènue" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Els missatges directes són aquí!" +#~ msgid "Direct messages are here!" +#~ msgstr "Els missatges directes són aquí!" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "Desactiva la reproducció automàtica dels GIF" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "Desactiva la reproducció automàtica per GIFs i vídeos" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Desactiva el correu 2FA" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Desactiva la retroalimentació hàptica" @@ -2227,7 +2306,7 @@ msgstr "Desactiva la retroalimentació hàptica" #~ msgid "Disable haptics" #~ msgstr "Deshabilita l'hàptic" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Deshabilita els subtítols" @@ -2238,26 +2317,31 @@ msgstr "Deshabilita els subtítols" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Deshabilitat" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Descarta" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + #: src/view/com/composer/Composer.tsx:145 #~ msgid "Discard draft" #~ msgstr "Descarta l'esborrany" -#: src/view/com/composer/Composer.tsx:837 +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectats" @@ -2274,15 +2358,15 @@ msgstr "Descobreix nous canals personalitzats" msgid "Discover new feeds" msgstr "Descobreix nous canals" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Descobreix nous canals" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "Descarta" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Descarta" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Descarta l'error" @@ -2290,19 +2374,29 @@ msgstr "Descarta l'error" msgid "Dismiss getting started guide" msgstr "Ignora la guia d'inici" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Mostra insígnies de text alternatiu més grans" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Nom mostrat" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Nom mostrat" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Nom mostrat" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Panell de DNS" @@ -2310,6 +2404,14 @@ msgstr "Panell de DNS" msgid "Do not apply this mute word to users you follow" msgstr "No silenciïs aquesta paraula als usuaris que segueixo" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "No inclou nuesa." @@ -2318,11 +2420,11 @@ msgstr "No inclou nuesa." msgid "Doesn't begin or end with a hyphen" msgstr "No comença ni acaba amb un guionet" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "valor del domini" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Domini verificat!" @@ -2330,30 +2432,29 @@ msgstr "Domini verificat!" #~ msgid "Don't have an invite code?" #~ msgstr "No tens un codi d'invitació?" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fet" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Fet" @@ -2362,11 +2463,15 @@ msgstr "Fet" msgid "Done{extraText}" msgstr "Fet{extraText}" +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "Fes doble toc per tancar el diàleg" + #: src/view/com/auth/login/ChooseAccountForm.tsx:46 #~ msgid "Double tap to sign in" #~ msgstr "Fes doble toc per a iniciar la sessió" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Descarrega Bluesky" @@ -2374,16 +2479,16 @@ msgstr "Descarrega Bluesky" #~ msgid "Download Bluesky account data (repository)" #~ msgstr "Descarrega les dades del compte de Bluesky (repositori)" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Descarrega el fitxer CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "Descarrega la imatge" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Deixa anar a afegir imatges" @@ -2395,39 +2500,43 @@ msgstr "Deixa anar a afegir imatges" msgid "Duration:" msgstr "Durada:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "p. ex.jordi" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "p. ex.Jordi Guix" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "p. ex.Jordi Guix" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "p. ex.jordi.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. ex.Artista, amant dels gossos i amant de la lectura." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "p. ex.Artista, amant dels gossos i amant de la lectura." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. ex.nuesa artística" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "p. ex.Gent interessant" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "p. ex.Spammers" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "p. ex.Els que mai fallen" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "p. ex.Usuaris que sempre responen amb anuncis" @@ -2435,58 +2544,59 @@ msgstr "p. ex.Usuaris que sempre responen amb anuncis" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Edita" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Edita" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Edita l'avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Edita els canals" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Edita la imatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Edita les preferències de les interaccions" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Edita els detalls de la llista" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Edita els meus canals" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Edita el meu perfil" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Edita el meu perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Edita les persones" @@ -2495,13 +2605,15 @@ msgstr "Edita les persones" msgid "Edit post interaction settings" msgstr "Edita les preferències de les interaccions a la publicació" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Edita el perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Edita el perfil" @@ -2510,11 +2622,11 @@ msgstr "Edita el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edita els meus canals guardats" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Edita l'starter pack" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Edita la llista d'usuaris" @@ -2522,20 +2634,20 @@ msgstr "Edita la llista d'usuaris" msgid "Edit who can reply" msgstr "Edita qui pot respondre" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Edita el teu nom mostrat" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Edita el teu nom mostrat" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Edita la descripció del teu perfil" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Edita la descripció del teu perfil" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Ensenyament" @@ -2543,7 +2655,7 @@ msgstr "Ensenyament" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "Tria \"Tothom\" o \"Ningú\"" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Correu" @@ -2552,11 +2664,11 @@ msgstr "Correu" msgid "Email 2FA disabled" msgstr "Correu 2FA desactivat" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Adreça de correu" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "S'ha tornat a enviar el correu" @@ -2573,21 +2685,21 @@ msgstr "Correu actualitzat" msgid "Email verified" msgstr "Correu verificat" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "Correu verificat" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Correu:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Incrusta la publicació" @@ -2595,11 +2707,11 @@ msgstr "Incrusta la publicació" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent i enganxa'l al codi HTML del teu lloc web." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Habilita només {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Habilita el contingut per a adults" @@ -2612,8 +2724,8 @@ msgstr "Habilita el contingut per a adults" #~ msgid "Enable adult content in your feeds" #~ msgstr "Habilita veure el contingut per a adults als teus canals" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Habilita els continguts externs" @@ -2621,16 +2733,16 @@ msgstr "Habilita els continguts externs" #~ msgid "Enable External Media" #~ msgstr "Habilita el contingut extern" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Activa les notificacions prioritàries" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Habilita els subtítols" @@ -2638,17 +2750,17 @@ msgstr "Habilita els subtítols" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Activa aquesta opció per a veure només les respostes entre els comptes que segueixes." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Habilita només per aquesta font" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Habilitat" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Fi del canal" @@ -2660,7 +2772,7 @@ msgstr "Fi del canal" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "Fi de la gira de benvinguda. No avancis. En comptes d'això, ves enrere per obtenir més opcions o prem per saltar." -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "Assegura't que has seleccionat un idioma per a cada fitxer de subtítols." @@ -2668,7 +2780,7 @@ msgstr "Assegura't que has seleccionat un idioma per a cada fitxer de subtítols msgid "Enter a name for this App Password" msgstr "Posa un nom a aquesta contrasenya d'aplicació" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Introdueix una contrasenya" @@ -2677,6 +2789,10 @@ msgstr "Introdueix una contrasenya" msgid "Enter a word or tag" msgstr "Introdueix una lletra o etiqueta" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "Entra el codi" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Entra el codi de confirmació" @@ -2689,15 +2805,15 @@ msgstr "Entra el codi de confirmació" msgid "Enter the code you received to change your password." msgstr "Introdueix el codi que has rebut per a canviar la teva contrasenya." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Introdueix el domini que vols utilitzar" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Introdueix el correu que vas fer servir per a crear el teu compte. T'enviarem un \"codi de restabliment\" perquè puguis posar una nova contrasenya." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Introdueix la teva data de naixement" @@ -2705,8 +2821,8 @@ msgstr "Introdueix la teva data de naixement" #~ msgid "Enter your email" #~ msgstr "Introdueix el teu correu" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Introdueix el teu correu" @@ -2722,10 +2838,14 @@ msgstr "Introdueix el teu nou correu a continuació." #~ msgid "Enter your phone number" #~ msgstr "Introdueix el teu telèfon" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Introdueix el teu usuari i contrasenya" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Ha ocorregut un error en desar el fitxer" @@ -2734,12 +2854,12 @@ msgstr "Ha ocorregut un error en desar el fitxer" msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Error:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Tothom" @@ -2751,10 +2871,8 @@ msgstr "Tothom pot respondre" msgid "Everybody can reply to this post." msgstr "Tothom pot respondre a aquesta publicació." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Tothom" @@ -2774,7 +2892,7 @@ msgstr "Exclou els usuaris que segueixes" msgid "Excludes users you follow" msgstr "Exclou els usuaris que segueixes" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "Surt de la pantalla completa" @@ -2782,11 +2900,11 @@ msgstr "Surt de la pantalla completa" msgid "Exits account deletion process" msgstr "Surt del procés d'eliminació del compte" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Surt del procés de canvi d'identificador" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Surt del procés de retallar la imatge" @@ -2810,12 +2928,16 @@ msgstr "Expandeix el text alternatiu" msgid "Expand list of users" msgstr "Expandeix la llista d'usuaris" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estàs responent" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "Experimental: quan aquesta preferència està activada, només rebràs notificacions de respostes i citacions dels usuaris que segueixes. Continuarem afegint més controls aquí amb el temps." @@ -2835,32 +2957,32 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Exporta les meves dades" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Exporta les meves dades" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Contingut extern" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El contingut extern pot permetre que algunes webs recullin informació sobre tu i el teu dispositiu. No s'envia ni es demana cap informació fins que premis el botó \"reproduir\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Preferència del contingut extern" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Configuració del contingut extern" @@ -2869,12 +2991,12 @@ msgstr "Configuració del contingut extern" msgid "Failed to create app password." msgstr "No s'ha pogut crear la contrasenya d'aplicació." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "No s'ha pogut crear l'starter pack" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i torna-ho a provar." @@ -2882,11 +3004,11 @@ msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i t msgid "Failed to delete message" msgstr "No s'ha pogut esborrar el missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "No s'ha pogut eliminar l'starter pack" @@ -2895,12 +3017,11 @@ msgstr "No s'ha pogut eliminar l'starter pack" msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferències dels canals" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "No s'han pogut carregar els GIF" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "No s'han pogut carregar els missatges anteriors" @@ -2922,7 +3043,11 @@ msgstr "No s'han pogut carregar els canals suggerits" msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "No s'ha pogut fixar la publicació" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Error en desar la imatge: {0}" @@ -2930,7 +3055,7 @@ msgstr "Error en desar la imatge: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Error en desar les preferències de les notificacions, torna-ho a provar" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "No s'ha pogut enviar" @@ -2938,36 +3063,35 @@ msgstr "No s'ha pogut enviar" #~ msgid "Failed to send message(s)." #~ msgstr "Error en enviar missatge(s)." -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "No s'han pogut actualitzar els canals" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuració" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "No s'ha pogut pujar el vídeo" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Canal" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Canal per {0}" @@ -2985,19 +3109,23 @@ msgid "Feed toggle" msgstr "Alterna el canal" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Canals" @@ -3005,7 +3133,7 @@ msgstr "Canals" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "Els canals són creats pels usuaris per a curar contingut. Tria els canals que trobis interessants." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixen una mica de codi. <0/> per a més informació." @@ -3013,11 +3141,12 @@ msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixe #~ msgid "Feeds can be topical as well!" #~ msgstr "Els canals també poden ser d'actualitat!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Canals actualitzats!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Continguts del fitxer" @@ -3029,7 +3158,7 @@ msgstr "Fitxer desat amb èxit" msgid "Filter from feeds" msgstr "Filtra-ho dels canals" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Finalitzant" @@ -3043,7 +3172,7 @@ msgstr "Troba comptes per a seguir" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "Troba més canals i comptes per seguir a la pàgina Explora." -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Troba publicacions i usuaris a Bluesky" @@ -3059,7 +3188,7 @@ msgstr "Troba publicacions i usuaris a Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Troba comptes similars…" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Ajusta el contingut que veus al teu canal Seguint." @@ -3067,11 +3196,11 @@ msgstr "Ajusta el contingut que veus al teu canal Seguint." #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Ajusta els fils de debat." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Finalitza" @@ -3083,25 +3212,25 @@ msgstr "Finalitza" msgid "Fitness" msgstr "Exercici" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Flexible" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Gira horitzontalment" +#~ msgid "Flip horizontal" +#~ msgstr "Gira horitzontalment" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Gira verticalment" +#~ msgid "Flip vertically" +#~ msgstr "Gira verticalment" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Segueix" @@ -3110,12 +3239,12 @@ msgctxt "action" msgid "Follow" msgstr "Segueix" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Segueix {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Segueix a {name}" @@ -3123,13 +3252,13 @@ msgstr "Segueix a {name}" msgid "Follow 7 accounts" msgstr "Segueix 7 comptes" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Segueix el compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Segueix-los a tots" @@ -3137,14 +3266,14 @@ msgstr "Segueix-los a tots" #~ msgid "Follow All" #~ msgstr "Segueix-los a tots" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Segueix" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" msgstr "Segueix" #: src/view/screens/Search/Explore.tsx:334 @@ -3183,7 +3312,7 @@ msgstr "Seguit per <0>{0} i <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Usuaris seguits" @@ -3199,17 +3328,17 @@ msgstr "et segueix" msgid "followed you back" msgstr "també et segueix" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Seguidors" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Seguidors que coneixes" @@ -3218,34 +3347,34 @@ msgstr "Seguidors que coneixes" #~ msgstr "seguint" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Seguint" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Seguint {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Seguint a {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" @@ -3253,16 +3382,26 @@ msgstr "Preferències del canal Seguint" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "Seguint mostra les últimes publicacions de la gent que segueixes." -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Et segueix" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Et segueix" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "Font" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "Moda de la font" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Menjar" @@ -3274,6 +3413,11 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Per motius de seguretat no podràs tornar-la a veure. Si perds aquesta contrasenya necessitaràs generar-ne una de nova." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "Per obtenir la millor experiència, et recomanem utilitzar el tipus de lletra del tema." + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Per sempre" @@ -3286,16 +3430,16 @@ msgstr "Per sempre" #~ msgid "Forgot password" #~ msgstr "He oblidat la contrasenya" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "He oblidat la contrasenya" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Has oblidat la contrasenya?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Oblidada?" @@ -3303,34 +3447,34 @@ msgstr "Oblidada?" msgid "Frequently Posts Unwanted Content" msgstr "Publica contingut no desitjat freqüentment" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "Pantalla completa" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galeria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Genera un starter pack" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Aconsegueix ajuda" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Comença" +#~ msgid "Get started" +#~ msgstr "Comença" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3345,7 +3489,7 @@ msgstr "Començant" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Posa una cara al teu perfil" @@ -3353,14 +3497,13 @@ msgstr "Posa una cara al teu perfil" msgid "Glaring violations of law or terms of service" msgstr "Infraccions flagrants de la llei o les condicions del servei" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Ves enrere" @@ -3368,10 +3511,10 @@ msgstr "Ves enrere" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Ves enrere" @@ -3379,24 +3522,24 @@ msgstr "Ves enrere" #~ msgid "Go back to previous screen" #~ msgstr "ves a la pantalla anterior" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Ves al pas anterior" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Ves al pas anterior" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ves a l'inici" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Ves a l'inici" @@ -3405,11 +3548,11 @@ msgstr "Ves a l'inici" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Ves a @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Ves a la conversa amb {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Ves al següent" @@ -3427,6 +3570,8 @@ msgid "Go to user's profile" msgstr "Ves al perfil de l'usuari" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Mitjans gràfics" @@ -3434,11 +3579,11 @@ msgstr "Mitjans gràfics" msgid "Half way there!" msgstr "Ja ets a mig camí!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Identificador" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Hàptics" @@ -3446,7 +3591,7 @@ msgstr "Hàptics" msgid "Harassment, trolling, or intolerance" msgstr "Assetjament, troleig o intolerància" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Etiqueta" @@ -3454,20 +3599,20 @@ msgstr "Etiqueta" #~ msgid "Hashtag: {tag}" #~ msgstr "Etiqueta: {tag}" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Etiqueta: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Tens problemes?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar." @@ -3487,22 +3632,22 @@ msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un a msgid "Here is your app password." msgstr "Aquí tens la teva contrasenya d'aplicació." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Llista oculta" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Amaga" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Amaga" @@ -3512,36 +3657,36 @@ msgstr "Amaga" #~ msgid "Hide post" #~ msgstr "Amaga l'entrada" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Amaga'm aquesta publicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Amaga la resposta per a tothom" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Amaga'm la resposta" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Amaga el contingut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "Vols amagar aquesta resposta?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Amaga la llista d'usuaris" @@ -3569,7 +3714,7 @@ msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propiet msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenim problemes per a trobar aquest canal. Potser ha estat eliminat." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a veure més detalls. Contacta amb nosaltres si aquest problema continua." @@ -3577,16 +3722,15 @@ msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a msgid "Hmmmm, we couldn't load that moderation service." msgstr "No podem carregar el servei de moderació." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Inici" @@ -3597,14 +3741,14 @@ msgstr "Inici" #~ msgid "Home Feed Preferences" #~ msgstr "Preferències dels canals a l'inici" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Allotjament:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Proveïdor d'allotjament" @@ -3613,21 +3757,26 @@ msgstr "Proveïdor d'allotjament" #~ msgid "Hosting provider address" #~ msgstr "Adreça del proveïdor d'allotjament" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Com hem d'obrir aquest enllaç?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Tinc un codi" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "Tinc un codi" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Tinc un codi de confirmació" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Tinc el meu propi domini" @@ -3641,18 +3790,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text alternatiu" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Si no en selecciones cap, és apropiat per a totes les edats." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Si no en selecciones cap, és apropiat per a totes les edats." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si encara no ets un adult segons les lleis del teu país, el teu tutor legal haurà de llegir aquests Termes en el teu lloc." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Si esborres aquesta llista no la podràs recuperar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Si esborres aquesta publicació no la podràs recuperar." @@ -3668,21 +3817,20 @@ msgstr "Si vols canviar el teu identificador o el correu fes-ho abans de desacti msgid "Illegal and Urgent" msgstr "Il·legal i urgent" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Imatge" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Text alternatiu de la imatge" +#~ msgid "Image alt text" +#~ msgstr "Text alternatiu de la imatge" #: src/view/com/util/UserAvatar.tsx:311 #: src/view/com/util/UserBanner.tsx:118 #~ msgid "Image options" #~ msgstr "Opcions de la imatge" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "La imatge s'ha desat a la teva galeria!" @@ -3698,7 +3846,7 @@ msgstr "Suplantació d'identitat, desinformació o afirmacions falses" msgid "Inappropriate messages or explicit links" msgstr "Missatges inapropiats o enllaços explícits" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Introdueix el codi que s'ha enviat al teu correu per a restablir la contrasenya" @@ -3718,7 +3866,7 @@ msgstr "Introdueix el codi de confirmació per a eliminar el compte" msgid "Input name for app password" msgstr "Introdueix un nom per la contrasenya d'aplicació" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Introdueix una nova contrasenya" @@ -3730,7 +3878,7 @@ msgstr "Introdueix la contrasenya per a eliminar el compte" #~ msgid "Input phone number for SMS verification" #~ msgstr "Introdueix el telèfon per la verificació per SMS" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Introdueix el codi que has rebut per correu" @@ -3738,7 +3886,7 @@ msgstr "Introdueix el codi que has rebut per correu" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Introdueix la contrasenya lligada a {identifier}" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per a registrar-te" @@ -3750,11 +3898,11 @@ msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per a registrar-te #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Introdueix el teu correu per a afegir-te a la llista d'espera de Bluesky" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Introdueix la teva contrasenya" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Introdueix el teu proveïdor d'allotjament preferit" @@ -3762,15 +3910,19 @@ msgstr "Introdueix el teu proveïdor d'allotjament preferit" msgid "Input your user handle" msgstr "Introdueix el teu identificador d'usuari" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Interacció limitada" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Presentació dels missatges directes" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Presentació dels missatges directes" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "Presentació de nous paràmetres de tipus de lletra" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "El codi de confirmació 2FA no és vàlid." @@ -3779,12 +3931,12 @@ msgstr "El codi de confirmació 2FA no és vàlid." msgid "Invalid or unsupported post record" msgstr "Registre de publicació no vàlid o no admès" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Nom d'usuari o contrasenya incorrectes" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "Codi de verificació invàlid" @@ -3796,7 +3948,7 @@ msgstr "Codi de verificació invàlid" msgid "Invite a Friend" msgstr "Convida un amic" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Codi d'invitació" @@ -3828,30 +3980,39 @@ msgstr "Convida els teus amics a seguir els teus canals i persones preferides" msgid "Invites, but personal" msgstr "Convida a Bluesky de manera més personalitzada" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "Sembla que potser has introduït la teva adreça de correu incorrectament. Segur que és correcte?" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Mostra les publicacions de les persones que segueixes cronològicament." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "És correcte" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "Identificador de la tasca: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Tasques" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Uneix-te a Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Uneix-te a la conversa" @@ -3869,11 +4030,11 @@ msgstr "Uneix-te a la conversa" #~ msgstr "Uneix-te a la llista d'espera" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "Es va unir el {0}" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Periodisme" @@ -3881,18 +4042,23 @@ msgstr "Periodisme" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "S'ha posat l'etiqueta a aquest {labelTarget}" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Etiquetat per {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Etiquetat per l'autor." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Etiquetes" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden ser utilitzades per a ocultar, advertir i categoritzar la xarxa." @@ -3913,25 +4079,30 @@ msgstr "Etiquetes al teu contingut" msgid "Language selection" msgstr "Tria l'idioma" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Configuració d'idioma" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Configuració d'idioma" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Idiomes" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "Més gran" + #: src/view/com/auth/create/StepHeader.tsx:20 #~ msgid "Last step!" #~ msgstr "Últim pas" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "El més recent" @@ -3939,30 +4110,35 @@ msgstr "El més recent" #~ msgid "Learn more" #~ msgstr "Més informació" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Més informació" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Més informació sobre Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "Més informació sobre com allotjament el teu PDS." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Més informació sobre la moderació que s'ha aplicat a aquest contingut." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Més informació d'aquesta advertència" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Més informació sobre què és públic a Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Més informació." @@ -3983,7 +4159,7 @@ msgstr "Surt del xat" msgid "Leave conversation" msgstr "Surt de la conversa" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Deixa'ls tots sense marcar per a veure tots els idiomes." @@ -3999,16 +4175,16 @@ msgstr "queda." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Deixa'm triar" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Restablirem la teva contrasenya!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Som-hi!" @@ -4017,8 +4193,7 @@ msgstr "Som-hi!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Clar" @@ -4035,21 +4210,21 @@ msgstr "Fes m'agrada a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Li ha agradat a" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Li ha agradat a" @@ -4073,13 +4248,13 @@ msgstr "els ha agradat el teu canal personalitzat" #: src/view/com/notifications/FeedItem.tsx:171 #~ msgid "liked your custom feed{0}" -#~ msgstr "i ha agradat el teu canal personalitzat{0}" +#~ msgstr "li ha agradat el teu canal personalitzat{0}" #: src/view/com/notifications/FeedItem.tsx:178 msgid "liked your post" msgstr "li ha agradat la teva publicació" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "M'agrades" @@ -4087,24 +4262,24 @@ msgstr "M'agrades" msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Llista" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Avatar de la llista" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Llista bloquejada" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Llista per {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Llista eliminada" @@ -4112,32 +4287,31 @@ msgstr "Llista eliminada" msgid "List has been hidden" msgstr "S'ha amagat la llista" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Llista amagada" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Llista silenciada" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nom de la llista" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Llista desbloquejada" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Llistes" @@ -4162,18 +4336,18 @@ msgstr "Carrega més canals suggerits" msgid "Load more suggested follows" msgstr "Carrega més suggerencies d'usuaris per seguir" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Carrega noves notificacions" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Carrega noves publicacions" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Carregant…" @@ -4181,7 +4355,7 @@ msgstr "Carregant…" #~ msgid "Local dev server" #~ msgstr "Servidor de desenvolupament local" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Registre" @@ -4197,22 +4371,30 @@ msgstr "Inicia sessió o registra't" msgid "Log out" msgstr "Desconnecta" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilitat pels usuaris no connectats" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Accedeix a un compte que no està llistat" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Prem llargament per a obrir el menú d'etiquetes per a #{tag}" #~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" #~ msgstr "Parece que este canal de noticias sólo está disponible para usuarios con una cuenta Bluesky. Por favor, ¡regístrate o inicia sesión para ver este canal!" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Té l'aspecte XXXXX-XXXXX" @@ -4232,7 +4414,7 @@ msgstr "Sembla que has deixat tots els teus canals sense fixar. No passa res, en msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sembla que et falta el canal del Seguits. <0>Clica aquí per a afegir-ne un." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Fes-ne un per mi" @@ -4257,30 +4439,35 @@ msgstr "Marca com a llegit" #~ msgid "May only contain letters and numbers" #~ msgstr "Només pot tenir lletres i números" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Contingut" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "usuaris mencionats" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Usuaris mencionats" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menú" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Missatge {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Missatge esborrat" @@ -4292,23 +4479,23 @@ msgstr "Missatge esborrat" msgid "Message from server: {0}" msgstr "Missatge del servidor: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Camp d'entrada del missatge" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "El missatge és massa llarg" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Configuració dels missatges" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Missatges" @@ -4325,63 +4512,63 @@ msgid "Misleading Post" msgstr "Publicació enganyosa" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Mode" +#~ msgid "Mode" +#~ msgstr "Mode" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderació" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Detalls de la moderació" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Llista de moderació per {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Llista de moderació per <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Llista de moderació teva" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "S'ha creat la llista de moderació" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "S'ha actualitzat la llista de moderació" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderació" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "preferències de moderació" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Configuració de moderació" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Estats de moderació" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Eines de moderació" @@ -4390,7 +4577,7 @@ msgstr "Eines de moderació" msgid "Moderator has chosen to set a general warning on the content." msgstr "El moderador ha decidit establir un advertiment general sobre el contingut." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Més" @@ -4398,7 +4585,8 @@ msgstr "Més" msgid "More feeds" msgstr "Més canals" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Més opcions" @@ -4406,15 +4594,15 @@ msgstr "Més opcions" #~ msgid "More post options" #~ msgstr "Més opcions de publicació" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Respostes amb més m'agrada primer" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Pel·lícules" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Música" @@ -4422,13 +4610,13 @@ msgstr "Música" #~ msgid "Must be at least 3 characters" #~ msgstr "Ha de tenir almenys 3 caràcters" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 msgid "Mute" -msgstr "" +msgstr "Silencia" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" msgid "Mute" msgstr "Silencia" @@ -4436,16 +4624,16 @@ msgstr "Silencia" msgid "Mute {truncatedTag}" msgstr "Silencia {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Silenciar el compte" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Silencia els comptes" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Silencia totes les publicacions {displayTag}" @@ -4470,7 +4658,7 @@ msgstr "Silencia la conversa" msgid "Mute in:" msgstr "Silencia a:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Silencia la llista" @@ -4479,7 +4667,7 @@ msgstr "Silencia la llista" #~ msgid "Mute notifications" #~ msgstr "Silencia les notificacions" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Vols silenciar aquests comptes?" @@ -4511,13 +4699,13 @@ msgstr "Silencia aquesta paraula només a les etiquetes" msgid "Mute this word until you unmute it" msgstr "Silencia aquesta paraula fins que digui prou" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Silencia paraules i etiquetes" @@ -4525,16 +4713,16 @@ msgstr "Silencia paraules i etiquetes" #~ msgid "Muted" #~ msgstr "Silenciada" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Comptes silenciats" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i de les teves notificacions. Silenciar comptes és completament privat." @@ -4542,32 +4730,32 @@ msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i msgid "Muted by \"{0}\"" msgstr "Silenciat per \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Paraules i etiquetes silenciades" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, però tu no veuràs les seves publicacions ni rebràs notificacions seves." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "El meu aniversari" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Els meus canals" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "El meu perfil" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Els meus canals desats" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Els meus canals desats" @@ -4576,11 +4764,11 @@ msgstr "Els meus canals desats" #~ msgstr "el-meu-servidor.com" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nom" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Es requereix un nom" @@ -4592,28 +4780,32 @@ msgid "Name or Description Violates Community Standards" msgstr "El nom o la descripció infringeixen els estàndards comunitaris" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Natura" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "ves a {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "ves a l'starter pack" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "ves a l'starter pack" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navega a la pantalla següent" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Navega al teu perfil" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "Necessites canviar-lo?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Necessites informar d'una infracció dels drets d'autor?" @@ -4628,7 +4820,7 @@ msgstr "Necessites informar d'una infracció dels drets d'autor?" #~ msgid "Never lose access to your followers and data." #~ msgstr "No perdis mai accés als teus seguidors ni a les teves dades." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "No perdis mai accés als teus seguidors i les teves dades." @@ -4636,30 +4828,34 @@ msgstr "No perdis mai accés als teus seguidors i les teves dades." #~ msgid "Nevermind" #~ msgstr "Tant hi fa" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Tant hi fa, crea'm un identificador" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Nova" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Nova" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Xat nou" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "Noves configuracions de tipus de lletra ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Nous missatges" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Nova llista de moderació" @@ -4671,22 +4867,22 @@ msgstr "Nova contrasenya" msgid "New Password" msgstr "Nova contrasenya" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Nova publicació" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Nova publicació" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Nova publicació" @@ -4699,30 +4895,30 @@ msgstr "Nova publicació" msgid "New user info dialog" msgstr "Diàleg d'informació d'usuari nou" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Nova llista d'usuaris" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Les respostes més noves primer" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Notícies" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4737,35 +4933,39 @@ msgstr "Següent" msgid "Next image" msgstr "Següent imatge" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Cap descripció" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "No hi ha panell de DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "No s'han trobat canals. Intenta cercar una altra cosa." -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "Encara no té cap m'agrada" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -4773,11 +4973,11 @@ msgstr "Ja no segueixes a {0}" msgid "No longer than 253 characters" msgstr "No pot tenir més de 253 caràcters" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Encara no tens cap missatge" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "No hi ha més converses per a mostrar" @@ -4785,10 +4985,8 @@ msgstr "No hi ha més converses per a mostrar" msgid "No notifications yet!" msgstr "Encara no tens cap notificació" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Ningú" @@ -4796,16 +4994,24 @@ msgstr "Ningú" msgid "No one but the author can quote this post." msgstr "Ningú més que l'autor pot citar aquesta publicació." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Encara no hi ha publicacions." -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "Encara no té cap citació" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "Encara no s'ha republicat" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Cap resultat" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Cap resultat" @@ -4813,19 +5019,18 @@ msgstr "Cap resultat" msgid "No results found" msgstr "No s'han trobat resultats" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "No s'han trobat resultats per {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "No s'han trobat resultats de cerca per a \"{search}\"." @@ -4833,12 +5038,12 @@ msgstr "No s'han trobat resultats de cerca per a \"{search}\"." #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "No s'han trobat resultats de cerca per a \"{searchText}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "No, gràcies" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Ningú" @@ -4846,12 +5051,21 @@ msgstr "Ningú" #~ msgid "Nobody can reply" #~ msgstr "Ningú pot respondre" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ningú encara li ha agradat això. Potser hauries de ser el primer!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "Ningú ha citat això encara. Potser hauries de ser el primer!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "Ningú ha republicat això encara. Potser hauries de ser el primer!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "No s'ha trobat ningú. Intenta cercar algú altre." @@ -4863,8 +5077,8 @@ msgstr "Nuesa no sexual" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "No s'ha trobat" @@ -4873,49 +5087,48 @@ msgstr "No s'ha trobat" msgid "Not right now" msgstr "Ara mateix no" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Aquí no hi ha res" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Filtres de les notificacions" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Configuració de les notificacions" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Configuració de les notificacions" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Sons de les notificacions" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notificacions" @@ -4923,11 +5136,12 @@ msgstr "Notificacions" msgid "now" msgstr "ara" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Ara" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Nuesa" @@ -4947,29 +5161,28 @@ msgstr "Nuesa o contingut per a adults no etiquetat com a tal" msgid "Off" msgstr "Apagat" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Ostres!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Ostres! Alguna cosa ha fallat." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "Oh no! No hem pogut generar una imatge per compartir. Tingues present que ens alegrem que siguis aquí 🦋" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "D'acord" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "D'acord" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Respostes més antigues primer" @@ -4981,11 +5194,11 @@ msgstr "Respostes més antigues primer" #~ msgid "on {str}" #~ msgstr "en {str}" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "en<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Restableix la incorporació" @@ -4993,11 +5206,11 @@ msgstr "Restableix la incorporació" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "Visita guiada, pas {0}: {1}" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Només s'accepten fitxers .jpg i .png" @@ -5013,7 +5226,11 @@ msgstr "Només {0} poden respondre." msgid "Only contains letters, numbers, and hyphens" msgstr "Només pot tenir lletres, nombres i guionets" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "Només s'admeten arxius WebVTT (.vtt)" @@ -5022,23 +5239,23 @@ msgid "Oops, something went wrong!" msgstr "Ostres, alguna cosa ha anat malament!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Ostres!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Obre" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Obre el menú de drecera del perfil {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Obre el creador d'avatars" @@ -5046,22 +5263,26 @@ msgstr "Obre el creador d'avatars" #~ msgid "Open content filtering settings" #~ msgstr "Obre la configuració del filtre de contingut" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Obre les opcions de les converses" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Obre els enllaços al navegador de l'aplicació" @@ -5069,7 +5290,7 @@ msgstr "Obre els enllaços al navegador de l'aplicació" msgid "Open message options" msgstr "Obre les opcions dels missatges" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Obre la configuració de les paraules i etiquetes silenciades" @@ -5081,20 +5302,20 @@ msgstr "Obre la configuració de les paraules i etiquetes silenciades" msgid "Open navigation" msgstr "Obre la navegació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Obre el menú de l'starter pack" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Obre la pàgina d'historial" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Obre el registre del sistema" @@ -5102,15 +5323,19 @@ msgstr "Obre el registre del sistema" msgid "Opens {numItems} options" msgstr "Obre {numItems} opcions" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Obre un diàleg per triar qui pot respondre a aquest fil" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Obre la configuració d'accessibilitat" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Obre detalls addicionals per una entrada de depuració" @@ -5118,27 +5343,27 @@ msgstr "Obre detalls addicionals per una entrada de depuració" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Obre una llista expandida d'usuaris en aquesta notificació" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Obre les preferències de l'aparença" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Obre la càmera del dispositiu" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Obre la configuració del xat" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Obre el compositor" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Obre la configuració d'idioma" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Obre la galeria fotogràfica del dispositiu" @@ -5146,17 +5371,17 @@ msgstr "Obre la galeria fotogràfica del dispositiu" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Obre l'editor del perfil per a editar el nom, avatar, imatge de fons i descripció" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Obre la configuració per les incrustacions externes" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Obre el procés per a crear un nou compte de Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Obre el procés per a iniciar sessió a un compte existent de Bluesky" @@ -5180,11 +5405,11 @@ msgstr "Obre el diàleg per a triar GIF" msgid "Opens list of invite codes" msgstr "Obre la llista de codis d'invitació" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Obre el modal per a la confirmació de la desactivació del compte" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requereix codi de correu electrònic" @@ -5192,31 +5417,31 @@ msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requere #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Obre el modal per a confirmar l'eliminació del compte. Requereix un codi de correu" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Obre el modal per a canviar la contrasenya de Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Obre el modal per a triar un nou identificador de Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Obre el modal per a baixar les dades del vostre compte Bluesky (repositori)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Obre el modal per a verificar el correu" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Obre el modal per a utilitzar un domini personalitzat" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Obre la configuració de la moderació" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Obre el formulari de restabliment de la contrasenya" @@ -5225,11 +5450,11 @@ msgstr "Obre el formulari de restabliment de la contrasenya" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Obre pantalla per a editar els canals desats" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Obre la pantalla amb tots els canals desats" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Obre la configuració de les contrasenyes d'aplicació" @@ -5237,7 +5462,7 @@ msgstr "Obre la configuració de les contrasenyes d'aplicació" #~ msgid "Opens the app password settings page" #~ msgstr "Obre la pàgina de configuració de les contrasenyes d'aplicació" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Obre les preferències del canal de Seguint" @@ -5253,25 +5478,25 @@ msgstr "Obre la web enllaçada" #~ msgid "Opens the message settings page" #~ msgstr "Obre la pàgina de configuració dels missatges" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Obre la pàgina de l'historial" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Obre la pàgina de registres del sistema" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Obre les preferències dels fils de debat" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Obre aquest perfil" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Obre el selector de vídeos" @@ -5279,8 +5504,8 @@ msgstr "Obre el selector de vídeos" msgid "Option {0} of {numItems}" msgstr "Opció {0} de {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Opcionalment, proporciona informació addicional a continuació:" @@ -5288,7 +5513,7 @@ msgstr "Opcionalment, proporciona informació addicional a continuació:" msgid "Options:" msgstr "Opcions:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "O combina aquestes opcions:" @@ -5301,14 +5526,15 @@ msgid "Or, log into one of your other accounts." msgstr "O inicia sessió en un altre dels teus comptes." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Un altre" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Un altre compte" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Altres comptes" @@ -5320,21 +5546,21 @@ msgstr "Altres comptes" msgid "Other..." msgstr "Un altre…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Els nostres moderadors han revisat els informes i han decidit desactivar el teu accés als xats a Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pàgina no trobada" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Pàgina no trobada" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -5344,42 +5570,42 @@ msgstr "Contrasenya" msgid "Password Changed" msgstr "Contrasenya canviada" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Contrasenya actualitzada" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Contrasenya actualitzada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Posa en pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Posa en pausa el vídeo" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Gent" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Cal permís per a accedir al carret de la càmera." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "S'ha denegat el permís per a accedir a la càmera. Activa'l a la configuració del teu sistema." @@ -5388,7 +5614,7 @@ msgid "Person toggle" msgstr "Canvi de persona" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Mascotes" @@ -5396,38 +5622,47 @@ msgstr "Mascotes" #~ msgid "Phone number" #~ msgstr "Telèfon" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Fotografia" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Fixa a l'Inici" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Fixa-ho al teu perfil" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "Fixat" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Canals de notícies fixats" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Fixat als teus canals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Reprodueix" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Reprodueix {0}" @@ -5436,21 +5671,21 @@ msgstr "Reprodueix {0}" #~ msgid "Play notification sounds" #~ msgstr "Reprodueix els sons de notificació" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Reprodueix o posa en pausa el GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Reprodueix el vídeo" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Reprodueix el vídeo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Reprodueix el GIF" @@ -5459,7 +5694,7 @@ msgid "Please choose your handle." msgstr "Tria el teu identificador." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Tria la teva contrasenya." @@ -5496,11 +5731,11 @@ msgstr "Introdueix una paraula, una etiqueta o una frase vàlida per a silenciar #~ msgstr "Introdueix el codi de verificació enviat a {phoneNumberFormatted}" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Introdueix el teu correu." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Entra el teu codi d'invitació." @@ -5508,16 +5743,16 @@ msgstr "Entra el teu codi d'invitació." msgid "Please enter your password as well:" msgstr "Introdueix la teva contrasenya també:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Explica per què creieu que aquesta etiqueta ha estat aplicada incorrectament per {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Expliqueu perquè creus que els teus xats s'han desactivat incorrectament" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Inicia sessió com a @{0}" @@ -5534,15 +5769,16 @@ msgid "Please Verify Your Email" msgstr "Verifica el teu correu" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Espera que es generi la targeta de l'enllaç" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Espera que es generi la targeta de l'enllaç" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Política" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornografia" @@ -5550,8 +5786,8 @@ msgstr "Pornografia" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Publica" @@ -5571,17 +5807,21 @@ msgstr "Publicació" msgid "Post by {0}" msgstr "Publicació per {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Publicació per @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Publicació eliminada" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Publicació oculta" @@ -5596,7 +5836,7 @@ msgstr "Publicació amagada per una paraula silenciada" msgid "Post Hidden by You" msgstr "Publicació amagada per tu" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Configuració de les interaccions de la publicació" @@ -5604,7 +5844,7 @@ msgstr "Configuració de les interaccions de la publicació" msgid "Post language" msgstr "Idioma de la publicació" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Idiomes de les publicacions" @@ -5613,12 +5853,20 @@ msgstr "Idiomes de les publicacions" msgid "Post not found" msgstr "Publicació no trobada" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Publicació fixada" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Publicació sense fixar" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "publicacions" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Publicacions" @@ -5642,7 +5890,7 @@ msgstr "Enllaç potencialment enganyós" msgid "Preference saved" msgstr "Preferència desada" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Prem per provar de connectar de nou" @@ -5652,8 +5900,8 @@ msgstr "Prem per canviar el proveïdor d'allotjament" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Prem per a tornar-ho a provar" @@ -5670,79 +5918,83 @@ msgstr "Prem per veure els seguidors d'aquest compte que també segueixes" msgid "Previous image" msgstr "Imatge anterior" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Idioma principal" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Prioritza els usuaris que segueixes" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Notificacions prioritàries" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacitat" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Política de privacitat" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Xateja en privat amb altres usuaris." +#~ msgid "Privately chat with other users." +#~ msgstr "Xateja en privat amb altres usuaris." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Processant…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Perfil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Perfil actualitzat" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Protegeix el teu compte verificant el teu correu." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Públic" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Llistes d'usuaris per a silenciar o bloquejar en massa, públiques i per a compartir." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Llistes que poden nodrir canals, públiques i per a compartir." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Publica" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Publica" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Publica la resposta" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Publica la resposta" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5760,8 +6012,8 @@ msgstr "Codi QR desat a la teva galeria" #~ msgid "Quick tip" #~ msgstr "Consell ràpid" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5781,32 +6033,32 @@ msgstr "Cita la publicació" #~ msgid "Quote Post" #~ msgstr "Cita la publicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "La publicació citada s'ha tornat a enganxar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "La publicació citada s'ha desenganxat amb èxit" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "S'han deshabilitat les citacions" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "S'han habilitat les citacions" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Configuració de les citacions" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Citacions" @@ -5814,16 +6066,16 @@ msgstr "Citacions" msgid "Quotes of this post" msgstr "Citacions d'aquesta publicació" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatori (també conegut com a \"Poster's Roulette\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Proporcions" +#~ msgid "Ratios" +#~ msgstr "Proporcions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Torna a enganxar la citació" @@ -5831,19 +6083,21 @@ msgstr "Torna a enganxar la citació" msgid "Reactivate your account" msgstr "Torna a activar el teu compte" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Llegeix el blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Llegeix la política de privacitat de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Llegeix els termes de servei de Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Raó:" @@ -5851,7 +6105,7 @@ msgstr "Raó:" #~ msgid "Reason: {0}" #~ msgstr "Raó: {0}" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Cerques recents" @@ -5863,26 +6117,25 @@ msgstr "Cerques recents" #~ msgid "Recommended Users" #~ msgstr "Usuaris recomanats" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Torna a connectar" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Refresca les notificacions" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Carrega les converses de nou" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5900,11 +6153,11 @@ msgstr "Elimina a {displayName} de l'starter pack" msgid "Remove account" msgstr "Elimina el compte" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "Elimina l'adjunt" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Elimina l'avatar" @@ -5912,7 +6165,7 @@ msgstr "Elimina l'avatar" msgid "Remove Banner" msgstr "Elimina el bàner" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Elimina l'incrustat" @@ -5928,13 +6181,14 @@ msgstr "Vols eliminar el canal?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Vols eliminar-lo dels teus canals?" @@ -5947,7 +6201,7 @@ msgstr "Vols eliminar-lo de l'accés ràpid?" msgid "Remove from saved feeds" msgstr "Elimina'l dels canals desats" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Elimina la imatge" @@ -5959,24 +6213,24 @@ msgstr "Elimina la imatge" msgid "Remove mute word from your list" msgstr "Elimina la paraula silenciada de la teva llista" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Elimina el perfil" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Elimina el perfil de l'historial de cerca" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Elimina la citació" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Elimina la republicació" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "Eliminar arxiu de subtítols" @@ -5992,16 +6246,16 @@ msgstr "Elimina aquest canal dels meus canals" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Vols eliminar aquest canal dels teus canals desats?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Eliminat per l'autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Tu l'has eliminat" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Elimina de la llista" @@ -6015,8 +6269,8 @@ msgid "Removed from saved feeds" msgstr "Eliminat dels canals desats" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Eliminat dels teus canals" @@ -6024,13 +6278,13 @@ msgstr "Eliminat dels teus canals" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Elimina la miniatura per defecte de {0}" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "Elimina la publicació amb la citació" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "Elimina l'adjunt" +#~ msgid "Removes the attachment" +#~ msgstr "Elimina l'adjunt" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -6041,7 +6295,7 @@ msgstr "Elimina l'adjunt" msgid "Replace with Discover" msgstr "Canvia amb Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Respostes" @@ -6061,7 +6315,7 @@ msgstr "Les respostes a aquesta publicació estan deshabilitades." #~ msgid "Replies to this thread are disabled" #~ msgstr "Les respostes a aquest fil de debat estan deshabilitades" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Respon" @@ -6080,11 +6334,11 @@ msgstr "Aquesta resposta ha estat amagada per l'autor del fil de debat" msgid "Reply Hidden by You" msgstr "Has amagat aquesta resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "Configuració de les respostes" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuració de les respostes la tria l'autor del fil de debat" @@ -6094,33 +6348,33 @@ msgstr "La configuració de les respostes la tria l'autor del fil de debat" #~ msgid "Reply to <0/>" #~ msgstr "Resposta a <0/>" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Resposta a <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Resposta a una publicació bloquejada" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "Resposta a una publicació" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Resposta a tu mateix" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "S'ha actualitzat la visibilitat de la resposta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "La resposta s'ha amagat amb èxit" @@ -6139,8 +6393,8 @@ msgstr "Informa" #~ msgid "Report account" #~ msgstr "Informa del compte" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Informa del compte" @@ -6150,16 +6404,16 @@ msgstr "Informa del compte" msgid "Report conversation" msgstr "Informa d'aquesta conversa" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Diàleg de l'informe" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Informa del canal" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Informa de la llista" @@ -6167,13 +6421,13 @@ msgstr "Informa de la llista" msgid "Report message" msgstr "Informa del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Informa de la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Informa sobre l'starter pack" @@ -6189,8 +6443,8 @@ msgstr "Informa d'aquest canal" msgid "Report this list" msgstr "Informa d'aquesta llista" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Informa d'aquest missatge" @@ -6207,9 +6461,9 @@ msgstr "Informa sobre aquest starter pack" msgid "Report this user" msgstr "Informa d'aquest usuari" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Republica" @@ -6219,8 +6473,8 @@ msgstr "Republica" msgid "Repost" msgstr "Republica" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" @@ -6230,12 +6484,12 @@ msgstr "Republica o cita la publicació" #~ msgid "Reposted by" #~ msgstr "Republicada per" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Republicat per" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Republicat per {0}" @@ -6247,12 +6501,12 @@ msgstr "Republicat per {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Republicada per <0/>" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Republicat per <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Republicat per tu" @@ -6278,7 +6532,7 @@ msgstr "Demana un canvi" msgid "Request Code" msgstr "Demana un codi" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Requereix un text alternatiu abans de publicar" @@ -6286,20 +6540,26 @@ msgstr "Requereix un text alternatiu abans de publicar" msgid "Require email code to log into your account" msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Requerit per aquest proveïdor" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Obligatori a la teva regió" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Torna a enviar el correu" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "Torna a enviar el correu" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "Torna a enviar el correu de verificació" @@ -6315,12 +6575,12 @@ msgstr "Codi de restabliment" #~ msgid "Reset onboarding" #~ msgstr "Restableix la incorporació" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Restableix la contrasenya" @@ -6328,20 +6588,20 @@ msgstr "Restableix la contrasenya" #~ msgid "Reset preferences" #~ msgstr "Restableix les preferències" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Restableix l'estat de les preferències" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Restableix l'estat de les preferències" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Torna a intentar iniciar sessió" @@ -6350,16 +6610,16 @@ msgstr "Torna a intentar iniciar sessió" msgid "Retries the last action, which errored out" msgstr "Torna a intentar l'última acció, que ha donat error" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -6373,17 +6633,17 @@ msgstr "Torna-ho a provar" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Torna a la pàgina anterior" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Torna a la pàgina d'inici" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Torna a la pàgina anterior" @@ -6391,37 +6651,48 @@ msgstr "Torna a la pàgina anterior" #~ msgid "SANDBOX. Posts and accounts are not permanent." #~ msgstr "ENTORN DE PROVES. Les publicacions i els comptes no són permanents." -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Desa" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Desa" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Desa el text alternatiu" +#~ msgid "Save alt text" +#~ msgstr "Desa el text alternatiu" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Desa la data de naixement" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "Desa els canvis" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Desa els canvis" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Desa el canvi d'identificador" @@ -6430,24 +6701,24 @@ msgstr "Desa el canvi d'identificador" msgid "Save image" msgstr "Desa la imatge" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Desa la imatge retallada" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Desa el codi QR" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Canals desats" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "S'ha desat a la teva galeria d'imatges" @@ -6455,79 +6726,76 @@ msgstr "S'ha desat a la teva galeria d'imatges" #~ msgid "Saved to your camera roll." #~ msgstr "S'ha desat a la teva galeria d'imatges." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Desa qualsevol canvi al teu perfil" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Desa qualsevol canvi al teu perfil" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Desa el canvi d'identificador a {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Desa la configuració de retall d'imatges" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Digues hola!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Ciència" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Desplaça't cap a dalt" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cerca" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Cerca per \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Cerca per \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {displayTag}" #: src/components/TagMenu/index.tsx:145 #~ msgid "Search for all posts by @{authorHandle} with tag {tag}" #~ msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {tag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Cerca totes les publicacions amb l'etiqueta {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Cerca totes les publicacions amb l'etiqueta {displayTag}" #: src/components/TagMenu/index.tsx:90 #~ msgid "Search for all posts with tag {tag}" #~ msgstr "Cerca totes les publicacions amb l'etiqueta {tag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca canals que vulgueu suggerir als altres." @@ -6539,18 +6807,16 @@ msgstr "Cerca canals que vulgueu suggerir als altres." msgid "Search for users" msgstr "Cerca usuaris" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Cerca GIF" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Cerca perfils" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Cerca Tenor" @@ -6566,11 +6832,11 @@ msgstr "Mostra les publicacions amb {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Mostra les publicacions amb {truncatedTag} per usuari" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Mostra les publicacions amb <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Mostra les publicacions amb <0>{displayTag} d'aquest usuari" @@ -6582,7 +6848,7 @@ msgstr "Mostra les publicacions amb <0>{displayTag} d'aquest usuari" #~ msgid "See <0>{tag} posts by this user" #~ msgstr "Mostra les publicacions amb <0>{tag} d'aquest usuari" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Veure les feines a Bluesky" @@ -6591,7 +6857,7 @@ msgstr "Veure les feines a Bluesky" #~ msgid "See profile" #~ msgstr "Mostra el perfil" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Consulta aquesta guia" @@ -6599,7 +6865,7 @@ msgstr "Consulta aquesta guia" #~ msgid "See what's next" #~ msgstr "Què més hi ha" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "Cerca el control lliscant" @@ -6611,7 +6877,7 @@ msgstr "Selecciona {item}" msgid "Select a color" msgstr "Selecciona un color" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Selecciona el compte" @@ -6627,7 +6893,7 @@ msgstr "Selecciona un emoji" #~ msgid "Select Bluesky Social" #~ msgstr "Selecciona Bluesky Social" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Selecciona d'un compte existent" @@ -6635,7 +6901,7 @@ msgstr "Selecciona d'un compte existent" msgid "Select GIF" msgstr "Selecciona GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Selecciona GIF \"{0}\"" @@ -6643,15 +6909,15 @@ msgstr "Selecciona GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Tria per quant temps s'ha de silenciar aquesta paraula." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "Selecciona l'idioma..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Selecciona els idiomes" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Selecciona el moderador" @@ -6668,7 +6934,7 @@ msgstr "Selecciona l'opció {i} de {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "Selecciona alguns d'aquests comptes per a seguir-los" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "Tria el arxiu de subtítols (.vtt)" @@ -6676,11 +6942,11 @@ msgstr "Tria el arxiu de subtítols (.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecciona el {emojiName} emoji com al teu avatar" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Selecciona els serveis de moderació als quals voleu informar" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Selecciona el servei que allotja les teves dades." @@ -6688,7 +6954,7 @@ msgstr "Selecciona el servei que allotja les teves dades." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Selecciona els canals d'actualitat per a seguir d'aquesta llista" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Selecciona el vídeo" @@ -6700,7 +6966,7 @@ msgstr "Tria a quin contingut s'ha d'aplicar aquesta paraula silenciada." #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Selecciona què vols veure (o què no vols veure) i nosaltres farem la resta." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecciona quins idiomes vols que incloguin els canals a què estàs subscrit. Si no en selecciones cap, es mostraran tots." @@ -6708,15 +6974,15 @@ msgstr "Selecciona quins idiomes vols que incloguin els canals a què estàs sub #~ msgid "Select your app language for the default text to display in the app" #~ msgstr "Selecciona l'idioma de l'aplicació perquè el text predeterminat es mostri en aquesta" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Selecciona l'idioma de l'aplicació perquè el text predeterminat es mostri a l'aplicació." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Selecciona la teva data de naixement" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Selecciona els teus interessos d'entre aquestes opcions" @@ -6724,7 +6990,7 @@ msgstr "Selecciona els teus interessos d'entre aquestes opcions" #~ msgid "Select your phone's country" #~ msgstr "Selecciona el país del teu telèfon" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal." @@ -6740,6 +7006,14 @@ msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal." msgid "Send a neat website!" msgstr "Envia un lloc web net!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "Envia confirmació" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "Envia correu de confirmació" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6758,23 +7032,23 @@ msgstr "Envia correu" #~ msgid "Send Email" #~ msgstr "Envia correu" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Envia comentari" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Envia el missatge" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Envia el missatge a..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Envia informe" @@ -6782,17 +7056,17 @@ msgstr "Envia informe" #~ msgid "Send Report" #~ msgstr "Envia informe" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Envia informe a {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Envia un correu de verificació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Envia per missatge directe" @@ -6800,7 +7074,7 @@ msgstr "Envia per missatge directe" msgid "Sends email with confirmation code for account deletion" msgstr "Envia un correu amb el codi de confirmació per l'eliminació del compte" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Adreça del servidor" @@ -6814,7 +7088,7 @@ msgstr "Adreça del servidor" #~ msgid "Set Age" #~ msgstr "Estableix l'edat" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Estableix la data de naixement" @@ -6838,7 +7112,7 @@ msgstr "Estableix la data de naixement" #~ msgid "Set dark theme to the dim theme" #~ msgstr "Posa el tema fosc al tema atenuat" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Estableix una nova contrasenya" @@ -6846,19 +7120,19 @@ msgstr "Estableix una nova contrasenya" #~ msgid "Set password" #~ msgstr "Estableix una contrasenya" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Posa \"No\" a aquesta opció per a amagar totes les publicacions citades del teu canal. Les republicacions encara seran visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Posa \"No\" a aquesta opció per a amagar totes les respostes del teu canal." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Posa \"No\" a aquesta opció per a amagar totes les republicacions del teu canal." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Posa \"Sí\" a aquesta opció per a mostrar les respostes en vista de fil de debat. Aquesta és una opció experimental." @@ -6866,7 +7140,7 @@ msgstr "Posa \"Sí\" a aquesta opció per a mostrar les respostes en vista de fi #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Posa \"Sí\" a aquesta opció per a mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta és una opció experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Estableix aquesta configuració a \"Sí\" per a mostrar mostres dels teus canals desats al teu canal Seguint. Aquesta és una característica experimental." @@ -6874,7 +7148,7 @@ msgstr "Estableix aquesta configuració a \"Sí\" per a mostrar mostres dels teu msgid "Set up your account" msgstr "Configura el teu compte" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Estableix un nom d'usuari de Bluesky" @@ -6898,7 +7172,7 @@ msgstr "Estableix un nom d'usuari de Bluesky" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "Estableix el tema fosc al tema atenuat" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Estableix un correu per a restablir la contrasenya" @@ -6907,31 +7181,30 @@ msgstr "Estableix un correu per a restablir la contrasenya" #~ msgstr "Estableix un proveïdor d'allotjament per a restablir la contrasenya" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Estableix la relació d'aspecte de la imatge com a quadrat" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Estableix la relació d'aspecte de la imatge com a quadrat" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Estableix la relació d'aspecte de la imatge com a alta" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Estableix la relació d'aspecte de la imatge com a alta" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Estableix la relació d'aspecte de la imatge com a ampla" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Estableix la relació d'aspecte de la imatge com a ampla" #: src/view/com/auth/create/Step1.tsx:97 #: src/view/com/auth/login/LoginForm.tsx:154 #~ msgid "Sets server for the Bluesky client" #~ msgstr "Estableix el servidor pel cient de Bluesky" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Configuració" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Activitat sexual o nu eròtic." @@ -6939,20 +7212,19 @@ msgstr "Activitat sexual o nu eròtic." msgid "Sexually Suggestive" msgstr "Suggerent sexualment" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Comparteix" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Comparteix" @@ -6965,28 +7237,28 @@ msgstr "Comparteix una història interessant!" msgid "Share a fun fact!" msgstr "Comparteix una dada divertida!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Comparteix el canal" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "Comparteix la imatge externament" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "Comparteix la imatge en una publicació" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Comparteix l'enllaç" @@ -7004,7 +7276,7 @@ msgstr "Diàleg de compartició de l'enllaç" msgid "Share QR code" msgstr "Comparteix el codi QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Comparteix aquets starter pack" @@ -7016,7 +7288,7 @@ msgstr "Comparteix aquets starter pack i ajuda a la gent de la teva comunitat a msgid "Share your favorite feed!" msgstr "Comparteix el teu canal preferit!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Comprovador de preferències compartides" @@ -7024,23 +7296,27 @@ msgstr "Comprovador de preferències compartides" msgid "Shares the linked website" msgstr "Comparteix la web enllaçada" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Mostra" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "Mostra els filtres avançats" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "Mostra totes les respostes" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Mostra el text alternatiu" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Mostra igualment" @@ -7066,8 +7342,8 @@ msgstr "Mostra la insígnia i filtra-ho dels canals" msgid "Show hidden replies" msgstr "Mostra les respostes ocultes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Mostra'n menys com aquest" @@ -7075,14 +7351,14 @@ msgstr "Mostra'n menys com aquest" msgid "Show list anyway" msgstr "Mostra la llista de totes maneres" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Mostra més" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Mostra'n més com aquest" @@ -7090,11 +7366,11 @@ msgstr "Mostra'n més com aquest" msgid "Show muted replies" msgstr "Mostra les respostes silenciades" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Mostra les publicacions dels meus canals" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Mostra les publicacions citades" @@ -7110,11 +7386,11 @@ msgstr "Mostra les publicacions citades" #~ msgid "Show re-posts in Following feed" #~ msgstr "Mostra les republicacions al canal Seguint" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Mostra les respostes" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Mostra les respostes dels comptes que segueixes abans que les altres." @@ -7130,12 +7406,12 @@ msgstr "Mostra les respostes dels comptes que segueixes abans que les altres." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostra respostes amb almenys {value} {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Mostra la resposta a tothom" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Mostra republicacions" @@ -7143,7 +7419,7 @@ msgstr "Mostra republicacions" #~ msgid "Show reposts in Following" #~ msgstr "Mostra les republicacions al canal Seguint" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Mostra el contingut" @@ -7165,27 +7441,26 @@ msgstr "Mostra l'advertiment i filtra-ho dels canals" #~ msgstr "Mostra una llista d'usuaris semblants a aquest" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Mostra les publicacions de {0} al teu canal" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Mostra les publicacions de {0} al teu canal" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Inicia sessió" @@ -7195,11 +7470,11 @@ msgstr "Inicia sessió" #~ msgid "Sign In" #~ msgstr "Inicia sessió" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Inicia sessió com a {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Inicia sessió com a …" @@ -7215,42 +7490,41 @@ msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" msgid "Sign into Bluesky or create a new account" msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Tanca sessió" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "Tanca la sessió de tots els comptes" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Registra't" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Registra't o inicia sessió per a unir-te a la conversa" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Registra't o inicia sessió per a unir-te a la conversa" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Es requereix iniciar sessió" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "S'ha iniciat sessió com a" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "S'ha iniciat sessió com a @{0}" @@ -7262,8 +7536,8 @@ msgstr "s'ha registrat amb el vostre starter pack" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Tanca la sessió de Bluesky de {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "S'ha registrat sense cap starter pack" @@ -7271,21 +7545,26 @@ msgstr "S'ha registrat sense cap starter pack" msgid "Similar accounts" msgstr "Comptes semblants" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Salta aquest pas" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Salta aquest flux" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "Més petit" + #: src/view/com/auth/create/Step2.tsx:82 #~ msgid "SMS verification" #~ msgstr "Verificació per SMS" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Desenvolupament de programari" @@ -7301,7 +7580,7 @@ msgstr "Algunes persones poden respondre" #~ msgid "Some subtitle" #~ msgstr "Algun subtítol" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Alguna cosa ha fallat" @@ -7314,14 +7593,14 @@ msgstr "Alguna cosa ha fallat" msgid "Something went wrong, please try again" msgstr "Alguna cosa ha fallat, torna-ho a provar" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Alguna cosa ha fallat." @@ -7329,30 +7608,30 @@ msgstr "Alguna cosa ha fallat." #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Alguna cosa ha fallat. Comprova el teu correu i torna-ho a provar." -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "La teva sessió ha caducat. Torna a iniciar-la." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Ordena les respostes" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Ordena les respostes a la mateixa publicació per:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Font:" +msgid "Source:" +msgstr "Font:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "Font: <0>{0}" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Font: <0>{sourceName}" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Font: <0>{sourceName}" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -7364,53 +7643,57 @@ msgid "Spam; excessive mentions or replies" msgstr "Brossa; excessives mencions o respostes" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Esports" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Quadrat" +#~ msgid "Square" +#~ msgstr "Quadrat" #: src/view/com/modals/ServerInput.tsx:62 #~ msgid "Staging" #~ msgstr "Posada en escena" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Comença un nou xat" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Comença un xat amb {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Comença a xatejar" +#~ msgid "Start chatting" +#~ msgstr "Comença a xatejar" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "Inici de la visita guiada inicial. No vagis enrere. En comptes d'això, seguiex endavant per obtenir més opcions o prem per saltar-lo." -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Starter pack" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Starter pack de {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Starter pack fet per tu" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Aquest starter pack és invàlid" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Starter packs" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." @@ -7418,7 +7701,7 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe #~ msgid "Status page" #~ msgstr "Pàgina d'estat" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Pàgina d'estat" @@ -7426,7 +7709,7 @@ msgstr "Pàgina d'estat" #~ msgid "Step" #~ msgstr "Pas" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Pas {0} de {1}" @@ -7434,23 +7717,23 @@ msgstr "Pas {0} de {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Pas {0} de {numSteps}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Historial" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Envia" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Subscriure's" @@ -7458,7 +7741,7 @@ msgstr "Subscriure's" msgid "Subscribe to @{0} to use these labels:" msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Subscriu-te a l'etiquetador" @@ -7467,14 +7750,18 @@ msgstr "Subscriu-te a l'etiquetador" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Subscriu-te al canal {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Subscriu-te a aquest etiquetador" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Subscriure's a la llista" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "Verificat" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Comptes suggerits" @@ -7487,13 +7774,14 @@ msgstr "Comptes suggerits" msgid "Suggested for you" msgstr "Suggeriments per tu" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Suggerent" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suport" @@ -7501,8 +7789,8 @@ msgstr "Suport" #~ msgid "Swipe up to see more" #~ msgstr "Llisca cap amunt per a veure'n més" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Canvia el compte" @@ -7510,20 +7798,21 @@ msgstr "Canvia el compte" #~ msgid "Switch between feeds to control your experience." #~ msgstr "Canvia entre canals per controlar la teva experiència." -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Canvia a {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Canvia en compte amb el que tens iniciada la sessió" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Registres del sistema" @@ -7531,7 +7820,7 @@ msgstr "Registres del sistema" #~ msgid "tag" #~ msgstr "etiqueta" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Menú d'etiquetes: {displayTag}" @@ -7544,22 +7833,22 @@ msgid "Tags only" msgstr "Només etiquetes" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Alt" +#~ msgid "Tall" +#~ msgstr "Alt" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Toca per a ignorar" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "Toca per entrar a pantalla completa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" -msgstr "" +msgstr "Toca per a reproduir o pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "Toca per canviar el so" @@ -7581,7 +7870,7 @@ msgid "Teach our algorithm what you like" msgstr "Ensenya el que t'agrada al nostre algorisme" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Tecnologia" @@ -7589,23 +7878,27 @@ msgstr "Tecnologia" msgid "Tell a joke!" msgstr "Explica un acudit!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Explica'ns una mica més" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "Deu milions" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Condicions del servei" @@ -7624,25 +7917,33 @@ msgstr "Els termes utilitzats infringeixen els estàndards de la comunitat" msgid "Text & tags" msgstr "Text i etiquetes" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Camp d'introducció de text" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "Gràcies, el teu correu està verificat." + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Gràcies. El teu informe s'ha enviat." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "Gràcies per ser un dels nostres primers 10 milions d'usuaris." #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "Gràcies, has verificat correctament el teu correu." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "Gràcies, has verificat correctament el teu correu." -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Gràcies, has verificat correctament el teu correu. Pots tancar aquest diàleg." + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Això conté els següents:" @@ -7650,21 +7951,21 @@ msgstr "Això conté els següents:" msgid "That handle is already taken." msgstr "Aquest identificador ja està agafat." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "No s'ha pogut trobar aquest starter pack." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "Això és tot, amics!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrà interactuar amb tu després del desbloqueig." @@ -7677,15 +7978,15 @@ msgstr "El compte podrà interactuar amb tu després del desbloqueig." msgid "The author of this thread has hidden this reply." msgstr "L'autor d'aquest fil de debat ha amagat aquesta resposta." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "L'aplicació web de Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Les directrius de la comunitat han estat traslladades a <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "La política de drets d'autoria ha estat traslladada a <0/>" @@ -7698,7 +7999,7 @@ msgstr "El canal Discover" msgid "The Discover feed now knows what you like" msgstr "El canal Discover ara sap el que t'agrada" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a començar on ho vas deixar." @@ -7723,19 +8024,19 @@ msgstr "Els següents passos t'ajudaran a personalitzar la teva experiència a B msgid "The post may have been deleted." msgstr "És possible que la publicació s'hagi esborrat." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "El vídeo triat és més gran de 50MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "L'starter pack que estàs provant de veure no és vàlid. En lloc d'això, podeu suprimir-lo." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o visita {HELP_DESK_URL} per a contactar amb nosaltres." @@ -7743,14 +8044,19 @@ msgstr "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o #~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." #~ msgstr "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o visita {HELP_DESK_URL} per a contactar amb nosaltres." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Les condicions del servei han estat traslladades a" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "El codi de verificació que has proporcionat no és vàlid. Assegura't que has utilitzat l'enllaç de verificació correcte o sol·licita'n un de nou." +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "Tema" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Hi ha molts canals per a provar:" @@ -7759,23 +8065,22 @@ msgstr "El codi de verificació que has proporcionat no és vàlid. Assegura't q msgid "There is no time limit for account deactivation, come back any time." msgstr "No hi ha límit de temps per a la desactivació del compte, torna quan vulguis." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Hi ha hagut un problema per a contactar amb el servidor, comprova la teva connexió a internet i torna-ho a provar." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Hi ha hagut un problema per a contactar amb el servidor, comprova la teva connexió a internet i torna-ho a provar." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Hi ha hagut un problema per a eliminar aquest canal, comprova la teva connexió a internet i torna-ho a provar." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Hi ha hagut un problema per a eliminar aquest canal, comprova la teva connexió a internet i torna-ho a provar." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Hi ha hagut un problema per a actualitzar els teus canals, comprova la teva connexió a internet i torna-ho a provar." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Hi ha hagut un problema per a actualitzar els teus canals, comprova la teva connexió a internet i torna-ho a provar." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Hi ha hagut un problema per a connectar amb Tenor." @@ -7783,15 +8088,18 @@ msgstr "Hi ha hagut un problema per a connectar amb Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Hi ha hagut un problema per a connectar al xat." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Hi ha hagut un problema per a contactar amb el servidor" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7801,21 +8109,25 @@ msgstr "Hi ha hagut un problema per a contactar amb el teu servidor" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir la llista. Toca aquí per a tornar-ho a provar." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les teves llistes. Toca aquí per a tornar-ho a provar." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "S'ha produït un problema en enviar el teu informe. Comprova la teva connexió a Internet." @@ -7823,21 +8135,27 @@ msgstr "S'ha produït un problema en enviar el teu informe. Comprova la teva con #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Hi ha hagut un problema en sincronitzar les teves preferències amb el servidor" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicació" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" @@ -7845,16 +8163,15 @@ msgstr "Hi ha hagut un problema! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Hi ha hagut un problema. Comprova la teva connexió a internet i torna-ho a provar." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "S'ha produït un problema inesperat a l'aplicació. Fes-nos saber si això t'ha passat a tu!" @@ -7873,11 +8190,11 @@ msgstr "Hi ha hagut una gran quantitat d'usuaris nous a Bluesky! Activarem el te #~ msgid "This {0} has been labeled." #~ msgstr "Aquest {0} ha estat etiquetat." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Aquesta {screenDescription} ha estat etiquetada:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Aquest compte ha sol·licitat que els usuaris estiguin registrats per a veure el seu perfil." @@ -7889,15 +8206,15 @@ msgstr "Aquest compte està bloquejat per una o més de les teves llistes de mod #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "Aquesta apel·lació s'enviarà a <0>{0}." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Aquesta apel·lació s'enviarà a <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Aquesta apel·lació s'enviarà al servei de moderació de Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Aquest xat s'ha desconnectat" @@ -7913,7 +8230,7 @@ msgstr "Aquest contingut ha estat amagat pels moderadors." msgid "This content has received a general warning from moderators." msgstr "Aquest contingut ha rebut una advertència general dels moderadors." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Aquest contingut està allotjat a {0}. Vols habilitat els continguts externs?" @@ -7926,7 +8243,7 @@ msgstr "Aquest contingut no està disponible per culpa de que un dels usuaris in msgid "This content is not viewable without a Bluesky account." msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obtenir opcions." @@ -7934,7 +8251,7 @@ msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obten #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Aquesta funcionalitat està en beta. En <0>aquesta entrada al blog tens més informació." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Aquesta funció està en versió beta. Podeu obtenir més informació sobre les exportacions de repositoris en <0>aquesta entrada de bloc." @@ -7953,8 +8270,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Aquest canal és buit." @@ -7962,7 +8279,7 @@ msgstr "Aquest canal és buit." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Aquest canal ja no està en línia. En el seu lloc et mostrem <0>Discover." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Aquesta informació no es comparteix amb altres usuaris." @@ -7978,11 +8295,11 @@ msgstr "Això és important si mai necessites canviar el teu correu o restablir #~ msgid "This label was applied by {0}." #~ msgstr "Aquesta etiqueta l'ha aplicat {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Aquesta etiqueta ha estat aplicada per <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Aquesta etiqueta ha estat aplicada per l'autor." @@ -7990,7 +8307,7 @@ msgstr "Aquesta etiqueta ha estat aplicada per l'autor." #~ msgid "This label was applied by you" #~ msgstr "Aquesta etiqueta ha estat aplicada per tu" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Aquesta etiqueta ha estat aplicada per tu." @@ -8006,7 +8323,7 @@ msgstr "Aquest enllaç et porta a la web:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Aquesta llista - creada per <0>{0} - conté possibles infraccions de les directrius de la comunitat de Bluesky al seu nom o descripció." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Aquesta llista està buida!" @@ -8018,16 +8335,16 @@ msgstr "Aquest servei de moderació no està disponible. Mira a continuació per msgid "This name is already in use" msgstr "Aquest nom ja està en ús" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Aquesta publicació només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfer." @@ -8035,15 +8352,15 @@ msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfe #~ msgid "This post will be hidden from feeds." #~ msgstr "Aquesta publicació no es mostrarà als canals." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Aquest perfil només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior del fil i silenciarà les notificacions de les respostes posteriors, tant per a tu com per als altres." @@ -8051,7 +8368,7 @@ msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior de msgid "This service has not provided terms of service or a privacy policy." msgstr "Aquest servei no ha proporcionat termes de servei ni una política de privadesa." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Això hauria de crear un registre de domini a:" @@ -8120,16 +8437,16 @@ msgstr "Això suprimirà \"{0}\" de les teves paraules silenciades. Sempre el po msgid "This will remove @{0} from the quick access list." msgstr "Això eliminarà @{0} de la llista d'accés ràpid." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Això eliminarà la teva publicació d'aquesta cita per a tots els usuaris i la substituirà per un marcador de posició." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Preferències dels fils de debat" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Preferències dels fils de debat" @@ -8137,15 +8454,15 @@ msgstr "Preferències dels fils de debat" #~ msgid "Thread settings updated" #~ msgstr "Preferències dels fils de debat actualitzades" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "per a desactivar el mètode 2FA de correu, verifica el teu accés a l'adreça de correu." @@ -8153,17 +8470,21 @@ msgstr "per a desactivar el mètode 2FA de correu, verifica el teu accés a l'ad msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Per informar d'una conversa, informa d'un dels seus missatges a través de la pantalla de conversa. Això permet als nostres moderadors entendre el context del teu problema." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Primer has de verificar el teu correu per poder pujar vídeos a Bluesky." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "A qui vols enviar aquest informe?" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Avui" + #: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "" +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "Junts, estem reconstruint l'Internet social. Ens alegrem que siguis aquí." #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." @@ -8173,25 +8494,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Commuta el menú desplegable" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Superior" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Transformacions" +#~ msgid "Transformations" +#~ msgstr "Transformacions" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Tradueix" @@ -8204,40 +8525,40 @@ msgstr "Torna-ho a provar" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Autenticació de dos factors" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Escriu aquí el teu missatge" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Tipus:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Desbloqueja la llista" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Deixa de silenciar la llista" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "No s'ha pogut eliminar" @@ -8245,14 +8566,14 @@ msgstr "No s'ha pogut eliminar" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Desbloqueja" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" @@ -8262,17 +8583,17 @@ msgstr "Desbloqueja" msgid "Unblock account" msgstr "Desbloqueja el compte" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Desbloqueja el compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Vols desbloquejar el compte?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -8287,12 +8608,12 @@ msgstr "Deixa de seguir" #~ msgid "Unfollow" #~ msgstr "Deixa de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Deixa de seguir el compte" @@ -8304,18 +8625,18 @@ msgstr "Deixa de seguir el compte" #~ msgid "Unlike" #~ msgstr "Desfés el m'agrada" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Desfés el m'agrada a aquest canal" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" -msgstr "" +msgstr "Deixa de silenciar" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" msgid "Unmute" msgstr "Deixa de silenciar" @@ -8323,12 +8644,12 @@ msgstr "Deixa de silenciar" msgid "Unmute {truncatedTag}" msgstr "Deixa de silenciar {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Deixa de silenciar el compte" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Deixa de silenciar totes les publicacions amb {displayTag}" @@ -8344,12 +8665,12 @@ msgstr "Deixa de silenciar la conversa" #~ msgid "Unmute notifications" #~ msgstr "Deixa de silenciar les notificacions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Deixa de silencia el vídeo" @@ -8357,20 +8678,25 @@ msgstr "Deixa de silencia el vídeo" #~ msgid "Unmuted" #~ msgstr "Sense silenciar" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Deixa de fixar" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "No fixis al perfil" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Desancora la llista de moderació" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Ja no està fix als teus canals" @@ -8378,7 +8704,7 @@ msgstr "Ja no està fix als teus canals" #~ msgid "Unsave" #~ msgstr "No desis" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Dona't de baixa" @@ -8387,7 +8713,7 @@ msgstr "Dona't de baixa" msgid "Unsubscribe from list" msgstr "Dona't de baixa d'aquesta llista" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Dona't de baixa d'aquest etiquetador" @@ -8395,7 +8721,7 @@ msgstr "Dona't de baixa d'aquest etiquetador" msgid "Unsubscribed from list" msgstr "T'has dona't de baixa de la llista" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "Tipus de vídeo no compatible: {mimeType}" @@ -8409,79 +8735,96 @@ msgid "Unwanted Sexual Content" msgstr "Contingut sexual no desitjat" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Actualitza {displayName} a les Llistes" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Actualitza {displayName} a les Llistes" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "Actualitza <0>{displayName} a les Llistes" #: src/lib/hooks/useOTAUpdate.ts:15 #~ msgid "Update Available" #~ msgstr "Actualització disponible" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Actualitza a {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "No s'ha pogut actualitzar el fitxer adjunt de la citació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "No s'ha pogut actualitzar la visibilitat de la resposta" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Actualitzant…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Enlloc d'això, penja una foto" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Puja un fitxer de text a:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Puja de la càmera" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Puja dels Arxius" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Puja de la biblioteca" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Utilitza un fitxer del teu servidor" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Utilitza les contrasenyes d'aplicació per a iniciar sessió en altres clients de Bluesky, sense haver de donar accés total al teu compte o contrasenya." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Utilitza bsky.social com a proveïdor d'allotjament" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Utilitza el proveïdor predeterminat" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Utilitza el navegador de l'aplicació" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Utilitza el meu navegador predeterminat" @@ -8489,7 +8832,7 @@ msgstr "Utilitza el meu navegador predeterminat" msgid "Use recommended" msgstr "Utilitza els recomanats" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Utilitza el panell de DNS" @@ -8534,36 +8877,36 @@ msgstr "L'usuari t'ha bloquejat" #~ msgid "User handle" #~ msgstr "Identificador d'usuari" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Llista d'usuaris per {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Llista d'usuaris feta per <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Llista d'usuaris feta per tu" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Llista d'usuaris creada" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Llista d'usuaris actualitzada" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Llistes d'usuaris" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Nom d'usuari o correu" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Usuaris" @@ -8575,22 +8918,20 @@ msgstr "Usuaris" msgid "users followed by <0>@{0}" msgstr "usuaris seguits per <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Els usuaris als que segueixo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Usuaris a \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Usuaris a qui els ha agradat aquest contingut o perfil" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Valor:" @@ -8598,7 +8939,7 @@ msgstr "Valor:" #~ msgid "Verification code" #~ msgstr "Codi de verificació" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "Es requereix un correu verificat" @@ -8606,23 +8947,24 @@ msgstr "Es requereix un correu verificat" #~ msgid "Verify {0}" #~ msgstr "Verifica {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Verifica els registres de DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Verifica el correu" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Diàleg de verificació del correu" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Verifica el meu correu" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Verifica el meu correu" @@ -8631,14 +8973,15 @@ msgstr "Verifica el meu correu" msgid "Verify New Email" msgstr "Verifica el correu nou" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "Verifica-ho ara" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Verifica el fitxer de text" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Verifica el teu correu" @@ -8647,21 +8990,21 @@ msgstr "Verifica el teu correu" #~ msgid "Version {0}" #~ msgstr "Versió {0}" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Versió {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "Vídeo" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "El vídeo no s'ha pogut processar" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Videojocs" @@ -8669,11 +9012,15 @@ msgstr "Videojocs" msgid "Video not found." msgstr "No s'ha trobat el vídeo." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "Configuració de vídeo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "Vídeo: {0}" @@ -8681,12 +9028,12 @@ msgstr "Vídeo: {0}" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "Els vídeos no poder ser de més de 50MB" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" -msgstr "" +msgstr "Els vídeos han de ser de menys de 60 segons" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" @@ -8699,15 +9046,23 @@ msgstr "Veure el perfil de {0}" msgid "View {displayName}'s profile" msgstr "Mostra el perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Veure el perfil de l'usuari bloquejat" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Veure l'entrada al blog per a més detalls" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Veure el registre de depuració" @@ -8727,11 +9082,13 @@ msgstr "Veure el fil de debat complet" msgid "View information about these labels" msgstr "Mostra informació sobre aquestes etiquetes" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Veure el perfil" @@ -8739,28 +9096,28 @@ msgstr "Veure el perfil" msgid "View the avatar" msgstr "Veure l'avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Veure els teus comptes bloquejats" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Veure el teus canals i descobreix-ne més" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Veure els teves llistes de moderació" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Veure els teus comptes silenciats" @@ -8787,11 +9144,11 @@ msgstr "Adverteix del contingut i filtra-ho dels canals" #~ msgid "We also think you'll like \"For You\" by Skygaze:" #~ msgstr "També creiem que t'agradarà el canal \"For You\" d'Skygaze:" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "No hem trobat cap resultat per a aquest hashtag." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "No hem pogut carregar aquesta conversa" @@ -8799,11 +9156,11 @@ msgstr "No hem pogut carregar aquesta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Calculem {estimatedTime} fins que el teu compte estigui llest." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Hem enviat un altre correu de verificació a <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky és:" @@ -8819,19 +9176,19 @@ msgstr "Ja no hi ha més publicacions dels usuaris que segueixes. Aquí n'hi ha #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Et recomanem el nostre canal \"Discover\":" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a provar." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "No hem pogut carregar les teves preferències de data de naixement. Torna-ho a provar." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configurant el teu compte. Si continua fallant, pots ometre aquest flux." @@ -8843,19 +9200,23 @@ msgstr "T'informarem quan el teu compte estigui llest." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Analitzarem la teva apel·lació ràpidament." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Ho farem servir per a personalitzar la teva experiència." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "Estem introduint un nou tipus de lletra, juntament amb una mida de lletra ajustable." + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Ens fa molta il·lusió que t'uneixis a nosaltres!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua, posa't en contacte amb el creador de la llista, @{handleOrDid}." @@ -8863,16 +9224,16 @@ msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en aquest moment. Torna-ho a provar." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí una estona." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." @@ -8880,7 +9241,7 @@ msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Ho sentim! Només et pots subscriure a deu etiquetadors i has arribat al teu límit de deu." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint." @@ -8896,7 +9257,7 @@ msgstr "Bentornat!" msgid "Welcome, friend!" msgstr "Benvingut, col·lega!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Quins són els teus interessos?" @@ -8911,17 +9272,17 @@ msgstr "Com vols anomenar al teu starter pack?" #~ msgid "What's next?" #~ msgstr "¿Qué sigue?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Què hi ha de nou" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "En quins idiomes està aquesta publicació?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quins idiomes t'agradaria veure en els teus canals algorítmics?" @@ -8931,8 +9292,8 @@ msgstr "Qui pot interactuar amb aquesta publicació?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Qui et pot enviar missatges?" +#~ msgid "Who can message you?" +#~ msgstr "Qui et pot enviar missatges?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8947,7 +9308,7 @@ msgstr "Qui hi pot respondre" #~ msgstr "Qui pot respondre?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Vaja!" @@ -8980,25 +9341,25 @@ msgid "Why should this user be reviewed?" msgstr "Per què s'hauria de revisar aquest usuari?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Amplada" +#~ msgid "Wide" +#~ msgstr "Amplada" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Escriu un missatge" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Escriu una publicació" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Escriu la teva resposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Escriptors" @@ -9007,12 +9368,12 @@ msgstr "Escriptors" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Sí" @@ -9021,15 +9382,15 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "Sí, desactiva'l" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Sí, elimina aquest starter pack" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Sí, desenganxa'l" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Sí, amaga'l" @@ -9037,11 +9398,14 @@ msgstr "Sí, amaga'l" msgid "Yes, reactivate my account" msgstr "Sí, torna a activar el meu compte" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Ahir, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Ahir" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Ahir, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "tu" @@ -9054,7 +9418,7 @@ msgstr "Tu" msgid "You are in line." msgstr "Estàs a la cua." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "No t'és permés pujar vídeos." @@ -9062,6 +9426,10 @@ msgstr "No t'és permés pujar vídeos." msgid "You are not following anyone." msgstr "No segueixes a ningú." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "Pots ajustar-los a la configuració de l'aparença més endavant." + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -9080,15 +9448,15 @@ msgstr "També pots desactivar el teu compte temporalment i reactivar-lo en qual #~ msgstr "Pots canviar aquests paràmetres més endavant." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Pots canviar-ho quan vulguis." +#~ msgid "You can change this at any time." +#~ msgstr "Pots canviar-ho quan vulguis." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pots continuar les converses en curs independentment de la configuració que triïs." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Ara pots iniciar sessió amb la nova contrasenya." @@ -9100,7 +9468,7 @@ msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu p msgid "You do not have any followers." msgstr "No tens cap seguidor." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "No segueixes cap usuari que segueixi @{name}." @@ -9108,7 +9476,7 @@ msgstr "No segueixes cap usuari que segueixi @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Encara no tens codis d'invitació! Te n'enviarem quan portis una mica més de temps a Bluesky." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "No tens cap canal fixat." @@ -9116,7 +9484,7 @@ msgstr "No tens cap canal fixat." #~ msgid "You don't have any saved feeds!" #~ msgstr "No tens cap canal desat!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "No tens cap canal desat." @@ -9134,8 +9502,8 @@ msgstr "Has bloquejat aquest usuari" msgid "You have blocked this user. You cannot view their content." msgstr "Has bloquejat aquest usuari. No pots veure el seu contingut." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -9162,7 +9530,7 @@ msgstr "Has silenciat aquest usuari" #~ msgid "You have muted this user." #~ msgstr "Has silenciat aquest usuari." -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Encara no tens cap conversa. Comença'n una!" @@ -9170,8 +9538,8 @@ msgstr "Encara no tens cap conversa. Comença'n una!" msgid "You have no feeds." msgstr "No tens canals." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "No tens llistes." @@ -9179,7 +9547,7 @@ msgstr "No tens llistes." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "Encara no tens missatges. Comença una conversa amb algú!" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Encara no has bloquejat cap compte. Per a bloquejar un compte, ves al seu perfil i selecciona \"Bloqueja el compte\" al menú del seu compte." @@ -9187,11 +9555,11 @@ msgstr "Encara no has bloquejat cap compte. Per a bloquejar un compte, ves al se #~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." #~ msgstr "Encara no has bloquejat cap compte. Per a fer-ho, ves al seu perfil i selecciona \"Bloqueja el compte\" en el menú del seu compte." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Encara no has creat cap contrasenya d'aplicació. Pots fer-ho amb el botó d'aquí sota." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al seu perfil i selecciona \"Silencia el compte\" al menú del seu compte." @@ -9203,11 +9571,11 @@ msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al se msgid "You have reached the end" msgstr "Has arribat al final" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has arribat temporalment al límit de pujades de vídeos. Torna-ho a provar més tard." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Encara no has creat cap starter pack!" @@ -9244,7 +9612,11 @@ msgstr "Només pots afegir 3 canals" #~ msgid "You may only add up to 50 profiles" #~ msgstr "Només pots afegir 50 perfils" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Has de tenir 13 anys o més per a registrar-te" @@ -9256,7 +9628,7 @@ msgstr "Has de tenir 13 anys o més per a registrar-te" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Has de tenir 18 anys o més per a habilitar el contingut per a adults" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir almenys set persones més per generar un starter pack." @@ -9264,12 +9636,11 @@ msgstr "Has de seguir almenys set persones més per generar un starter pack." msgid "You must grant access to your photo library to save a QR code" msgstr "Has de concedir accés a la teva galeria per desar un codi QR" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Has de concedir accés a la teva galeria per desar la imatge." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Has d'escollir almenys un etiquetador per a un informe" @@ -9277,47 +9648,51 @@ msgstr "Has d'escollir almenys un etiquetador per a un informe" msgid "You previously deactivated @{0}." msgstr "Abans has desactivat @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebràs més notificacions d'aquest debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Ara rebràs notificacions d'aquest debat" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Rebràs un correu amb un \"codi de restabliment\". Introdueix aquí el codi i després la teva contrasenya nova." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Tu: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Seguiràs aquestes persones i {0} altres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Seguiràs a aquesta gent de seguida" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "Rebràs un correu a <0>{0} per verificar que ets tu." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Estaràs al dia amb aquests canals" @@ -9336,7 +9711,7 @@ msgstr "Estàs a la cua" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Has iniciat sessió amb una contrasenya d'aplicació. Inicia sessió amb la teva contrasenya principal per continuar la desactivació del teu compte." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Ja està tot llest!" @@ -9349,15 +9724,15 @@ msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicació." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del vostre cabal! Cerca alguns comptes més per a seguir." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "El teu compte" @@ -9365,15 +9740,15 @@ msgstr "El teu compte" msgid "Your account has been deleted" msgstr "El teu compte s'ha eliminat" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "" +msgstr "El teu compte encara no té l'edat suficient per penjar vídeos. Torna-ho a provar més tard." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "El repositori del teu compte, que conté tots els registres de dades públiques, es pot baixar com a fitxer \"CAR\". Aquest fitxer no inclou incrustacions multimèdia, com ara imatges, ni les teves dades privades, que s'han d'obtenir per separat." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "La teva data de naixement" @@ -9381,11 +9756,11 @@ msgstr "La teva data de naixement" msgid "Your browser does not support the video format. Please try a different browser." msgstr "El teu navegador no admet el format de vídeo. Prova amb un altre navegador." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Els teus xats s'han desactivat" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "La teva elecció es desarà, però es pot canviar més endavant a la configuració." @@ -9393,9 +9768,9 @@ msgstr "La teva elecció es desarà, però es pot canviar més endavant a la con #~ msgid "Your default feed is \"Following\"" #~ msgstr "El teu canal per defecte és \"Seguint\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "El teu correu no sembla vàlid." @@ -9424,7 +9799,7 @@ msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber q msgid "Your full handle will be" msgstr "El teu identificador complet serà" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "El teu identificador complet serà <0>@{0}" @@ -9446,15 +9821,15 @@ msgstr "Les teves paraules silenciades" msgid "Your password has been changed successfully!" msgstr "S'ha canviat la teva contrasenya!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "S'ha publicat" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Les teves publicacions, m'agrades i bloquejos són públics. Els comptes silenciats són privats." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "El teu perfil" @@ -9462,14 +9837,14 @@ msgstr "El teu perfil" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El teu perfil, publicacions, fonts i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "S'ha publicat la teva resposta" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "El teu informe s'enviarà al servei de moderació de Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "El teu identificador d'usuari" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index efe3b69e39..0d3ae2d8c5 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Translators in PR 2319, surfdude29, PythooonUser, cdfzo, imbstt\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(enthält eingebettete Inhalte)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(keine E-Mail)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} anderer} other {{formattedCount} andere}}" @@ -50,7 +50,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# Repost} other {# Reposts}}" @@ -68,15 +68,15 @@ msgstr "{0, plural, one {Follower} other {Follower}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {Folge ich} other {Folge ich}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Liken (# Like)} other {Liken (# Likes)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {Like} other {Likes}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Von # Konto geliked} other {Von # Konten geliked}}" @@ -85,19 +85,19 @@ msgstr "{0, plural, one {Von # Konto geliked} other {Von # Konten geliked}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {Beitrag} other {Beiträge}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Antworten (# Antwort)} other {Antworten (# Antworten)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {Repost} other {Reposts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Like aufheben (# Like)} other {Like aufheben (# Likes)}}" @@ -111,19 +111,19 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} sind diese Woche beigetreten" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} Personen haben dieses Startpaket bereits verwendet!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Der Avatar von {0}" @@ -160,7 +160,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" @@ -185,7 +185,7 @@ msgstr "{count, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" #~ msgstr "{diffSeconds, plural, one {Sekunde} other {Sekunden}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Startpaket von {displayName}" @@ -197,22 +197,22 @@ msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} Folge ich" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} kann keine Nachricht gesendet werden" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ungelesen" @@ -232,29 +232,29 @@ msgstr "{profileName} ist vor {0} Bluesky mit einem Startpaket beigetreten" #~ msgid "<0/> members" #~ msgstr "<0/> Mitglieder" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} und {2, plural, one {# weiterer Feed} other {# weitere Feeds}} sind in deinem Startpaket enthalten" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {Follower} other {Follower}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} und<1> <2>{1} sind in deinem Startpaket enthalten" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} ist in deinem Startpaket enthalten" @@ -262,15 +262,19 @@ msgstr "<0>{0} ist in deinem Startpaket enthalten" msgid "<0>{0} members" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Unzutreffend. Diese Warnung ist nur für Beiträge mit angehängten Medien verfügbar." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Unzutreffend. Diese Warnung ist nur für Beiträge mit angehängten Medien verfügbar." + +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Du und<1> <2>{0} seid in deinem Startpaket enthalten" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Ungültiger Handle" @@ -278,7 +282,7 @@ msgstr "⚠Ungültiger Handle" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "2FA Bestätigung" @@ -294,8 +298,8 @@ msgstr "" #~ msgid "A help tooltip" #~ msgstr "Ein Hilfe-Tooltip" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Zugriff auf Navigationslinks und Einstellungen" @@ -303,35 +307,34 @@ msgstr "Zugriff auf Navigationslinks und Einstellungen" msgid "Access profile and other navigation links" msgstr "Zugang zum Profil und anderen Navigationslinks" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Einstellungen für Barrierefreiheit" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Einstellungen für Barrierefreiheit" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Konto" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Konto blockiert" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Konto gefolgt" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Konto stummgeschaltet" @@ -352,27 +355,27 @@ msgstr "Kontoeinstellungen" msgid "Account removed from quick access" msgstr "Konto aus dem Schnellzugriff entfernt" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Konto entblockiert" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Konto entfolgt" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Stummschaltung für Konto aufgehoben" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Hinzufügen" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Füge {0} weitere hinzu, um fortzufahren" @@ -380,37 +383,39 @@ msgstr "Füge {0} weitere hinzu, um fortzufahren" msgid "Add {displayName} to starter pack" msgstr "Füge {displayName} zum Startpaket hinzu" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Inhaltswarnung hinzufügen" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Einen Benutzer zu dieser Liste hinzufügen" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Konto hinzufügen" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Alt-Text hinzufügen" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "App-Passwort hinzufügen" @@ -426,7 +431,7 @@ msgstr "Stummgeschaltete Wörter und Tags hinzufügen" msgid "Add recommended feeds" msgstr "Empfohlene Feeds hinzufügen" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Füge deinem Startpaket einige Feeds hinzu!" @@ -434,16 +439,16 @@ msgstr "Füge deinem Startpaket einige Feeds hinzu!" msgid "Add the default feed of only people you follow" msgstr "Füge den Standard-Feed nur von Personen, denen du folgst, hinzu" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Füge diesen Feed zu deinen Feeds hinzu" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Zu Listen hinzufügen" @@ -452,7 +457,7 @@ msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufügen" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Zur Liste hinzugefügt" @@ -464,22 +469,28 @@ msgstr "Zu meinen Feeds hinzugefügt" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Inhalt für Erwachsene" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app aktiviert werden." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Inhalte für Erwachsene sind deaktiviert." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Erweitert" @@ -487,11 +498,11 @@ msgstr "Erweitert" msgid "Algorithm training complete!" msgstr "Das Trainieren des Algorithmus ist abgeschlossen!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Allen Konten wurden gefolgt!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "All deine gespeicherten Feeds an einem Ort." @@ -500,53 +511,58 @@ msgstr "All deine gespeicherten Feeds an einem Ort." msgid "Allow access to your direct messages" msgstr "Erlaube den Zugriff auf deine Direktnachrichten" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Erlaube neue Nachrichten von" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Hast du bereits einen Code?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Bereits angemeldet als @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Alt-Text" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Alt-Text" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Benutzer und hilft, den Kontext für alle zu vermitteln." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst." @@ -554,7 +570,11 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Eine E-Mail wurde an deine vorherige Adresse, {0}, gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -562,15 +582,15 @@ msgstr "" #~ msgid "An error occured" #~ msgstr "Ein Fehler ist aufgetreten" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?" @@ -583,24 +603,24 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten." -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -612,40 +632,40 @@ msgstr "Ein Problem, das hier nicht aufgelistet ist" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "Ein unbekannter Fehler ist aufgetreten" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "und" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Tiere" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "Animiertes GIF" @@ -653,15 +673,20 @@ msgstr "Animiertes GIF" msgid "Anti-Social Behavior" msgstr "Asoziales Verhalten" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "App-Sprache" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "App-Passwort gelöscht" @@ -673,47 +698,47 @@ msgstr "App-Passwortnamen dürfen nur Buchstaben, Zahlen, Leerzeichen, Bindestri msgid "App Password names must be at least 4 characters long." msgstr "App-Passwortnamen müssen mindestens 4 Zeichen lang sein." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "App-Passwort-Einstellungen" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "App-Passwörter" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Anfechten" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Kennzeichnung „{0}” anfechten" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Anfechtung gesendet" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Einspruch gegen diese Entscheidung" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Erscheinungsbild" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -722,7 +747,7 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "Standardmäßig empfohlene Feeds anwenden" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Bist du sicher, dass du das App-Passwort „{name}” löschen möchtest?" @@ -730,10 +755,14 @@ msgstr "Bist du sicher, dass du das App-Passwort „{name}” löschen möchtest msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird für dich gelöscht, nicht jedoch für den anderen Teilnehmer." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Möchtest du dieses Startpaket wirklich löschen?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer." @@ -742,11 +771,11 @@ msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten we msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?" @@ -759,11 +788,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Schreibst du auf <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Kunst" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." @@ -772,39 +801,39 @@ msgid "At least 3 characters" msgstr "Mindestens 3 Zeichen" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Zurück" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Grundlagen" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Geburtstag" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Geburtstag:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Blockieren" @@ -813,45 +842,45 @@ msgstr "Blockieren" msgid "Block account" msgstr "Konto blockieren" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Konto blockieren" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Konto blockieren?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Konten blockieren" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Blockliste" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Diese Konten blockieren?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Blockiert" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Blockierte Konten" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Blockierte Konten" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen." @@ -863,40 +892,44 @@ msgstr "Blockierter Beitrag." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Konto hinzuzufügen." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Die Blockierung ist öffentlich. Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Blockieren verhindert nicht, dass Kennzeichnungen zu deinem Konto hinzugefügt werden, verhindert aber, dass dieses Konto in deinen Threads antworten oder interagieren kann." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky ist ein offenes Netzwerk, in dem du deinen Hosting-Anbieter wählen kannst. Benutzerdefiniertes Hosting ist jetzt in der Beta-Phase für Entwickler verfügbar." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky ist ein offenes Netzwerk, in dem du deinen Hosting-Anbieter wählen kannst. Benutzerdefiniertes Hosting ist jetzt in der Beta-Phase für Entwickler verfügbar." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Mit Freunden ist Bluesky besser!" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky wählt eine Reihe von empfohlenen Konten von Personen in deinem Netzwerk aus." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky zeigt dein Profil und deine Beiträge nicht für abgemeldete Benutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach." @@ -909,13 +942,13 @@ msgid "Blur images and filter from feeds" msgstr "Bilder verwischen und aus Feeds herausfiltern" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Bücher" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -942,7 +975,7 @@ msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" msgid "Browse other feeds" msgstr "Andere Feeds durchsuchen" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Business" @@ -950,7 +983,7 @@ msgstr "Business" msgid "by —" msgstr "von —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Von {0}" @@ -959,14 +992,26 @@ msgid "by <0/>" msgstr "von <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Mit dem Erstellen des Kontos akzeptierst du die {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Mit dem Erstellen des Kontos akzeptierst du die {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "von dir" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Kamera" @@ -975,33 +1020,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten. Muss mindestens 4 Zeichen lang sein, darf aber nicht länger als 32 Zeichen sein." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Abbrechen" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1013,19 +1057,19 @@ msgstr "Abbrechen" msgid "Cancel account deletion" msgstr "Kontolöschung abbrechen" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Handle-Änderung abbrechen" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Bildbeschneidung abbrechen" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Profilbearbeitung abbrechen" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Profilbearbeitung abbrechen" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Beitrag zitieren abbrechen" @@ -1034,6 +1078,7 @@ msgid "Cancel reactivation and log out" msgstr "Reaktivierung abbrechen und abmelden" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Suche abbrechen" @@ -1041,14 +1086,14 @@ msgstr "Suche abbrechen" msgid "Cancels opening the linked website" msgstr "Bricht das Öffnen der verlinkten Website ab" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1057,24 +1102,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Ändern" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Ändern" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Handle ändern" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Handle ändern" @@ -1082,12 +1131,12 @@ msgstr "Handle ändern" msgid "Change my email" msgstr "Meine E-Mail ändern" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Passwort ändern" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Passwort ändern" @@ -1099,9 +1148,10 @@ msgstr "Beitragssprache auf {0} ändern" msgid "Change Your Email" msgstr "Deine E-Mail ändern" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Chat" @@ -1111,14 +1161,14 @@ msgstr "Chat stummgeschaltet" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Chat-Einstellungen" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Chat-Einstellungen" @@ -1131,7 +1181,7 @@ msgstr "Chatstummschaltung aufgehoben" msgid "Check my status" msgstr "Meinen Status prüfen" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Schau in deinem E-Mail-Postfach nach einem Anmeldecode und gib ihn hier ein." @@ -1147,23 +1197,27 @@ msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem Bestätigungscode #~ msgid "Choose at least {0} more" #~ msgstr "Wähle mindestens {0} weitere aus" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Feeds wählen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Wähle für mich" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Menschen auswählen" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Service wählen" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds generieren." @@ -1176,7 +1230,7 @@ msgstr "Wähle diese Farbe als Avatar" #~ msgid "Choose who can reply" #~ msgstr "Wähle aus, wer antworten darf" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Wähle dein Passwort" @@ -1188,16 +1242,15 @@ msgstr "Wähle dein Passwort" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Alle alten Speicherdaten löschen (danach neu starten)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Alle Speicherdaten löschen" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten löschen (danach neu starten)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Suchanfrage löschen" @@ -1205,11 +1258,11 @@ msgstr "Suchanfrage löschen" #~ msgid "Clears all legacy storage data" #~ msgstr "Löscht alle veralteten Speicherdaten" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Löscht alle Speicherdaten" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "hier klicken" @@ -1225,15 +1278,15 @@ msgstr "Klicke hier für weitere Informationen." msgid "Click here to open tag menu for {tag}" msgstr "Klicke hier, um das Tag-Menü für {tag} zu öffnen" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" @@ -1245,27 +1298,25 @@ msgstr "Klima" msgid "Clip 🐴 clop 🐴" msgstr "Klipp 🐴 klapp 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Schließen" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Aktiven Dialog schließen" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Meldung schließen" @@ -1273,12 +1324,11 @@ msgstr "Meldung schließen" msgid "Close bottom drawer" msgstr "Untere Schublade schließen" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Dialog schließen" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "GIF-Dialog schließen" @@ -1291,29 +1341,29 @@ msgid "Close image viewer" msgstr "Bildbetrachter schließen" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Modalfenster schließen" +#~ msgid "Close modal" +#~ msgstr "Modalfenster schließen" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Fußzeile der Navigation schließen" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Diesen Dialog schließen" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Schließt die untere Navigationsleiste" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Schließt die Kennwortaktualisierungsmeldung" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1323,41 +1373,49 @@ msgstr "Schließt den Betrachter für das Banner" msgid "Collapse list of users" msgstr "Liste der Benutzer einklappen" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Komödie" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Community-Richtlinien" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Schließe das Onboarding ab und nutze dein Konto" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Schließe die Herausforderung ab" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Verfasse Beiträge mit einer Länge von bis zu {MAX_GRAPHEME_LENGTH} Zeichen" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Antwort verfassen" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1366,17 +1424,19 @@ msgstr "Antwort verfassen" msgid "Configure content filtering setting for category: {name}" msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Konfiguriert in <0>Moderationseinstellungen" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Bestätigen" @@ -1393,30 +1453,35 @@ msgstr "Bestätige die Spracheinstellungen für den Inhalt" msgid "Confirm delete account" msgstr "Bestätige das Löschen des Kontos" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Bestätige dein Alter:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Bestätige dein Geburtsdatum" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Bestätigungscode" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Verbinden…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Support kontaktieren" @@ -1424,12 +1489,12 @@ msgstr "Support kontaktieren" msgid "Content Blocked" msgstr "Inhalt blockiert" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Inhaltsfilterung" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Inhaltssprachen" @@ -1439,13 +1504,13 @@ msgid "Content Not Available" msgstr "Inhalt nicht verfügbar" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Inhaltswarnung" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Inhaltswarnungen" @@ -1453,12 +1518,12 @@ msgstr "Inhaltswarnungen" msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Fortfahren" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Fortfahren als {0} (noch angemeldet)" @@ -1466,13 +1531,13 @@ msgstr "Fortfahren als {0} (noch angemeldet)" msgid "Continue thread..." msgstr "Thread fortsetzen…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Weiter zum nächsten Schritt" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Konversation gelöscht" @@ -1485,20 +1550,21 @@ msgstr "Kochen" msgid "Copied" msgstr "Kopiert" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "In die Zwischenablage kopiert" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Kopiert!" @@ -1506,17 +1572,17 @@ msgstr "Kopiert!" msgid "Copies app password" msgstr "Kopiert das App-Passwort" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopieren" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "{0} kopieren" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Kopiere den Code" @@ -1528,12 +1594,12 @@ msgstr "Link kopieren" msgid "Copy Link" msgstr "Link kopieren" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" @@ -1542,17 +1608,17 @@ msgstr "Link zum Beitrag kopieren" msgid "Copy message text" msgstr "Nachrichtentext kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Beitragstext kopieren" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "QR-Code kopieren" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Urheberrechtsbestimmungen" @@ -1564,11 +1630,11 @@ msgstr "Urheberrechtsbestimmungen" msgid "Could not leave chat" msgstr "Du konntest den Chat nicht verlassen" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Liste konnte nicht geladen werden" @@ -1580,34 +1646,39 @@ msgstr "Chat konnte nicht stummgeschaltet werden" msgid "Could not process your video" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Erstellen" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Neues Konto erstellen" +#~ msgid "Create a new account" +#~ msgstr "Neues Konto erstellen" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Neues Bluesky-Konto erstellen" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "QR-Code für ein Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Ein Startpaket für mich erstellen" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Konto erstellen" @@ -1616,11 +1687,11 @@ msgstr "Konto erstellen" msgid "Create an account" msgstr "Ein Konto erstellen" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Stattdessen einen Avatar erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Ein weiteres erstellen" @@ -1629,7 +1700,7 @@ msgid "Create App Password" msgstr "App-Passwort erstellen" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Neues Konto erstellen" @@ -1637,51 +1708,47 @@ msgstr "Neues Konto erstellen" msgid "Create report for {0}" msgstr "Meldung für {0} erstellen" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Erstellt {0}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Kultur" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Benutzerdefiniert" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Benutzerdefinierte Domain" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Benutzerdefinierte Feeds, die von der Community erstellt wurden, bringen dir neue Erfahrungen und helfen dir, die Inhalte zu finden, die du liebst." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Passe die Einstellungen für Medien von externen Websites an." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Dunkel" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Dunkelmodus" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" @@ -1689,38 +1756,43 @@ msgstr "" #~ msgid "Dark Theme" #~ msgstr "Dunkelmodus" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Geburtsdatum" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Konto deaktivieren" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Mein Konto deaktivieren" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Debug-Moderation" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Debug-Panel" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Löschen" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Konto löschen" @@ -1728,16 +1800,16 @@ msgstr "Konto löschen" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Konto <0>„<1>{0}<2>” löschen" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "App-Passwort löschen" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "App-Passwort löschen?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Datensatz für die Chat-Erklärung löschen" @@ -1745,7 +1817,7 @@ msgstr "Datensatz für die Chat-Erklärung löschen" msgid "Delete for me" msgstr "Für mich löschen" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Liste löschen" @@ -1761,33 +1833,33 @@ msgstr "Nachricht für mich löschen" msgid "Delete my account" msgstr "Mein Konto löschen" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Mein Konto löschen…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Beitrag löschen" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Startpaket löschen" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Startpaket löschen?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Diese Liste löschen?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Diesen Beitrag löschen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Gelöscht" @@ -1795,27 +1867,35 @@ msgstr "Gelöscht" msgid "Deleted post." msgstr "Gelöschter Beitrag." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Löscht den Datensatz für die Chat-Erklärung" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Beschreibung" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Beschreibender Alt-Text" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -1823,58 +1903,62 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Wolltest du etwas sagen?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Gedimmt" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Direktnachrichten sind da!" +#~ msgid "Direct messages are here!" +#~ msgstr "Direktnachrichten sind da!" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "Automatische Wiedergabe für GIFs deaktivieren" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Zwei-Faktor-Authentifizierung per E-Mail deaktivieren" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Haptische Rückmeldung deaktivieren" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Deaktiviert" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Verwerfen" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Entwurf verwerfen?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen" @@ -1891,15 +1975,15 @@ msgstr "Entdecke neue benutzerdefinierte Feeds" msgid "Discover new feeds" msgstr "Entdecke neue Feeds" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -1907,19 +1991,29 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "Anleitung zum Einstieg schließen" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Größere Alt-Text-Badges zeigen" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Anzeigename" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Anzeigename" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Anzeigename" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNS-Panel" @@ -1927,6 +2021,14 @@ msgstr "DNS-Panel" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Beinhaltet keine Nacktheit." @@ -1935,38 +2037,37 @@ msgstr "Beinhaltet keine Nacktheit." msgid "Doesn't begin or end with a hyphen" msgstr "Beginnt oder endet nicht mit einem Bindestrich" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Domain-Wert" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Domain verifiziert!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fertig" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Fertig" @@ -1975,7 +2076,11 @@ msgstr "Fertig" msgid "Done{extraText}" msgstr "Fertig{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Bluesky herunterladen" @@ -1983,16 +2088,16 @@ msgstr "Bluesky herunterladen" #~ msgid "Download Bluesky account data (repository)" #~ msgstr "Öffnet ein Modal zum Herunterladen deiner Bluesky-Kontodaten (Kontodepot)" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "CAR-Datei herunterladen" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Zum Hinzufügen Bilder ablegen" @@ -2000,39 +2105,43 @@ msgstr "Zum Hinzufügen Bilder ablegen" msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "z. B. alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "z. B. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "z. B. Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "z. B. alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "z. B. künstlerische Nacktheit" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "z. B. Großartige Poster" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "z. B. Spammer" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "z. B. Die Poster, die immer ins Schwarze treffen." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten." @@ -2040,58 +2149,59 @@ msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Bearbeiten" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Bearbeiten" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Avatar bearbeiten" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Feeds bearbeiten" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Bild bearbeiten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Details der Liste bearbeiten" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Mein Profil bearbeiten" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Mein Profil bearbeiten" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Personen bearbeiten" @@ -2100,21 +2210,23 @@ msgstr "Personen bearbeiten" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Profil bearbeiten" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Startpaket bearbeiten" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Benutzerliste bearbeiten" @@ -2122,20 +2234,20 @@ msgstr "Benutzerliste bearbeiten" msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Bearbeite deinen Anzeigenamen" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Bearbeite deinen Anzeigenamen" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Bearbeite deine Profilbeschreibung" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Bearbeite deine Profilbeschreibung" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Bildung" @@ -2143,7 +2255,7 @@ msgstr "Bildung" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "Wähle entweder „Alle” oder „Niemand” aus" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-Mail" @@ -2152,11 +2264,11 @@ msgstr "E-Mail" msgid "Email 2FA disabled" msgstr "2FA per E-Mail wurde deaktiviert" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "E-Mail-Adresse" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2173,21 +2285,21 @@ msgstr "E-Mail aktualisiert" msgid "Email verified" msgstr "E-Mail verifiziert" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "E-Mail:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Beitrag einbetten" @@ -2195,29 +2307,29 @@ msgstr "Beitrag einbetten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bette diesen Beitrag in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Nur {0} aktivieren" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Inhalte für Erwachsene aktivieren" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Externe Medien aktivieren" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Medienplayer aktivieren für" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" @@ -2225,17 +2337,17 @@ msgstr "" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Nur von dieser Seite erlauben" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Aktiviert" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Ende des Feeds" @@ -2243,7 +2355,7 @@ msgstr "Ende des Feeds" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "Ende des Onboarding-Tour-Fensters. Nicht weitergehen. Gehe stattdessen zurück, um weitere Optionen zu sehen, oder drücke, um zu überspringen." -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2251,7 +2363,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "Gib einen Namen für dieses App-Passwort ein" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Gib ein Passwort ein" @@ -2260,6 +2372,10 @@ msgstr "Gib ein Passwort ein" msgid "Enter a word or tag" msgstr "Gib ein Wort oder einen Tag ein" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Bestätigungscode eingeben" @@ -2268,20 +2384,20 @@ msgstr "Bestätigungscode eingeben" msgid "Enter the code you received to change your password." msgstr "Gib den Code ein, den du erhalten hast, um dein Passwort zu ändern." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Gib die Domain ein, die du verwenden möchtest" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Gib die E-Mail ein, die du zur Erstellung deines Kontos verwendet hast. Wir schicken dir einen \"Reset-Code\", damit du ein neues Passwort festlegen kannst." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Gib dein Geburtsdatum ein" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Gib deine E-Mail-Adresse ein" @@ -2293,10 +2409,14 @@ msgstr "Gib oben deine neue E-Mail-Adresse ein" msgid "Enter your new email address below." msgstr "Gib unten deine neue E-Mail-Adresse ein." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Gib deinen Benutzernamen und dein Passwort ein" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" @@ -2305,12 +2425,12 @@ msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Fehler:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Alle" @@ -2322,10 +2442,8 @@ msgstr "Alle können antworten" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Alle" @@ -2345,7 +2463,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2353,11 +2471,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "Verlässt den Vorgang der Accountlöschung" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Verlässt den Vorgang der Handle-Änderung" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Verlässt den Vorgang des Bildzuschneidens" @@ -2377,12 +2495,16 @@ msgstr "Alt-Text erweitern" msgid "Expand list of users" msgstr "Liste der Benutzer erweitern" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Beitrag, auf den du antwortest" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2402,32 +2524,32 @@ msgstr "Explizite oder potenziell verstörende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Meine Daten exportieren" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Meine Daten exportieren" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Externe Medien" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche \"Abspielen\" drückst." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Externe Medienpräferenzen" @@ -2436,12 +2558,12 @@ msgstr "Externe Medienpräferenzen" msgid "Failed to create app password." msgstr "Das App-Passwort konnte nicht erstellt werden." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Startpaket konnte nicht erstellt werden" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Die Liste konnte nicht erstellt werden. Überprüfe deine Internetverbindung und versuche es erneut." @@ -2449,11 +2571,11 @@ msgstr "Die Liste konnte nicht erstellt werden. Überprüfe deine Internetverbin msgid "Failed to delete message" msgstr "Nachricht konnte nicht gelöscht werden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Startpaket konnte nicht gelöscht werden" @@ -2462,12 +2584,11 @@ msgstr "Startpaket konnte nicht gelöscht werden" msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen für Feeds" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "GIFs konnten nicht geladen werden" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Es konnten keine vorherigen Nachrichten geladen werden" @@ -2480,7 +2601,11 @@ msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Konten, denen du folgen solltest, konnten nicht geladen werden" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" @@ -2488,40 +2613,39 @@ msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Konnte nicht gesendet werden" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Aktualisierung der Feeds fehlgeschlagen" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Einstellungen konnten nicht aktualisiert werden" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Feed von {0}" @@ -2531,31 +2655,36 @@ msgid "Feed toggle" msgstr "Feed-Umschalter" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds sind benutzerdefinierte Algorithmen, die Benutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen." -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Feeds aktualisiert!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Dateiinhalt" @@ -2567,7 +2696,7 @@ msgstr "Datei erfolgreich gespeichert!" msgid "Filter from feeds" msgstr "Aus Feeds filtern" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Abschließen" @@ -2581,19 +2710,19 @@ msgstr "Konten zum Folgen finden" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "Finde weitere Feeds und Konten, denen du folgen kannst, auf der „Explore” Seite." -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Finde Beiträge und Nutzer auf Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Passe die Inhalte deines Following-Feeds an." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Passe die Diskussions-Threads an." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Beenden" @@ -2605,25 +2734,25 @@ msgstr "Beenden" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Flexibel" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Horizontal drehen" +#~ msgid "Flip horizontal" +#~ msgstr "Horizontal drehen" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Vertikal drehen" +#~ msgid "Flip vertically" +#~ msgstr "Vertikal drehen" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Folgen" @@ -2632,12 +2761,12 @@ msgctxt "action" msgid "Follow" msgstr "Folgen" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "{0} folgen" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "{name} folgen" @@ -2645,26 +2774,26 @@ msgstr "{name} folgen" msgid "Follow 7 accounts" msgstr "Folge 7 Konten" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Konto folgen" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Allen folgen" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Zurückfolgen" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "Zurückfolgen" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Folge weiteren Konten, um dich mit deinen Interessen zu verbinden und dein Netzwerk aufzubauen." @@ -2687,9 +2816,9 @@ msgstr "Gefolgt von <0>{0} und <1>{1}" #: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "Gefolgt von <0>{0}, <1>{1} und {1, plural, one {# anderer} other {# andere}}" +msgstr "Gefolgt von <0>{0}, <1>{1} und {2, plural, one {# anderer} other {# andere}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Benutzer, denen ich folge" @@ -2705,49 +2834,49 @@ msgstr "folgte dir" msgid "followed you back" msgstr "ist dir gefolgt" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Follower" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Follower, die du kennst" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Folge ich" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Ich folge {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Ich folge {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Following-Feed-Einstellungen" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Following-Feed-Einstellungen" @@ -2755,16 +2884,26 @@ msgstr "Following-Feed-Einstellungen" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "„Following” zeigt die neuesten Beiträge von Personen, denen du folgst." -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folgt dir" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Folgt dir" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Essen" @@ -2776,20 +2915,25 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du dieses Passwort verlierst, musst du ein neues generieren." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Passwort vergessen" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Passwort vergessen?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Vergessen?" @@ -2797,34 +2941,34 @@ msgstr "Vergessen?" msgid "Frequently Posts Unwanted Content" msgstr "Postet oft unerwünschte Inhalte" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Von @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Von <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galerie" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -2839,7 +2983,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -2847,14 +2991,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Zurückgehen" @@ -2862,10 +3005,10 @@ msgstr "Zurückgehen" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Zurückgehen" @@ -2873,24 +3016,24 @@ msgstr "Zurückgehen" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Zum vorherigen Schritt zurückgehen" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "" @@ -2899,11 +3042,11 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Zu @{queryMaybeHandle} gehen" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Zum nächsten gehen" @@ -2921,6 +3064,8 @@ msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "" @@ -2928,11 +3073,11 @@ msgstr "" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Handle" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "" @@ -2940,24 +3085,24 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Hast du Probleme?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Hilfe" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -2977,22 +3122,22 @@ msgstr "" msgid "Here is your app password." msgstr "Hier ist dein App-Passwort." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Ausblenden" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Ausblenden" @@ -3002,36 +3147,36 @@ msgstr "Ausblenden" #~ msgid "Hide post" #~ msgstr "Beitrag ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Den Inhalt ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Benutzerliste ausblenden" @@ -3059,7 +3204,7 @@ msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informier msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, wir haben Probleme, diesen Feed zu finden. Möglicherweise wurde er gelöscht." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3067,45 +3212,49 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Home" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Hosting-Anbieter" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Wie sollen wir diesen Link öffnen?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Ich habe einen Code" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Ich habe einen Bestätigungscode" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Ich habe meine eigene Domain" @@ -3119,18 +3268,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Wenn keine ausgewählt werden, sind sie für alle Altersgruppen geeignet." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Wenn keine ausgewählt werden, sind sie für alle Altersgruppen geeignet." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen." @@ -3146,21 +3295,20 @@ msgstr "" msgid "Illegal and Urgent" msgstr "Illegal und dringend" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Bild" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Bild-Alt-Text" +#~ msgid "Image alt text" +#~ msgstr "Bild-Alt-Text" #: src/view/com/util/UserAvatar.tsx:311 #: src/view/com/util/UserBanner.tsx:118 #~ msgid "Image options" #~ msgstr "Bild-Optionen" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3176,7 +3324,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Gib den Code ein, den du per E-Mail erhalten hast, um dein Passwort zurückzusetzen." @@ -3196,7 +3344,7 @@ msgstr "Bestätigungscode für die Kontolöschung eingeben" msgid "Input name for app password" msgstr "Namen für das App-Passwort eingeben" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Neues Passwort eingeben" @@ -3204,7 +3352,7 @@ msgstr "Neues Passwort eingeben" msgid "Input password for account deletion" msgstr "Passwort für die Kontolöschung eingeben" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "" @@ -3212,15 +3360,15 @@ msgstr "" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Passwort, das an {identifier} gebunden ist, eingeben" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Benutzernamen oder E-Mail-Adresse eingeben, die du bei der Anmeldung verwendet hast" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Gib dein Passwort ein" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "" @@ -3228,15 +3376,19 @@ msgstr "" msgid "Input your user handle" msgstr "Gib deinen Handle ein" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3245,12 +3397,12 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Ungültiger oder nicht unterstützter Beitragrekord" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Ungültiger Benutzername oder Passwort" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3258,7 +3410,7 @@ msgstr "" msgid "Invite a Friend" msgstr "Einen Freund einladen" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Einladungscode" @@ -3286,39 +3438,48 @@ msgstr "" msgid "Invites, but personal" msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Es zeigt die Beiträge der Personen an, denen du folgst, sobald sie erscheinen." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Jobs" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Journalismus" @@ -3326,18 +3487,23 @@ msgstr "Journalismus" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -3358,25 +3524,30 @@ msgstr "" msgid "Language selection" msgstr "Sprachauswahl" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Spracheinstellungen" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Spracheinstellungen" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Sprachen" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + #: src/view/com/auth/create/StepHeader.tsx:20 #~ msgid "Last step!" #~ msgstr "Letzter Schritt!" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "" @@ -3384,30 +3555,35 @@ msgstr "" #~ msgid "Learn more" #~ msgstr "Mehr erfahren" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Mehr erfahren" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Erfahre mehr über diese Warnung" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "" @@ -3428,7 +3604,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Lass alle Kontrollkästchen deaktiviert, um alle Sprachen zu sehen." @@ -3444,16 +3620,16 @@ msgstr "noch übrig." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "Der Legacy-Speicher wurde gelöscht, du musst die App jetzt neu starten." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Lass uns dein Passwort zurücksetzen!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Los geht's!" @@ -3462,8 +3638,7 @@ msgstr "Los geht's!" #~ msgid "Library" #~ msgstr "Bibliothek" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Hell" @@ -3480,21 +3655,21 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Diesen Feed liken" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Geliked von" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Geliked von" @@ -3520,7 +3695,7 @@ msgstr "hat deinen benutzerdefinierten Feed geliked" msgid "liked your post" msgstr "hat deinen Beitrag geliked" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Likes" @@ -3528,24 +3703,24 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes für diesen Beitrag" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Liste" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Listenbild" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Liste blockiert" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Liste von {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Liste gelöscht" @@ -3553,32 +3728,31 @@ msgstr "Liste gelöscht" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Liste stummgeschaltet" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Name der Liste" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Liste entblockiert" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Listenstummschaltung aufgehoben" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listen" @@ -3603,22 +3777,22 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Neue Mitteilungen laden" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Neue Beiträge laden" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Wird geladen..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Systemprotokoll" @@ -3634,19 +3808,27 @@ msgstr "" msgid "Log out" msgstr "Abmelden" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Sichtbarkeit für abgemeldete Benutzer" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Bei einem Konto anmelden, das nicht aufgelistet ist" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Im Format XXXXX-XXXXX" @@ -3666,7 +3848,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -3691,30 +3873,35 @@ msgstr "" #~ msgid "May only contain letters and numbers" #~ msgstr "Darf nur Buchstaben und Zahlen enthalten" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Medien" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "erwähnte Benutzer" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Erwähnte Benutzer" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menü" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -3722,23 +3909,23 @@ msgstr "" msgid "Message from server: {0}" msgstr "Nachricht vom Server: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" @@ -3755,63 +3942,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderation" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderationsliste von {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Moderationsliste von <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Moderationsliste von dir" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Moderationsliste erstellt" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Moderationsliste aktualisiert" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslisten" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Moderationswerkzeuge" @@ -3820,7 +4007,7 @@ msgstr "Moderationswerkzeuge" msgid "Moderator has chosen to set a general warning on the content." msgstr "Der Moderator hat beschlossen, eine allgemeine Warnung vor dem Inhalt auszusprechen." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Mehr" @@ -3828,19 +4015,20 @@ msgstr "Mehr" msgid "More feeds" msgstr "Mehr Feeds" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Mehr Optionen" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Beliebteste Antworten zuerst" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" @@ -3848,30 +4036,30 @@ msgstr "" #~ msgid "Must be at least 3 characters" #~ msgstr "Muss mindestens 3 Zeichen lang sein" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Stummschalten" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -msgid "Mute" -msgstr "Stummschalten" - #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "{truncatedTag} stummschalten" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Konto stummschalten" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Konten stummschalten" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Alle {displayTag}-Beiträge stummschalten" @@ -3892,7 +4080,7 @@ msgstr "" msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Liste stummschalten" @@ -3901,7 +4089,7 @@ msgstr "Liste stummschalten" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Diese Konten stummschalten?" @@ -3933,13 +4121,13 @@ msgstr "Dieses Wort nur in Tags stummschalten" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Wörter und Tags stummschalten" @@ -3947,16 +4135,16 @@ msgstr "Wörter und Tags stummschalten" #~ msgid "Muted" #~ msgstr "Stummgeschaltet" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Stummgeschaltete Konten" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Stummgeschaltete Konten" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Bei stummgeschalteten Konten werden dazugehörige Beiträge aus deinem Feed und deinen Mitteilungen entfernt. Stummschaltungen sind völlig privat." @@ -3964,32 +4152,32 @@ msgstr "Bei stummgeschalteten Konten werden dazugehörige Beiträge aus deinem F msgid "Muted by \"{0}\"" msgstr "Stummgeschaltet über \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Stummgeschaltete Wörter und Tags" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Stummschaltung ist privat. Stummgeschaltete Konten können mit dir interagieren, aber du siehst ihre Beiträge nicht und erhältst keine Mitteilungen von ihnen." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Mein Geburtstag" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Meine Feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mein Profil" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Meine gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Meine gespeicherten Feeds" @@ -3998,11 +4186,11 @@ msgstr "Meine gespeicherten Feeds" #~ msgstr "mein-server.de" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Name" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Name ist erforderlich" @@ -4014,28 +4202,32 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Natur" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navigiert zum nächsten Bildschirm" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Navigiert zu deinem Profil" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "" @@ -4050,7 +4242,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "Verliere nie den Zugriff auf deine Follower und Daten." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Verliere nie den Zugriff auf deine Follower oder Daten." @@ -4058,30 +4250,34 @@ msgstr "Verliere nie den Zugriff auf deine Follower oder Daten." #~ msgid "Nevermind" #~ msgstr "Egal" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Neu" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Neu" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Neue Moderationsliste" @@ -4093,22 +4289,22 @@ msgstr "Neues Passwort" msgid "New Password" msgstr "Neues Passwort" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Neuer Beitrag" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Neuer Beitrag" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Neuer Beitrag" @@ -4117,30 +4313,30 @@ msgstr "Neuer Beitrag" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Neue Benutzerliste" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Neueste Antworten zuerst" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Aktuelles" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4155,35 +4351,39 @@ msgstr "Weiter" msgid "Next image" msgstr "Nächstes Bild" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Nein" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Keine Beschreibung" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "{0} wird nicht mehr gefolgt" @@ -4191,11 +4391,11 @@ msgstr "{0} wird nicht mehr gefolgt" msgid "No longer than 253 characters" msgstr "Nicht länger als 253 Zeichen" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4203,10 +4403,8 @@ msgstr "" msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4214,16 +4412,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." +msgstr "Keine Beiträge bisher." + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Kein Ergebnis" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4231,19 +4437,18 @@ msgstr "" msgid "No results found" msgstr "Keine Ergebnisse gefunden" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für \"{query}\" gefunden" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Keine Ergebnisse für {query} gefunden" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "" @@ -4251,12 +4456,12 @@ msgstr "" #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Nein danke" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Niemand" @@ -4264,12 +4469,21 @@ msgstr "Niemand" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4281,8 +4495,8 @@ msgstr "Nicht-sexuelle Nacktheit" #~ msgid "Not Applicable." #~ msgstr "Unzutreffend." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Nicht gefunden" @@ -4291,49 +4505,48 @@ msgstr "Nicht gefunden" msgid "Not right now" msgstr "Nicht jetzt" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einstellung schränkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung möglicherweise nicht. Deine Inhalte werden abgemeldeten Nutzern möglicherweise weiterhin in anderen Apps und Websites angezeigt." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Mitteilungen" @@ -4341,11 +4554,12 @@ msgstr "Mitteilungen" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Nacktheit" @@ -4365,29 +4579,28 @@ msgstr "" msgid "Off" msgstr "Aus" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh nein!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Oh nein, da ist etwas schief gelaufen." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Okay" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Älteste Antworten zuerst" @@ -4399,11 +4612,11 @@ msgstr "Älteste Antworten zuerst" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" @@ -4411,13 +4624,13 @@ msgstr "Onboarding zurücksetzen" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" -msgstr "" +msgstr "Nur .jpg- und .png-Dateien werden unterstützt" #: src/components/WhoCanReply.tsx:245 #~ msgid "Only {0} can reply" @@ -4431,7 +4644,11 @@ msgstr "Nur {0} kann antworten." msgid "Only contains letters, numbers, and hyphens" msgstr "Enthält nur Buchstaben, Nummern und Bindestriche" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4440,23 +4657,23 @@ msgid "Oops, something went wrong!" msgstr "Huch, da ist etwas schief gelaufen!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Huch!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Öffnen" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" @@ -4464,22 +4681,26 @@ msgstr "" #~ msgid "Open content filtering settings" #~ msgstr "Inhaltsfiltereinstellungen öffnen" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Links mit In-App-Browser öffnen" @@ -4487,7 +4708,7 @@ msgstr "Links mit In-App-Browser öffnen" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" @@ -4499,20 +4720,20 @@ msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" msgid "Open navigation" msgstr "Navigation öffnen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Beitragsoptionsmenü öffnen" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Storybook öffnen" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "" @@ -4520,15 +4741,19 @@ msgstr "" msgid "Opens {numItems} options" msgstr "Öffnet {numItems} Optionen" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag" @@ -4536,27 +4761,27 @@ msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Öffnet eine erweiterte Liste der Benutzer in dieser Mitteilung" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Öffnet die Kamera auf dem Gerät" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Öffnet den Beitragsverfasser" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Öffnet die konfigurierbaren Spracheinstellungen" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Öffnet die Gerätefotogalerie" @@ -4564,17 +4789,17 @@ msgstr "Öffnet die Gerätefotogalerie" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Öffnet den Editor für Anzeigename, Avatar, Hintergrundbild und Beschreibung" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Öffnet die Einstellungen für externe eingebettete Medien" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Öffnet den Vorgang, ein neuen Bluesky Konto anzulegen" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Öffnet den Vorgang, sich mit einem bestehenden Bluesky Konto anzumelden" @@ -4594,11 +4819,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Öffnet die Liste der Einladungscodes" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4606,31 +4831,31 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Öffnet ein Modal, um die Löschung des Kontos zu bestätigen. Erfordert einen E-Mail-Code." -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Öffnet das Modal für die Verwendung einer benutzerdefinierten Domain" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Öffnet die Moderationseinstellungen" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" @@ -4639,11 +4864,11 @@ msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Öffnet den Bildschirm zum Bearbeiten gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Öffnet den Bildschirm mit allen gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "" @@ -4651,7 +4876,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Öffnet die Einstellungsseite für das App-Passwort" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "" @@ -4667,25 +4892,25 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Öffnet die Storybook-Seite" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Öffnet die Systemprotokollseite" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Öffnet die Thread-Einstellungen" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -4693,8 +4918,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Option {0} von {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "" @@ -4702,7 +4927,7 @@ msgstr "" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Oder kombiniere diese Optionen:" @@ -4715,36 +4940,37 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" -msgstr "" +msgstr "Andere" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Anderes Konto" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" -msgstr "" +msgstr "Andere Accounts" #: src/view/com/composer/select-language/SelectLangBtn.tsx:92 msgid "Other..." msgstr "Andere..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "" +msgstr "Unsere Moderatoren haben Berichte geprüft und beschlossen, Ihren Chat-Zugriff auf Bluesky zu deaktivieren." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Seite nicht gefunden" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Seite nicht gefunden" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4754,42 +4980,42 @@ msgstr "Passwort" msgid "Password Changed" msgstr "" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Passwort aktualisiert" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Passwort aktualisiert!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Die Erlaubnis zum Zugriff auf die Kamerarolle ist erforderlich." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Die Berechtigung zum Zugriff auf die Kamerarolle wurde verweigert. Bitte aktiviere sie in deinen Systemeinstellungen." @@ -4798,42 +5024,51 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Haustiere" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Bilder, die für Erwachsene bestimmt sind." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Angeheftete Feeds" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "{0} abspielen" @@ -4842,21 +5077,21 @@ msgstr "{0} abspielen" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Video abspielen" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Spielt das GIF ab" @@ -4865,7 +5100,7 @@ msgid "Please choose your handle." msgstr "Bitte wähle deinen Handle." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Bitte wähle dein Passwort." @@ -4890,11 +5125,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Bitte gib ein gültiges Wort, einen Tag oder eine Phrase zum Stummschalten ein" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Bitte gib deine E-Mail ein." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -4902,16 +5137,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Bitte gib auch dein Passwort ein:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -4925,15 +5160,16 @@ msgid "Please Verify Your Email" msgstr "Bitte verifiziere deine E-Mail" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politik" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Porno" @@ -4941,8 +5177,8 @@ msgstr "Porno" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Beitrag" @@ -4956,17 +5192,21 @@ msgstr "Beitrag" msgid "Post by {0}" msgstr "Beitrag von {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Beitrag von @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Beitrag gelöscht" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Beitrag ausgeblendet" @@ -4981,7 +5221,7 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -4989,7 +5229,7 @@ msgstr "" msgid "Post language" msgstr "Beitragssprache" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Beitragssprachen" @@ -4998,12 +5238,20 @@ msgstr "Beitragssprachen" msgid "Post not found" msgstr "Beitrag nicht gefunden" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "Beiträge" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Beiträge" @@ -5027,7 +5275,7 @@ msgstr "Potenziell irreführender Link" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5037,8 +5285,8 @@ msgstr "" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -5055,79 +5303,83 @@ msgstr "" msgid "Previous image" msgstr "Vorheriges Bild" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Primäre Sprache" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Priorisiere deine Follower" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privatsphäre" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Datenschutzerklärung" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Wird bearbeitet..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profil aktualisiert" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Schütze dein Konto, indem du deine E-Mail bestätigst." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Öffentlich" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Öffentliche, gemeinsam nutzbare Listen von Nutzern, die du sta­pel­wei­se stummschalten oder blockieren kannst." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Öffentliche, gemeinsam nutzbare Listen, die Feeds steuern können." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Beitrag veröffentlichen" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Beitrag veröffentlichen" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Antwort veröffentlichen" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Antwort veröffentlichen" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5145,8 +5397,8 @@ msgstr "" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5162,32 +5414,32 @@ msgstr "Beitrag zitieren" #~ msgid "Quote Post" #~ msgstr "Beitrag zitieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5195,16 +5447,16 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Zufällig (\"Poster's Roulette\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Verhältnisse" +#~ msgid "Ratios" +#~ msgstr "Verhältnisse" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5212,27 +5464,29 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" -msgstr "" +msgstr "Grund: " #: src/components/dms/MessageReportDialog.tsx:149 #~ msgid "Reason: {0}" -#~ msgstr "" +#~ msgstr "Grund: {0}" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "" @@ -5244,26 +5498,25 @@ msgstr "" #~ msgid "Recommended Users" #~ msgstr "Empfohlene Benutzer" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" -msgstr "" +msgstr "Benachrichtigungen aktualisieren" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5281,11 +5534,11 @@ msgstr "" msgid "Remove account" msgstr "Konto entfernen" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "" @@ -5293,7 +5546,7 @@ msgstr "" msgid "Remove Banner" msgstr "" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5309,13 +5562,14 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "" @@ -5328,7 +5582,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Bild entfernen" @@ -5340,24 +5594,24 @@ msgstr "Bild entfernen" msgid "Remove mute word from your list" msgstr "Stummgeschaltetes Wort aus deiner Liste entfernen" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Repost entfernen" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5373,16 +5627,16 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Aus der Liste entfernt" @@ -5396,8 +5650,8 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "" @@ -5405,13 +5659,13 @@ msgstr "" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Entfernt Standard-Miniaturansicht von {0}" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5422,7 +5676,7 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Antworten" @@ -5442,7 +5696,7 @@ msgstr "" #~ msgid "Replies to this thread are disabled" #~ msgstr "Antworten auf diesen Thread sind deaktiviert" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Antworten" @@ -5461,11 +5715,11 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -5475,33 +5729,33 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "Antwort an <0/>" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -5520,8 +5774,8 @@ msgstr "" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Konto melden" @@ -5531,16 +5785,16 @@ msgstr "Konto melden" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Feed melden" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Liste melden" @@ -5548,13 +5802,13 @@ msgstr "Liste melden" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Beitrag melden" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -5570,8 +5824,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -5588,9 +5842,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Repost" @@ -5600,19 +5854,19 @@ msgstr "Repost" msgid "Repost" msgstr "Erneut veröffentlichen" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Reposten oder Beitrag zitieren" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Repostet von" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Repostet von {0}" @@ -5620,12 +5874,12 @@ msgstr "Repostet von {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repostet von <0/>" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -5647,7 +5901,7 @@ msgstr "Änderung anfordern" msgid "Request Code" msgstr "Code anfordern" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Alt-Text vor der Beitragsveröffentlichung erforderlich machen" @@ -5655,20 +5909,26 @@ msgstr "Alt-Text vor der Beitragsveröffentlichung erforderlich machen" msgid "Require email code to log into your account" msgstr "E-Mail-Code zum Anmelden erforderlich machen" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Für diesen Anbieter erforderlich" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -5684,12 +5944,12 @@ msgstr "Code zurücksetzen" #~ msgid "Reset onboarding" #~ msgstr "Onboarding zurücksetzen" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Onboardingstatus zurücksetzen" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Passwort zurücksetzen" @@ -5697,20 +5957,20 @@ msgstr "Passwort zurücksetzen" #~ msgid "Reset preferences" #~ msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Setzt den Onboardingstatus zurück" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Einstellungen zurücksetzen" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Versucht die Anmeldung erneut" @@ -5719,16 +5979,16 @@ msgstr "Versucht die Anmeldung erneut" msgid "Retries the last action, which errored out" msgstr "Wiederholung der letzten Aktion, bei der ein Fehler aufgetreten ist" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5742,51 +6002,62 @@ msgstr "Wiederholen" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Zurück zur vorherigen Seite" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Speichern" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Speichern" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Alt-Text speichern" +#~ msgid "Save alt text" +#~ msgstr "Alt-Text speichern" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Änderungen speichern" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Änderungen speichern" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Handle-Änderung speichern" @@ -5795,24 +6066,24 @@ msgstr "Handle-Änderung speichern" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Bildausschnitt speichern" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Gespeicherte Feeds" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" @@ -5820,71 +6091,68 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Speichert alle Änderungen an Deinem Profil" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Speichert alle Änderungen an Deinem Profil" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Speichert Handle-Änderung in {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Wissenschaft" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Zum Anfang blättern" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Suche" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Nach \"{query}\" suchen" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Nach allen Beiträgen von @{authorHandle} mit dem Tag {displayTag} suchen" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Nach allen Beiträgen von @{authorHandle} mit dem Tag {displayTag} suchen" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Nach allen Beiträgen mit dem Tag {displayTag} suchen" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Nach allen Beiträgen mit dem Tag {displayTag} suchen" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5896,18 +6164,16 @@ msgstr "" msgid "Search for users" msgstr "Nach Nutzern suchen" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" -msgstr "" +msgstr "Suche nach GIFs" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "" @@ -5923,15 +6189,15 @@ msgstr "Siehe {truncatedTag}-Beiträge" msgid "See {truncatedTag} posts by user" msgstr "Siehe {truncatedTag}-Beiträge des Benutzers" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Siehe <0>{displayTag}-Beiträge" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Siehe <0>{displayTag}-Beiträge von diesem Benutzer" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" @@ -5940,7 +6206,7 @@ msgstr "" #~ msgid "See profile" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Siehe diesen Leitfaden" @@ -5948,7 +6214,7 @@ msgstr "Siehe diesen Leitfaden" #~ msgid "See what's next" #~ msgstr "Schau, was als nächstes kommt" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -5958,21 +6224,21 @@ msgstr "Wähle {item}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" -msgstr "" +msgstr "Wähle eine Farbe" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" -msgstr "" +msgstr "Account wählen" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" -msgstr "" +msgstr "Einen Avatar auswählen" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" -msgstr "" +msgstr "Ein Emoji auswählen" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Von einem bestehenden Konto auswählen" @@ -5980,7 +6246,7 @@ msgstr "Von einem bestehenden Konto auswählen" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -5988,15 +6254,15 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." -msgstr "" +msgstr "Sprache auswählen..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" -msgstr "" +msgstr "Sprachen auswählen" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "" @@ -6013,7 +6279,7 @@ msgstr "Wähle Option {i} von {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "Wähle unten einige Konten aus, denen du folgen möchtest" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6021,11 +6287,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Wähle den Dienst aus, der deine Daten hostet." @@ -6033,7 +6299,7 @@ msgstr "Wähle den Dienst aus, der deine Daten hostet." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Wähle aus der folgenden Liste die themenbezogenen Feeds aus, die du verfolgen möchtest" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6045,7 +6311,7 @@ msgstr "" #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Wähle aus, was du sehen (oder nicht sehen) möchtest, und wir kümmern uns um den Rest." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. Wenn du keine Sprachen auswählst, werden alle Sprachen angezeigt." @@ -6053,19 +6319,19 @@ msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. We #~ msgid "Select your app language for the default text to display in the app" #~ msgstr "Wählen deine App-Sprache für den Standardtext aus, der in der App angezeigt werden soll" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." -msgstr "" +msgstr "Wählen Sie Ihre App-Sprache für den Standardtext aus, der in der App angezeigt werden soll." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" -msgstr "" +msgstr "Wähle dein Geburtsdatum" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Wähle aus den folgenden Optionen deine Interessen aus" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus." @@ -6081,6 +6347,14 @@ msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus." msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "Bestätigungs-E-Mail senden" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6095,41 +6369,41 @@ msgctxt "action" msgid "Send Email" msgstr "E-Mail senden" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Feedback senden" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" -msgstr "" +msgstr "Nachricht senden" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" -msgstr "" +msgstr "Bericht senden" #: src/view/com/modals/report/SendReportButton.tsx:45 #~ msgid "Send Report" #~ msgstr "Bericht senden" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6137,7 +6411,7 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "Sendet eine E-Mail mit Bestätigungscode für die Kontolöschung" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Server-Adresse" @@ -6151,7 +6425,7 @@ msgstr "Server-Adresse" #~ msgid "Set Age" #~ msgstr "Alter festlegen" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "" @@ -6175,7 +6449,7 @@ msgstr "" #~ msgid "Set dark theme to the dim theme" #~ msgstr "Dunkelmodus auf den gedimmten Modus setzen" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Neues Passwort festlegen" @@ -6183,23 +6457,23 @@ msgstr "Neues Passwort festlegen" #~ msgid "Set password" #~ msgstr "Passwort festlegen" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Setze diese Einstellung auf \"Nein\", um alle Zitatbeiträge aus deinem Feed auszublenden. Reposts sind weiterhin sichtbar." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Antworten aus deinem Feed auszublenden." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed auszublenden." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Setze diese Einstellung auf \"Ja\", um Antworten in einer Thread-Ansicht anzuzeigen. Dies ist eine experimentelle Funktion." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem Following-Feed anzuzeigen. Dies ist eine experimentelle Funktion." @@ -6207,7 +6481,7 @@ msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherte msgid "Set up your account" msgstr "Dein Konto einrichten" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Legt deinen Bluesky-Benutzernamen fest" @@ -6231,7 +6505,7 @@ msgstr "Legt deinen Bluesky-Benutzernamen fest" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest" @@ -6240,31 +6514,30 @@ msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest" #~ msgstr "Legt den Hosting-Anbieter für das Zurücksetzen des Passworts fest" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" #: src/view/com/auth/create/Step1.tsx:97 #: src/view/com/auth/login/LoginForm.tsx:154 #~ msgid "Sets server for the Bluesky client" #~ msgstr "Setzt den Server für den Bluesky-Client" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Einstellungen" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Sexuelle Aktivitäten oder erotische Nacktheit." @@ -6272,20 +6545,19 @@ msgstr "Sexuelle Aktivitäten oder erotische Nacktheit." msgid "Sexually Suggestive" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Teilen" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Teilen" @@ -6298,28 +6570,28 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Feed teilen" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6337,7 +6609,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6349,7 +6621,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6357,19 +6629,23 @@ msgstr "" msgid "Shares the linked website" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Anzeigen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Trotzdem anzeigen" @@ -6395,8 +6671,8 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -6404,14 +6680,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Mehr anzeigen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -6419,11 +6695,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Beiträge aus meinen Feeds anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Zitatbeiträge anzeigen" @@ -6439,11 +6715,11 @@ msgstr "Zitatbeiträge anzeigen" #~ msgid "Show re-posts in Following feed" #~ msgstr "Reposts im Following-Feed anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Antworten anzeigen" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antworten an." @@ -6455,12 +6731,12 @@ msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antwort #~ msgid "Show replies in Following feed" #~ msgstr "Antworten in folgendem Feed anzeigen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Reposts anzeigen" @@ -6468,7 +6744,7 @@ msgstr "Reposts anzeigen" #~ msgid "Show reposts in Following" #~ msgstr "Reposts im Following-Feed anzeigen" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Den Inhalt anzeigen" @@ -6490,27 +6766,26 @@ msgstr "" #~ msgstr "Zeigt eine Liste von Benutzern, die diesem Benutzer ähnlich sind." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Zeigt Beiträge von {0} in deinem Feed" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Zeigt Beiträge von {0} in deinem Feed" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Anmelden" @@ -6520,11 +6795,11 @@ msgstr "Anmelden" #~ msgid "Sign In" #~ msgstr "Anmelden" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Anmelden als {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Anmelden als..." @@ -6540,42 +6815,41 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Abmelden" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Registrieren" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Registriere dich oder melden dich an, um an der Diskussion teilzunehmen" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Registriere dich oder melden dich an, um an der Diskussion teilzunehmen" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Anmelden erforderlich" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Angemeldet als" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Angemeldet als @{0}" @@ -6587,8 +6861,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Meldet {0} von Bluesky ab" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -6596,17 +6870,22 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Überspringen" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Diesen Schritt überspringen" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Software-Entwicklung" @@ -6622,7 +6901,7 @@ msgstr "" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -6631,41 +6910,41 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Es ist ein Fehler aufgetreten." -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Antworten sortieren" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Antworten auf denselben Beitrag sortieren nach:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "" +msgid "Source:" +msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6677,49 +6956,53 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Sport" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Quadratische" +#~ msgid "Square" +#~ msgstr "Quadratische" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -6727,7 +7010,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Status-Seite" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" @@ -6735,7 +7018,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" @@ -6743,23 +7026,23 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Schritt {0} von {numSteps}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Einreichen" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Abonnieren" @@ -6767,7 +7050,7 @@ msgstr "Abonnieren" msgid "Subscribe to @{0} to use these labels:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "" @@ -6776,14 +7059,18 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Abonniere den {0} Feed" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Abonniere diese Liste" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" @@ -6796,18 +7083,19 @@ msgstr "" msgid "Suggested for you" msgstr "Vorgeschlagen für dich" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Suggestiv" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Support" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Konto wechseln" @@ -6815,20 +7103,21 @@ msgstr "Konto wechseln" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Wechseln zu {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Wechselt das Konto, in das du eingeloggt bist" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "System" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Systemprotokoll" @@ -6836,7 +7125,7 @@ msgstr "Systemprotokoll" #~ msgid "tag" #~ msgstr "Tag" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Tag-Menü: {displayTag}" @@ -6845,22 +7134,22 @@ msgid "Tags only" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Groß" +#~ msgid "Tall" +#~ msgstr "Groß" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -6882,7 +7171,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Technik" @@ -6890,23 +7179,27 @@ msgstr "Technik" msgid "Tell a joke!" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -6925,25 +7218,33 @@ msgstr "" msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Text-Eingabefeld" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "" @@ -6951,21 +7252,21 @@ msgstr "" msgid "That handle is already taken." msgstr "Dieser Handle ist bereits besetzt." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Das Konto kann nach der Entblockiert mit dir interagieren." @@ -6978,15 +7279,15 @@ msgstr "Das Konto kann nach der Entblockiert mit dir interagieren." msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Die Community-Richtlinien wurden nach <0/> verschoben" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" @@ -6999,7 +7300,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7024,30 +7325,35 @@ msgstr "Die folgenden Schritte helfen dir, dein Bluesky-Erlebnis anzupassen." msgid "The post may have been deleted." msgstr "Möglicherweise wurde der Post gelöscht." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Das Support-Formular wurde verschoben. Wenn du Hilfe benötigst, wende dich bitte an <0/> oder besuche {HELP_DESK_URL}, um mit uns Kontakt aufzunehmen." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Die Allgemeinen Geschäftsbedingungen wurden verschoben nach" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Es gibt viele Feeds zum Ausprobieren:" @@ -7056,23 +7362,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server. Bitte überprüfe deine Internetverbindung und versuche es erneut." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server. Bitte überprüfe deine Internetverbindung und versuche es erneut." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Es gab ein Problem beim Entfernen dieses Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Es gab ein Problem beim Entfernen dieses Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Es gab ein Problem bei der Aktualisierung deines Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Es gab ein Problem bei der Aktualisierung deines Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "" @@ -7080,15 +7385,18 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7098,21 +7406,25 @@ msgstr "Es gab ein Problem bei der Kontaktaufnahme mit deinem Server" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen von Mitteilungen. Tippe hier, um es erneut zu versuchen." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen der Beiträge. Tippe hier, um es erneut zu versuchen." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen der Liste. Tippe hier, um es erneut zu versuchen." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen deiner Listen. Tippe hier, um es erneut zu versuchen." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -7120,21 +7432,27 @@ msgstr "" #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Es gab ein Problem bei der Synchronisierung deiner Einstellungen mit dem Server" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Es gab ein Problem beim Abrufen deiner App-Passwörter" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Es gab ein Problem! {0}" @@ -7142,16 +7460,15 @@ msgstr "Es gab ein Problem! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Es ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Es gab ein unerwartetes Problem in der Anwendung. Bitte teile uns mit, wenn dies bei dir der Fall ist!" @@ -7163,11 +7480,11 @@ msgstr "Es gab einen Ansturm neuer Benutzer auf Bluesky! Wir werden dein Konto s #~ msgid "These are popular accounts you might like:" #~ msgstr "Dies sind beliebte Konten, die dir gefallen könnten:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Diese {screenDescription} wurde gekennzeichnet:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Dieses Konto hat die Benutzer aufgefordert, sich anzumelden, um dein Profil zu sehen." @@ -7179,15 +7496,15 @@ msgstr "" #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" @@ -7203,7 +7520,7 @@ msgstr "" msgid "This content has received a general warning from moderators." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Dieser Inhalt wird von {0} gehostet. Möchtest du externe Medien aktivieren?" @@ -7216,7 +7533,7 @@ msgstr "Dieser Inhalt ist nicht verfügbar, weil einer der beteiligten Benutzer msgid "This content is not viewable without a Bluesky account." msgstr "Dieser Inhalt ist ohne ein Bluesky-Konto nicht sichtbar." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" @@ -7224,7 +7541,7 @@ msgstr "" #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Diese Funktion befindet sich in der Beta-Phase. Du kannst mehr über Kontodepot-Exporte in <0>diesem Blogpost lesen." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -7243,8 +7560,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Benutzern folgen oder deine Spracheinstellungen anpassen." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7252,7 +7569,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Diese Informationen werden nicht an andere Benutzer weitergegeben." @@ -7264,11 +7581,11 @@ msgstr "Das ist wichtig für den Fall, dass du mal deine E-Mail ändern oder dei #~ msgid "This label was applied by {0}." #~ msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" @@ -7276,7 +7593,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7292,7 +7609,7 @@ msgstr "Dieser Link führt dich auf die folgende Website:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Diese Liste ist leer!" @@ -7304,16 +7621,16 @@ msgstr "" msgid "This name is already in use" msgstr "Dieser Name ist bereits in Gebrauch" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelöscht." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -7321,15 +7638,15 @@ msgstr "" #~ msgid "This post will be hidden from feeds." #~ msgstr "" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7337,7 +7654,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "" @@ -7402,16 +7719,16 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Thread-Einstellungen" @@ -7419,15 +7736,15 @@ msgstr "Thread-Einstellungen" #~ msgid "Thread settings updated" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Thread-Modus" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Thread-Einstellungen" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "" @@ -7435,18 +7752,22 @@ msgstr "" msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "Zwischen den Optionen für stummgeschaltete Wörter wechseln." @@ -7455,25 +7776,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Dieses Dropdown umschalten" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Verwandlungen" +#~ msgid "Transformations" +#~ msgstr "Verwandlungen" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Übersetzen" @@ -7482,40 +7803,40 @@ msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Liste entblocken" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Stummschaltung von Liste aufheben" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte überprüfe deine Internetverbindung." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -7523,14 +7844,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Entblocken" @@ -7540,17 +7861,17 @@ msgstr "Entblocken" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Konto entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7565,12 +7886,12 @@ msgstr "Nicht mehr folgen" #~ msgid "Unfollow" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "{0} nicht mehr folgen" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "" @@ -7582,31 +7903,31 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Like aufheben" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Stummschaltung aufheben" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Stummschaltung aufheben" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Stummschaltung von {truncatedTag} aufheben" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Stummschaltung von Konto aufheben" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Stummschaltung aller {displayTag}-Beiträge aufheben" @@ -7618,12 +7939,12 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Stummschaltung von Thread aufheben" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" @@ -7631,20 +7952,25 @@ msgstr "" #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Anheften aufheben" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Anheften der Moderationsliste aufheben" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" @@ -7652,7 +7978,7 @@ msgstr "" #~ msgid "Unsave" #~ msgstr "Speicherung aufheben" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "" @@ -7661,7 +7987,7 @@ msgstr "" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "" @@ -7669,7 +7995,7 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -7683,79 +8009,96 @@ msgid "Unwanted Sexual Content" msgstr "" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "{displayName} in Listen aktualisieren" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "{displayName} in Listen aktualisieren" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" #: src/lib/hooks/useOTAUpdate.ts:15 #~ msgid "Update Available" #~ msgstr "Update verfügbar" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Wird aktualisiert…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Hochladen einer Textdatei auf:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Verwende App-Passwörter, um dich bei anderen Bluesky-Clients anzumelden, ohne vollen Zugriff auf deinen Account oder dein Passwort zu geben." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Standardanbieter verwenden" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "In-App-Browser verwenden" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Meinen Standardbrowser verwenden" @@ -7763,7 +8106,7 @@ msgstr "Meinen Standardbrowser verwenden" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "" @@ -7804,36 +8147,36 @@ msgstr "Benutzer blockiert dich" #~ msgid "User handle" #~ msgstr "Benutzerhandle" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Benutzerliste von {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Benutzerliste von <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Benutzerliste von dir" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Benutzerliste erstellt" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Benutzerliste aktualisiert" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Benutzerlisten" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Benutzername oder E-Mail-Adresse" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Benutzer" @@ -7845,26 +8188,24 @@ msgstr "Benutzer" msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Benutzer in \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" @@ -7872,23 +8213,24 @@ msgstr "" #~ msgid "Verify {0}" #~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "E-Mail bestätigen" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Meine E-Mail bestätigen" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Meine E-Mail bestätigen" @@ -7897,14 +8239,15 @@ msgstr "Meine E-Mail bestätigen" msgid "Verify New Email" msgstr "Neue E-Mail bestätigen" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Überprüfe deine E-Mail" @@ -7913,21 +8256,21 @@ msgstr "Überprüfe deine E-Mail" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Videospiele" @@ -7935,11 +8278,15 @@ msgstr "Videospiele" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -7947,12 +8294,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Avatar von {0} ansehen" @@ -7965,15 +8312,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Debug-Eintrag anzeigen" @@ -7993,11 +8348,13 @@ msgstr "Vollständigen Thread ansehen" msgid "View information about these labels" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Profil ansehen" @@ -8005,28 +8362,28 @@ msgstr "Profil ansehen" msgid "View the avatar" msgstr "Avatar ansehen" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8053,11 +8410,11 @@ msgstr "" #~ msgid "We also think you'll like \"For You\" by Skygaze:" #~ msgstr "Wir glauben auch, dass dir \"For You\" von Skygaze gefallen wird:" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Wir konnten keine Ergebnisse für diesen Hashtag finden." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8065,11 +8422,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Wir schätzen {estimatedTime} bis dein Konto bereit ist." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Wir hoffen, dass du eine schöne Zeit hast. Denke daran, Bluesky ist:" @@ -8085,19 +8442,19 @@ msgstr "Wir haben keine Beiträge mehr von den Konten, denen du folgst. Hier ist #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Wir empfehlen unser \"Discover\" Feed:" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Die Verbindung konnte nicht hergestellt werden. Bitte versuche es erneut, um mit der Einrichtung deines Kontos fortzufahren. Wenn der Versuch weiterhin fehlschlägt, kannst du diesen Schritt überspringen." @@ -8109,19 +8466,23 @@ msgstr "Wir werden dich benachrichtigen, wenn dein Konto bereit ist." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Wir werden deinen Widerspruch unverzüglich prüfen." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gestalten." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Es tut uns leid, aber wir waren nicht in der Lage, diese Liste aufzulösen. Wenn das Problem weiterhin besteht, kontaktiere bitte den Ersteller der Liste, @{handleOrDid}." @@ -8129,16 +8490,16 @@ msgstr "Es tut uns leid, aber wir waren nicht in der Lage, diese Liste aufzulös msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter nicht laden. Bitte versuche es erneut." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten erneut." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Es tut uns leid! Wir können die Seite, nach der du gesucht hast, nicht finden." @@ -8146,7 +8507,7 @@ msgstr "Es tut uns leid! Wir können die Seite, nach der du gesucht hast, nicht #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8162,7 +8523,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Was sind deine Interessen?" @@ -8174,17 +8535,17 @@ msgstr "" #~ msgid "What is the issue with this {collectionName}?" #~ msgstr "Was ist das Problem mit diesem {collectionName}?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Was gibt's?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Welche Sprachen werden in diesem Beitrag verwendet?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen?" @@ -8194,8 +8555,8 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8210,7 +8571,7 @@ msgstr "Wer antworten kann" #~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8243,35 +8604,35 @@ msgid "Why should this user be reviewed?" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Breit" +#~ msgid "Wide" +#~ msgstr "Breit" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Beitrag verfassen" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Schreibe deine Antwort" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Schriftsteller" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Ja" @@ -8280,15 +8641,15 @@ msgstr "Ja" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8296,11 +8657,14 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" + #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8313,7 +8677,7 @@ msgstr "" msgid "You are in line." msgstr "Du befindest dich in der Warteschlange." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8321,6 +8685,10 @@ msgstr "" msgid "You are not following anyone." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8335,15 +8703,15 @@ msgstr "" #~ msgstr "Du kannst diese Einstellungen später ändern." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Du kannst dich jetzt mit deinem neuen Passwort anmelden." @@ -8355,7 +8723,7 @@ msgstr "" msgid "You do not have any followers." msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -8363,7 +8731,7 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Du hast noch keine Einladungscodes! Wir schicken dir welche, wenn du schon etwas länger bei Bluesky bist." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Du hast keine angehefteten Feeds." @@ -8371,7 +8739,7 @@ msgstr "Du hast keine angehefteten Feeds." #~ msgid "You don't have any saved feeds!" #~ msgstr "Du hast keine gespeicherten Feeds!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Du hast keine gespeicherten Feeds." @@ -8389,8 +8757,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "Du hast diesen Benutzer blockiert und kannst seine Inhalte nicht sehen." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8417,7 +8785,7 @@ msgstr "" #~ msgid "You have muted this user." #~ msgstr "Du hast diesen Benutzer stummgeschaltet." -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -8425,8 +8793,8 @@ msgstr "" msgid "You have no feeds." msgstr "Du hast keine Feeds." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Du hast keine Listen." @@ -8434,7 +8802,7 @@ msgstr "Du hast keine Listen." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "" @@ -8442,11 +8810,11 @@ msgstr "" #~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." #~ msgstr "Du hast noch keine Konten blockiert. Um ein Konto zu blockieren, gehe auf dessen Profil und wähle \"Konto blockieren\" aus dem Menü des Kontos aus." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Du hast noch keine App-Passwörter erstellt. Du kannst eines erstellen, indem du auf die Schaltfläche unten klickst." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "" @@ -8458,11 +8826,11 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -8499,7 +8867,11 @@ msgstr "" #~ msgid "You may only add up to 50 profiles" #~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "" @@ -8511,7 +8883,7 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Du musst 18 Jahre oder älter sein, um Inhalte für Erwachsene zu aktivieren." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -8519,12 +8891,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "" @@ -8532,47 +8903,51 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Du wirst keine Mitteilungen mehr für diesen Thread erhalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Du erhälst nun Mitteilungen für dieses Thread" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Du erhältst eine E-Mail mit einem \"Reset-Code\". Gib diesen Code hier ein und gib dann dein neues Passwort ein." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "" @@ -8591,7 +8966,7 @@ msgstr "Du bist in der Warteschlange" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Du kannst loslegen!" @@ -8604,15 +8979,15 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Konten, denen du folgen kannst." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Dein Konto" @@ -8620,15 +8995,15 @@ msgstr "Dein Konto" msgid "Your account has been deleted" msgstr "Dein Konto wurde gelöscht" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Dein Kontodepot, das alle öffentlichen Datensätze enthält, kann als \"CAR\"-Datei heruntergeladen werden. Diese Datei enthält keine Medieneinbettungen, wie z. B. Bilder, oder deine privaten Daten, welche separat abgerufen werden müssen." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Dein Geburtsdatum" @@ -8636,11 +9011,11 @@ msgstr "Dein Geburtsdatum" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Deine Wahl wird gespeichert, kann aber später in den Einstellungen geändert werden." @@ -8648,9 +9023,9 @@ msgstr "Deine Wahl wird gespeichert, kann aber später in den Einstellungen geä #~ msgid "Your default feed is \"Following\"" #~ msgstr "Dein Standard-Feed ist \"Following\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Deine E-Mail scheint ungültig zu sein." @@ -8675,7 +9050,7 @@ msgstr "Dein Following-Feed ist leer! Folge mehr Benutzern, um auf dem Laufenden msgid "Your full handle will be" msgstr "Dein vollständiger Handle lautet" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Dein vollständiger Handle lautet <0>@{0}" @@ -8687,15 +9062,15 @@ msgstr "Deine stummgeschalteten Wörter" msgid "Your password has been changed successfully!" msgstr "Dein Passwort wurde erfolgreich geändert!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Dein Beitrag wurde veröffentlicht" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Deine Beiträge, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Dein Profil" @@ -8703,14 +9078,14 @@ msgstr "Dein Profil" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Deine Antwort wurde veröffentlicht" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Dein Benutzerhandle" diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po new file mode 100644 index 0000000000..63b17a94ce --- /dev/null +++ b/src/locale/locales/en-GB/messages.po @@ -0,0 +1,7935 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en-GB\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-10-26 18:30+0000\n" +"Last-Translator: surfdude29 (@surfdude29.ispost.ing)\n" +"Language-Team: surfdude29\n" +"Plural-Forms: \n" + +#: src/screens/Messages/components/ChatListItem.tsx:130 +msgid "(contains embedded content)" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:150 +msgid "(no email)" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:232 +#: src/view/com/notifications/FeedItem.tsx:327 +msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:156 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:146 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:54 +msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:60 +msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:136 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:167 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:126 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 +msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:434 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:300 +msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:59 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:418 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 +msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:400 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 +msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 +msgid "{0} joined this week" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "{0} of {1}" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +msgid "{0} people have used this starter pack!" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:435 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:68 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "{0}'s favourite feeds and people – join me!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:47 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:158 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:148 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:138 +msgid "{0}m" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0}mo" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:128 +msgid "{0}s" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:183 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:207 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:213 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 +msgid "{following} following" +msgstr "" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 +msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:477 +msgid "{numUnreadNotifications} unread" +msgstr "" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:475 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:528 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:97 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:108 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:509 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:466 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:250 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 +msgid "Access navigation links and settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 +msgid "Access profile and other navigation links" +msgstr "" + +#: src/view/screens/Settings/index.tsx:464 +msgid "Accessibility" +msgstr "" + +#: src/view/screens/Settings/index.tsx:455 +msgid "Accessibility settings" +msgstr "" + +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 +msgid "Accessibility Settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 +msgid "Account" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:132 +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:145 +msgid "Account followed" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:108 +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:88 +msgid "Account Muted by List" +msgstr "" + +#: src/view/com/util/AccountDropdownBtn.tsx:43 +msgid "Account options" +msgstr "" + +#: src/view/com/util/AccountDropdownBtn.tsx:59 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:157 +msgid "Account unfollowed" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:98 +msgid "Account unmuted" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 +msgid "Add" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:577 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 +msgid "Add a content warning" +msgstr "" + +#: src/view/screens/ProfileList.tsx:930 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Add alt text (optional)" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 +msgid "Add App Password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word for configured settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:403 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:296 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 +msgid "Add to Lists" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:266 +msgid "Add to my feeds" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:125 +msgid "Added to my feeds" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:83 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:366 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:241 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 +msgid "Advanced" +msgstr "" + +#: src/state/shell/progress-guide.tsx:171 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:381 +msgid "All accounts have been followed!" +msgstr "" + +#: src/view/screens/Feeds.tsx:735 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 +msgid "Allow new messages from" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 +msgid "Allow replies from:" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:272 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 +msgid "Already have a code?" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +msgid "ALT" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 +msgid "Alt text" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:252 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:114 +msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:412 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:135 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 +msgid "An error occurred while selecting the video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:449 +msgid "An error occurred while uploading the video." +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +msgid "an unknown labeler" +msgstr "an unknown labeller" + +#: src/components/WhoCanReply.tsx:295 +#: src/view/com/notifications/FeedItem.tsx:231 +#: src/view/com/notifications/FeedItem.tsx:324 +msgid "and" +msgstr "" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 +msgid "Animals" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +msgid "Animated GIF" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "Anti-Social Behaviour" + +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:94 +msgid "App Language" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:232 +msgid "App password deleted" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:138 +msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:103 +msgid "App Password names must be at least 4 characters long." +msgstr "" + +#: src/view/screens/Settings/index.tsx:664 +msgid "App password settings" +msgstr "" + +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +msgid "Appeal" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:243 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 +msgid "Appearance" +msgstr "" + +#: src/view/screens/Settings/index.tsx:476 +msgid "Appearance settings" +msgstr "" + +#: src/Navigation.tsx:325 +msgid "Appearance Settings" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:283 +msgid "Are you sure you want to delete the app password \"{name}\"?" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:149 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:632 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:313 +msgid "Are you sure you want to remove {0} from your feeds?" +msgstr "" + +#: src/components/FeedCard.tsx:313 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:532 +msgid "Are you sure you'd like to discard this draft?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 +msgid "Are you writing in <0>{0}?" +msgstr "" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:170 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:173 +msgid "At least 3 characters" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 +msgid "Back" +msgstr "" + +#: src/view/screens/Settings/index.tsx:442 +msgid "Basics" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "Birthday" +msgstr "" + +#: src/view/screens/Settings/index.tsx:348 +msgid "Birthday:" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +msgid "Block" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Block account" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 +msgid "Block Account" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:324 +msgid "Block Account?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:643 +msgid "Block accounts" +msgstr "" + +#: src/view/screens/ProfileList.tsx:747 +msgid "Block list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:742 +msgid "Block these accounts?" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 +msgid "Blocked Accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:336 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:116 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:412 +msgid "Blocked post." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:173 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "Blocking does not prevent this labeller from placing labels on your account." + +#: src/view/screens/ProfileList.tsx:744 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:333 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:172 +msgid "Blog" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 +msgid "Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Moderation/index.tsx:571 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "Bluesky will not show your profile and posts to logged-out users. Other apps may not honour this request. This does not make your account private." + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 +msgid "Books" +msgstr "" + +#: src/components/FeedInterstitials.tsx:350 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:483 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +msgid "Business" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "by —" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +msgid "By {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:164 +msgid "by <0/>" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:162 +msgid "by you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 +msgid "Camera" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:180 +msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." +msgstr "" + +#: src/components/Menu/index.tsx:235 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 +#: src/screens/Deactivated.tsx:161 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 +msgctxt "action" +msgid "Cancel" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 +msgid "Cancel account deletion" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:137 +msgid "Cancel change handle" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:155 +msgid "Cancel reactivation and log out" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 +msgid "Cancel search" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:106 +msgid "Cancels opening the linked website" +msgstr "" + +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 +msgid "Captions (.vtt)" +msgstr "Subtitles (.vtt)" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +msgid "Captions & alt text" +msgstr "Subtitles & alt text" + +#: src/view/com/modals/VerifyEmail.tsx:160 +msgid "Change" +msgstr "" + +#: src/view/screens/Settings/index.tsx:342 +msgctxt "action" +msgid "Change" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 +msgid "Change handle" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 +msgid "Change Handle" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:155 +msgid "Change my email" +msgstr "" + +#: src/view/screens/Settings/index.tsx:730 +msgid "Change password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:741 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 +msgid "Change post language to {0}" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:104 +msgid "Change Your Email" +msgstr "" + +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 +msgid "Chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:82 +msgid "Chat muted" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:84 +msgid "Chat unmuted" +msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:275 +msgid "Check your email for a login code and enter it here." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:231 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:199 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 +msgid "Choose for me" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:195 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 +msgid "Choose Service" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:271 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:201 +msgid "Choose your password" +msgstr "" + +#: src/view/screens/Settings/index.tsx:877 +msgid "Clear all storage data" +msgstr "" + +#: src/view/screens/Settings/index.tsx:880 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "" + +#: src/view/screens/Settings/index.tsx:878 +msgid "Clears all storage data" +msgstr "" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:208 +msgid "Click here for more information on deactivating your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:216 +msgid "Click here for more information." +msgstr "" + +#: src/components/TagMenu/index.web.tsx:152 +msgid "Click here to open tag menu for {tag}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +msgid "Click to disable quote posts of this post." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "" + +#: src/components/dms/MessageItem.tsx:240 +msgid "Click to retry failed message" +msgstr "" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:276 +msgid "Close dialog" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:169 +msgid "Close GIF dialog" +msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 +msgid "Close image" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:129 +msgid "Close image viewer" +msgstr "" + +#: src/view/shell/index.web.tsx:67 +msgid "Close navigation footer" +msgstr "" + +#: src/components/Menu/index.tsx:229 +#: src/components/TagMenu/index.tsx:261 +msgid "Close this dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:68 +msgid "Closes bottom navigation bar" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 +msgid "Closes viewer for header image" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:265 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:470 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Colour mode" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 +msgid "Comics" +msgstr "" + +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:284 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:144 +msgid "Complete the challenge" +msgstr "" + +#: src/view/com/composer/Composer.tsx:632 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:81 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:243 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 +#: src/view/com/modals/VerifyEmail.tsx:239 +#: src/view/com/modals/VerifyEmail.tsx:241 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 +msgid "Confirm" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 +msgid "Confirm Change" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 +msgid "Confirm content language settings" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:282 +msgid "Confirm delete account" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Confirm your age:" +msgstr "" + +#: src/screens/Moderation/index.tsx:305 +msgid "Confirm your birthdate" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 +msgid "Confirmation code" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 +msgid "Connecting..." +msgstr "" + +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 +msgid "Contact support" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:298 +msgid "Content filters" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 +msgid "Content Languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:83 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 +msgid "Continue" +msgstr "" + +#: src/components/AccountList.tsx:121 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:164 +msgid "Conversation deleted" +msgstr "" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "" + +#: src/view/screens/Settings/index.tsx:234 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 +#: src/view/com/modals/AddAppPasswords.tsx:80 +#: src/view/com/modals/ChangeHandle.tsx:313 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:136 +msgid "Copied!" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:215 +msgid "Copies app password" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:214 +msgid "Copy" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:467 +msgid "Copy {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 +msgid "Copy code" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:124 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:131 +msgid "Copy Link" +msgstr "" + +#: src/view/screens/ProfileList.tsx:487 +msgid "Copy link to list" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +msgid "Copy link to post" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 +msgid "Copy message text" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Copy QR code" +msgstr "" + +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:39 +msgid "Could not leave chat" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:104 +msgid "Could not load feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:1020 +msgid "Could not load list" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:56 +msgid "Could not process your video" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 +msgid "Create" +msgstr "" + +#: src/view/screens/Settings/index.tsx:403 +msgid "Create a new Bluesky account" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:153 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 +msgid "Create a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 +msgid "Create a starter pack for me" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 +msgid "Create Account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +msgid "Create an account" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:292 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 +msgid "Create another" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:243 +msgid "Create App Password" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:101 +msgid "Create report for {0}" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:252 +msgid "Created {0}" +msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:375 +msgid "Custom domain" +msgstr "" + +#: src/view/screens/Feeds.tsx:761 +#: src/view/screens/Search/Explore.tsx:391 +msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." +msgstr "" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 +msgid "Customize media from external sites." +msgstr "Customise media from external sites." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 +msgid "Customize who can interact with this post." +msgstr "Customise who can interact with this post." + +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 +msgid "Dark" +msgstr "" + +#: src/view/screens/Debug.tsx:70 +msgid "Dark mode" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:122 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:222 +msgid "Date of birth" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:773 +msgid "Deactivate account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:785 +msgid "Deactivate my account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:840 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:90 +msgid "Debug panel" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 +msgid "Delete" +msgstr "" + +#: src/view/screens/Settings/index.tsx:795 +msgid "Delete account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:105 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:245 +msgid "Delete app password" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:281 +msgid "Delete app password?" +msgstr "" + +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 +msgid "Delete chat declaration record" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:124 +msgid "Delete for me" +msgstr "" + +#: src/view/screens/ProfileList.tsx:530 +msgid "Delete List" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:147 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:122 +msgid "Delete message for me" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:285 +msgid "Delete my account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:807 +msgid "Delete My Account…" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:629 +msgid "Delete starter pack?" +msgstr "" + +#: src/view/screens/ProfileList.tsx:721 +msgid "Delete this list?" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +msgid "Delete this post?" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 +msgid "Deleted" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:398 +msgid "Deleted post." +msgstr "" + +#: src/view/screens/Settings/index.tsx:858 +msgid "Deletes the chat declaration record" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 +msgid "Description" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +msgid "Detach quote" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +msgid "Detach quote post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:175 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:325 +msgid "Did you want to say anything?" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Dim" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:109 +msgid "Disable autoplay for videos and GIFs" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:123 +msgid "Disable haptic feedback" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 +msgid "Disable subtitles" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 +msgid "Disabled" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 +msgid "Discard" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 +msgid "Discard draft?" +msgstr "" + +#: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:389 +msgid "Discover new feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:758 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1265 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:97 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 +msgid "Display name" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:159 +msgid "Doesn't begin or end with a hyphen" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "Domain Value" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:475 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 +#: src/view/com/auth/server-input/index.tsx:170 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 +msgid "Done" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 +msgid "Done{extraText}" +msgstr "" + +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:300 +msgid "Drop to add images" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:245 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:367 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:263 +msgid "e.g. Great Posters" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:264 +msgid "e.g. Spammers" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:292 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:293 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:146 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 +msgid "Edit image" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +msgid "Edit interaction settings" +msgstr "" + +#: src/view/screens/ProfileList.tsx:518 +msgid "Edit list details" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "Edit Moderation List" +msgstr "" + +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 +msgid "Edit My Feeds" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:565 +msgid "Edit starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "Edit User List" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:372 +msgid "Edit your starter pack" +msgstr "" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 +msgid "Education" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 +msgid "Email" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 +msgid "Email updated" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:106 +msgid "Email Updated" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:85 +msgid "Email verified" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "" + +#: src/view/screens/Settings/index.tsx:320 +msgid "Email:" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:101 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:343 +msgid "Enable adult content" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 +msgid "Enable media players for" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 +msgid "Enable subtitles" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:114 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:161 +msgid "Enter a name for this App Password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:113 +msgid "Enter Confirmation Code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:357 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:107 +msgid "Enter your birth date" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 +msgid "Enter your email address" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:42 +msgid "Enter your new email above" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:112 +msgid "Enter your new email address below." +msgstr "" + +#: src/screens/Login/index.tsx:98 +msgid "Enter your username and password" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:46 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:56 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 +msgid "Error:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 +msgid "Everybody" +msgstr "" + +#: src/components/WhoCanReply.tsx:67 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:213 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 +msgid "Everyone" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 +msgid "Exit fullscreen" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:293 +msgid "Exits account deletion process" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:138 +msgid "Exits handle change process" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:130 +msgid "Exits image view" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +msgid "Exits inputting search query" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:183 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:266 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 +msgid "External Media Preferences" +msgstr "" + +#: src/view/screens/Settings/index.tsx:637 +msgid "External media settings" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 +msgid "Failed to create app password." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 +msgid "Failed to create starter pack" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:186 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "" + +#: src/components/dms/MessageMenu.tsx:73 +msgid "Failed to delete message" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:697 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:224 +msgid "Failed to load GIFs" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:378 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "" + +#: src/components/dms/MessageItem.tsx:233 +msgid "Failed to send" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/components/FeedCard.tsx:276 +msgid "Failed to update feeds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:36 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "" + +#: src/Navigation.tsx:225 +msgid "Feed" +msgstr "" + +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:250 +msgid "Feed by {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:348 +msgid "Feedback" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 +msgid "Feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:205 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "" + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 +msgid "Feeds updated!" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "File Contents" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:42 +msgid "File saved successfully!" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Finalizing" +msgstr "Finalising" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/view/screens/Search/Search.tsx:612 +msgid "Find posts and users on Bluesky" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:52 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:55 +msgid "Fine-tune the discussion threads." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Finish" +msgstr "" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:267 +msgid "Flexible" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 +msgid "Follow" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:70 +msgctxt "action" +msgid "Follow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 +msgid "Follow {0}" +msgstr "" + +#: src/view/com/posts/AviFollowButton.tsx:68 +msgid "Follow {name}" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 +msgid "Follow Account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 +msgid "Follow all" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" +msgid "Follow Back" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:334 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "" + +#: src/components/KnownFollowers.tsx:231 +msgid "Followed by <0>{0}" +msgstr "" + +#: src/components/KnownFollowers.tsx:217 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:204 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#: src/components/KnownFollowers.tsx:186 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 +msgid "Followed users" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:207 +msgid "followed you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:205 +msgid "followed you back" +msgstr "" + +#: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 +msgid "Followers" +msgstr "" + +#: src/Navigation.tsx:186 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 +msgid "Following" +msgstr "" + +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 +msgid "Following {0}" +msgstr "" + +#: src/view/com/posts/AviFollowButton.tsx:50 +msgid "Following {name}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:540 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 +msgid "Following Feed Preferences" +msgstr "" + +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:129 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:233 +msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "" + +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:230 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:241 +msgid "Forgot?" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "" + +#: src/screens/Hashtag.tsx:117 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:273 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 +msgid "Fullscreen" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +msgid "Generate a starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:352 +msgid "Get help" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 +msgid "Get Started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + +#: src/components/MediaPreview.tsx:122 +msgid "GIF" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:234 +msgid "Give your profile a face" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 +msgid "Go Back" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:308 +msgid "Go back to the previous step" +msgstr "" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:264 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:167 +msgid "Go to profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:164 +msgid "Go to user's profile" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 +msgid "Graphic Media" +msgstr "" + +#: src/state/shell/progress-guide.tsx:161 +msgid "Half way there!" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:253 +msgid "Handle" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:118 +msgid "Haptics" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "" + +#: src/Navigation.tsx:332 +msgid "Hashtag" +msgstr "" + +#: src/components/RichText.tsx:225 +msgid "Hashtag: #{tag}" +msgstr "" + +#: src/screens/Signup/index.tsx:173 +msgid "Having trouble?" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:361 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:237 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:204 +msgid "Here is your app password." +msgstr "" + +#: src/components/ListCard.tsx:130 +msgid "Hidden list" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:122 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:477 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +msgid "Hide post for me" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +msgid "Hide reply for everyone" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +msgid "Hide reply for me" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/components/moderation/PostHider.tsx:79 +msgid "Hide the content" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +msgid "Hide this post?" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +msgid "Hide this reply?" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:468 +msgid "Hide user list" +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 +msgid "Home" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:407 +msgid "Host:" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 +msgid "Hosting provider" +msgstr "" + +#: src/view/com/modals/InAppBrowserConsent.tsx:41 +msgid "How should we open this link?" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 +msgid "I have a code" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:224 +msgid "I have a confirmation code" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:271 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 +msgid "I understand" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:185 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:110 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/view/screens/ProfileList.tsx:723 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:149 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:57 +msgid "Image" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Image saved to your camera roll!" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:121 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Input confirmation code for account deletion" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:175 +msgid "Input name for app password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:145 +msgid "Input new password" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:265 +msgid "Input password for account deletion" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:270 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Input the username or email address you used at signup" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:225 +msgid "Input your password" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:376 +msgid "Input your preferred hosting provider" +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:114 +msgid "Input your user handle" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 +msgid "Interaction limited" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:264 +msgid "Invalid or unsupported post record" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 +msgid "Invalid username or password" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:151 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:258 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:97 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:35 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "Invite your friends to follow your favourite feeds and people" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:32 +msgid "Invites, but personal" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1284 +msgid "Job ID: {0}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:177 +msgid "Jobs" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 +msgid "Join Bluesky" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 +msgid "Journalism" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:209 +msgid "Labeled by {0}." +msgstr "Labelled by {0}." + +#: src/components/moderation/ContentHider.tsx:207 +msgid "Labeled by the author." +msgstr "Labelled by the author." + +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:163 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:71 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:73 +msgid "Labels on your content" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:105 +msgid "Language selection" +msgstr "" + +#: src/view/screens/Settings/index.tsx:497 +msgid "Language settings" +msgstr "" + +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 +msgid "Language Settings" +msgstr "" + +#: src/view/screens/Settings/index.tsx:506 +msgid "Languages" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 +msgid "Latest" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:165 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 +msgid "Learn more about the moderation applied to this content." +msgstr "" + +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "" + +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:50 +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Leave conversation" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 +msgid "Leave them all unchecked to see any language." +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/SignupQueued.tsx:134 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Let's go!" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:105 +msgid "Light" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Like this feed" +msgstr "" + +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:211 +msgid "liked your custom feed" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:178 +msgid "liked your post" +msgstr "" + +#: src/view/screens/Profile.tsx:231 +msgid "Likes" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:204 +msgid "Likes on this post" +msgstr "" + +#: src/Navigation.tsx:192 +msgid "List" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:241 +msgid "List Avatar" +msgstr "" + +#: src/view/screens/ProfileList.tsx:422 +msgid "List blocked" +msgstr "" + +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:252 +msgid "List by {0}" +msgstr "" + +#: src/view/screens/ProfileList.tsx:459 +msgid "List deleted" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:126 +msgid "List has been hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:170 +msgid "List Hidden" +msgstr "" + +#: src/view/screens/ProfileList.tsx:396 +msgid "List muted" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:255 +msgid "List Name" +msgstr "" + +#: src/view/screens/ProfileList.tsx:435 +msgid "List unblocked" +msgstr "" + +#: src/view/screens/ProfileList.tsx:409 +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 +msgid "Lists" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:131 +msgid "Load more" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:219 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:217 +msgid "Load more suggested follows" +msgstr "" + +#: src/view/screens/Notifications.tsx:215 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 +msgid "Load new posts" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +msgid "Loading..." +msgstr "" + +#: src/Navigation.tsx:255 +msgid "Log" +msgstr "" + +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 +msgid "Log in or sign up" +msgstr "" + +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 +msgid "Log out" +msgstr "" + +#: src/screens/Moderation/index.tsx:480 +msgid "Logged-out visibility" +msgstr "" + +#: src/components/AccountList.tsx:65 +msgid "Login to account that is not listed" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 +msgid "Long press to open tag menu for #{tag}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 +msgid "Make one for me" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:79 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 +msgid "Mark as read" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 +msgid "Media" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/WhoCanReply.tsx:254 +msgid "mentioned users" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +msgid "Mentioned users" +msgstr "" + +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 +msgid "Menu" +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:62 +msgid "Message {0}" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 +msgid "Message deleted" +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:201 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:140 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 +msgid "Message is too long" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:318 +msgid "Message settings" +msgstr "" + +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 +msgid "Messages" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "" + +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 +msgid "Moderation" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:133 +msgid "Moderation details" +msgstr "" + +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/screens/ProfileList.tsx:902 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 +msgid "Moderation list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:177 +msgid "Moderation list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:163 +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:250 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:246 +msgid "moderation settings" +msgstr "" + +#: src/view/screens/Settings/index.tsx:522 +msgid "Moderation settings" +msgstr "" + +#: src/Navigation.tsx:245 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:219 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:619 +msgid "More" +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:55 +msgid "More feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 +msgid "More options" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:77 +msgid "Most-liked replies first" +msgstr "" + +#: src/screens/Onboarding/state.ts:92 +msgid "Movies" +msgstr "Films" + +#: src/screens/Onboarding/state.ts:93 +msgid "Music" +msgstr "" + +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "" + +#: src/components/TagMenu/index.web.tsx:116 +msgid "Mute {truncatedTag}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Mute Account" +msgstr "" + +#: src/view/screens/ProfileList.tsx:631 +msgid "Mute accounts" +msgstr "" + +#: src/components/TagMenu/index.tsx:205 +msgid "Mute all {displayTag} posts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Mute list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:732 +msgid "Mute these accounts?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +msgid "Mute thread" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +msgid "Mute words & tags" +msgstr "" + +#: src/screens/Moderation/index.tsx:265 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:116 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:90 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:235 +msgid "Muted words & tags" +msgstr "" + +#: src/view/screens/ProfileList.tsx:734 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 +msgid "My Birthday" +msgstr "" + +#: src/view/screens/Feeds.tsx:732 +msgid "My Feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:85 +msgid "My Profile" +msgstr "" + +#: src/view/screens/Settings/index.tsx:583 +msgid "My saved feeds" +msgstr "" + +#: src/view/screens/Settings/index.tsx:589 +msgid "My Saved Feeds" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/CreateOrEditList.tsx:270 +msgid "Name" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:135 +msgid "Name is required" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 +msgid "Nature" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:124 +msgid "Navigate to {0}" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:72 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:130 +msgid "Need to report a copyright violation?" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:255 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:508 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/screens/Lists.tsx:84 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/screens/ModerationModlists.tsx:80 +msgid "New" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 +msgid "New chat" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:232 +msgid "New Moderation List" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:213 +msgid "New password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:218 +msgid "New Password" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 +msgid "New post" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:311 +msgctxt "action" +msgid "New Post" +msgstr "" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:227 +msgid "New User List" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:74 +msgid "Newest replies first" +msgstr "" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 +msgid "News" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 +msgid "Next" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "No" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 +msgid "No description" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:392 +msgid "No DNS Panel" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:169 +msgid "No longer than 253 characters" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:116 +msgid "No messages yet" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:271 +msgid "No more conversations to show" +msgstr "" + +#: src/view/com/notifications/Feed.tsx:121 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:237 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:65 +msgid "No posts yet." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 +msgid "No result" +msgstr "" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 +msgid "No results" +msgstr "" + +#: src/components/Lists.tsx:215 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:513 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 +msgid "No results found for {query}" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:228 +msgid "No search results found for \"{search}\"." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 +msgid "Not Found" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 +msgid "Not right now" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Moderation/index.tsx:578 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:213 +msgid "Nothing here" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:42 +msgid "Notification Settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:117 +msgid "Notification sounds" +msgstr "" + +#: src/screens/Messages/Settings.tsx:114 +msgid "Notification Sounds" +msgstr "" + +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:122 +msgid "now" +msgstr "" + +#: src/components/dms/MessageItem.tsx:197 +msgid "Now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Nudity" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "Nudity or adult content not labelled as such" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +msgid "Off" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 +msgid "OK" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:38 +msgid "Okay" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:73 +msgid "Oldest replies first" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:75 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/view/screens/Settings/index.tsx:227 +msgid "Onboarding reset" +msgstr "" + +#: src/view/com/composer/Composer.tsx:739 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "" + +#: src/components/WhoCanReply.tsx:217 +msgid "Only {0} can reply." +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:152 +msgid "Only contains letters, numbers, and hyphens" +msgstr "" + +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:88 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:251 +msgid "Open" +msgstr "" + +#: src/view/com/posts/AviFollowButton.tsx:86 +msgid "Open {name} profile shortcut menu" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:286 +msgid "Open avatar creator" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 +msgid "Open conversation options" +msgstr "" + +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 +msgid "Open emoji picker" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:301 +msgid "Open feed options menu" +msgstr "" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 +msgid "Open links with in-app browser" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:87 +msgid "Open message options" +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +msgid "Open navigation" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +msgid "Open post options menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:551 +msgid "Open starter pack menu" +msgstr "" + +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 +msgid "Open storybook page" +msgstr "" + +#: src/view/screens/Settings/index.tsx:815 +msgid "Open system log" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:159 +msgid "Opens {numItems} options" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + +#: src/view/screens/Settings/index.tsx:456 +msgid "Opens accessibility settings" +msgstr "" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/screens/Settings/index.tsx:477 +msgid "Opens appearance settings" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +msgid "Opens camera on device" +msgstr "" + +#: src/view/screens/Settings/index.tsx:606 +msgid "Opens chat settings" +msgstr "" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 +msgid "Opens composer" +msgstr "" + +#: src/view/screens/Settings/index.tsx:498 +msgid "Opens configurable language settings" +msgstr "" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "" + +#: src/view/screens/Settings/index.tsx:638 +msgid "Opens external embeds settings" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign into your existing Bluesky account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "" + +#: src/view/screens/Settings/index.tsx:775 +msgid "Opens modal for account deactivation confirmation" +msgstr "" + +#: src/view/screens/Settings/index.tsx:797 +msgid "Opens modal for account deletion confirmation. Requires email code" +msgstr "" + +#: src/view/screens/Settings/index.tsx:732 +msgid "Opens modal for changing your Bluesky password" +msgstr "" + +#: src/view/screens/Settings/index.tsx:687 +msgid "Opens modal for choosing a new Bluesky handle" +msgstr "" + +#: src/view/screens/Settings/index.tsx:755 +msgid "Opens modal for downloading your Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/index.tsx:963 +msgid "Opens modal for email verification" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:269 +msgid "Opens modal for using custom domain" +msgstr "" + +#: src/view/screens/Settings/index.tsx:523 +msgid "Opens moderation settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:231 +msgid "Opens password reset form" +msgstr "" + +#: src/view/screens/Settings/index.tsx:584 +msgid "Opens screen with all saved feeds" +msgstr "" + +#: src/view/screens/Settings/index.tsx:665 +msgid "Opens the app password settings" +msgstr "" + +#: src/view/screens/Settings/index.tsx:541 +msgid "Opens the Following feed preferences" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:93 +msgid "Opens the linked website" +msgstr "" + +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 +msgid "Opens the storybook page" +msgstr "" + +#: src/view/screens/Settings/index.tsx:816 +msgid "Opens the system log page" +msgstr "" + +#: src/view/screens/Settings/index.tsx:562 +msgid "Opens the threads preferences" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 +msgid "Opens this profile" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 +msgid "Opens video picker" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:293 +msgid "Option {0} of {numItems}" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 +msgid "Optionally provide additional information below:" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Or combine these options:" +msgstr "" + +#: src/screens/Deactivated.tsx:211 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:194 +msgid "Or, log into one of your other accounts." +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:83 +msgid "Other account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:380 +msgid "Other accounts" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:92 +msgid "Other..." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Password" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:143 +msgid "Password Changed" +msgstr "" + +#: src/screens/Login/index.tsx:154 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 +msgid "Pause" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 +msgid "Pause video" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 +msgid "People" +msgstr "" + +#: src/Navigation.tsx:179 +msgid "People followed by @{0}" +msgstr "" + +#: src/Navigation.tsx:172 +msgid "People following @{0}" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:77 +msgid "Permission to access camera roll is required." +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:85 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 +msgid "Pets" +msgstr "" + +#: src/screens/Onboarding/state.ts:97 +msgid "Photography" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:168 +msgid "Pictures meant for adults." +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 +msgid "Pin to home" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:296 +msgid "Pin to Home" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 +msgid "Pinned Feeds" +msgstr "" + +#: src/view/screens/ProfileList.tsx:355 +msgid "Pinned to your feeds" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 +msgid "Play" +msgstr "" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 +msgid "Play {0}" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +msgid "Play or pause the GIF" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 +msgid "Play video" +msgstr "" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +msgid "Play Video" +msgstr "" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 +msgid "Plays the GIF" +msgstr "" + +#: src/screens/Signup/state.ts:217 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 +msgid "Please choose your password." +msgstr "" + +#: src/screens/Signup/state.ts:231 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:65 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:94 +msgid "Please enter a name for your app password. All spaces is not allowed." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:151 +msgid "Please enter a unique name for this App Password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:96 +msgid "Please enter your invite code." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:253 +msgid "Please enter your password as well:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:265 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:109 +msgid "Please Verify Your Email" +msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:481 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:196 +msgid "Post by {0}" +msgstr "" + +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 +msgid "Post by @{0}" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:212 +msgid "Post hidden" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 +msgid "Post interaction settings" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:88 +msgid "Post language" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 +msgid "Post Languages" +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "" + +#: src/components/TagMenu/index.tsx:252 +msgid "posts" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:68 +msgid "Posts hidden" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:60 +msgid "Potentially Misleading Link" +msgstr "" + +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "Press to change hosting provider" +msgstr "" + +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:124 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:188 +msgid "Primary Language" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:92 +msgid "Prioritize Your Follows" +msgstr "Prioritise Your Follows" + +#: src/view/screens/NotificationsSettings.tsx:60 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:621 +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Privacy" +msgstr "" + +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 +msgid "Privacy Policy" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 +msgid "Profile updated" +msgstr "" + +#: src/view/screens/Settings/index.tsx:976 +msgid "Protect your account by verifying your email." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:237 +msgid "Public" +msgstr "" + +#: src/view/screens/ModerationModlists.tsx:63 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "" + +#: src/view/screens/Lists.tsx:69 +msgid "Public, shareable lists which can drive feeds." +msgstr "" + +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:128 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:106 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:107 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +msgid "Quote post" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +msgid "Quote post was re-attached" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +msgid "Quote posts disabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 +msgid "Quote posts enabled" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 +msgid "Quote settings" +msgstr "" + +#: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 +msgid "Quotes" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:230 +msgid "Quotes of this post" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:81 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Reactivate your account" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:169 +msgid "Reason:" +msgstr "" + +#: src/view/screens/Search/Search.tsx:1056 +msgid "Recent Searches" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "" + +#: src/view/screens/Notifications.tsx:144 +msgid "Refresh notifications" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:198 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/view/com/feeds/FeedSourceCard.tsx:316 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/util/AccountDropdownBtn.tsx:61 +msgid "Remove" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/view/com/util/AccountDropdownBtn.tsx:26 +msgid "Remove account" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:403 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:155 +msgid "Remove Banner" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 +msgid "Remove feed?" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +#: src/view/com/feeds/FeedSourceCard.tsx:265 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 +msgid "Remove from my feeds" +msgstr "" + +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:311 +msgid "Remove from my feeds?" +msgstr "" + +#: src/view/com/util/AccountDropdownBtn.tsx:53 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:156 +msgid "Remove from saved feeds" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:200 +msgid "Remove image" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "" + +#: src/view/screens/Search/Search.tsx:1100 +msgid "Remove profile" +msgstr "" + +#: src/view/screens/Search/Search.tsx:1102 +msgid "Remove profile from search history" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 +msgid "Remove quote" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 +msgid "Remove repost" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 +msgid "Remove subtitle file" +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:211 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +msgid "Removed by author" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 +msgid "Removed by you" +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:138 +msgid "Removed from my feeds" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 +msgid "Removed from saved feeds" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 +msgid "Removed from your feeds" +msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +msgid "Removes quoted post" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "" + +#: src/view/screens/Profile.tsx:229 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:69 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:215 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/view/com/composer/Composer.tsx:708 +msgctxt "action" +msgid "Reply" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 +msgid "Reply settings" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:535 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:537 +msgctxt "description" +msgid "Reply to a post" +msgstr "" + +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 +msgctxt "description" +msgid "Reply to you" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +msgid "Reply visibility updated" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 +msgid "Report Account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 +msgid "Report conversation" +msgstr "" + +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 +msgid "Report feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Report List" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:130 +msgid "Report message" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +msgid "Report post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 +msgid "Report starter pack" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:43 +msgid "Report this content" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:56 +msgid "Report this feed" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:53 +msgid "Report this list" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 +msgid "Report this message" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:50 +msgid "Report this post" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +msgid "Report this starter pack" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:47 +msgid "Report this user" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 +msgctxt "action" +msgid "Repost" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Repost" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:294 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:313 +msgid "Reposted by <0><1/>" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:180 +msgid "reposted your post" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:209 +msgid "Reposts of this post" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 +msgid "Request Change" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 +msgid "Request Code" +msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:90 +msgid "Require alt text before posting" +msgstr "" + +#: src/view/screens/Settings/Email2FAToggle.tsx:51 +msgid "Require email code to log into your account" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:159 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 +msgid "Resend email" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:186 +msgid "Reset code" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:193 +msgid "Reset Code" +msgstr "" + +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "" + +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 +msgid "Reset preferences state" +msgstr "" + +#: src/view/screens/Settings/index.tsx:868 +msgid "Resets the onboarding state" +msgstr "" + +#: src/view/screens/Settings/index.tsx:848 +msgid "Resets the preferences state" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:296 +msgid "Retries login" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +msgid "Retry" +msgstr "" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "" + +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 +msgid "Returns to previous page" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 +msgctxt "action" +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +msgid "Save birthday" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:158 +msgid "Save handle change" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 +msgid "Save image" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:179 +msgid "Save QR code" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 +msgid "Save to my feeds" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:171 +msgid "Saved Feeds" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:95 +msgid "Saved to your camera roll" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 +msgid "Saved to your feeds" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:159 +msgid "Saves handle change to {handle}" +msgstr "" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 +msgid "Say hello!" +msgstr "" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:986 +msgid "Scroll to top" +msgstr "" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 +msgid "Search" +msgstr "" + +#: src/view/shell/desktop/Search.tsx:201 +msgid "Search for \"{query}\"" +msgstr "" + +#: src/view/screens/Search/Search.tsx:999 +msgid "Search for \"{searchText}\"" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:500 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 +msgid "Search for users" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:177 +msgid "Search GIFs" +msgstr "" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +msgid "Search profiles" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search Tenor" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:105 +msgid "Security Step Required" +msgstr "" + +#: src/components/TagMenu/index.web.tsx:77 +msgid "See {truncatedTag} posts" +msgstr "" + +#: src/components/TagMenu/index.web.tsx:94 +msgid "See {truncatedTag} posts by user" +msgstr "" + +#: src/components/TagMenu/index.tsx:132 +msgid "See <0>{displayTag} posts" +msgstr "" + +#: src/components/TagMenu/index.tsx:183 +msgid "See <0>{displayTag} posts by this user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:212 +msgid "See this guide" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 +msgid "Seek slider" +msgstr "" + +#: src/view/com/util/Selector.tsx:106 +msgid "Select {item}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "Select a colour" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/screens/Login/index.tsx:117 +msgid "Select from an existing account" +msgstr "" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 +msgid "Select language..." +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:301 +msgid "Select languages" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:29 +msgid "Select moderator" +msgstr "" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select option {i} of {numItems}" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:140 +msgid "Select the moderation service(s) to report to" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Select the service that hosts your data." +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 +msgid "Select video" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:283 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:97 +msgid "Select your app language for the default text to display in the app." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +msgid "Select your interests from the options below" +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:191 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 +msgid "Send Confirmation Email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:149 +msgid "Send email" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:162 +msgctxt "action" +msgid "Send Email" +msgstr "" + +#: src/view/shell/Drawer.tsx:341 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 +msgid "Send message" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 +msgid "Send report" +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:43 +msgid "Send report to {0}" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 +msgid "Send verification email" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +msgid "Send via direct message" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:151 +msgid "Sends email with confirmation code for account deletion" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:111 +msgid "Server address" +msgstr "" + +#: src/screens/Moderation/index.tsx:317 +msgid "Set birthdate" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:96 +msgid "Set new password" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:122 +msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:64 +msgid "Set this setting to \"No\" to hide all replies from your feed." +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:88 +msgid "Set this setting to \"No\" to hide all reposts from your feed." +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:117 +msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:158 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:254 +msgid "Sets Bluesky username" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 +msgid "Settings" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:172 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 +msgid "Share" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:176 +msgctxt "action" +msgid "Share" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 +msgid "Share anyway" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 +msgid "Share feed" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 +msgid "Share link" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Share Link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:88 +msgid "Share link dialog" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:415 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:100 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "Share your favourite feed!" + +#: src/Navigation.tsx:250 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:92 +msgid "Shares the linked website" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:122 +#: src/view/screens/Settings/index.tsx:352 +msgid "Show" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 +msgid "Show anyway" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show hidden replies" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:172 +msgid "Show list anyway" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 +msgid "Show More" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +msgid "Show more like this" +msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show muted replies" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:155 +msgid "Show Posts from My Feeds" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:119 +msgid "Show Quote Posts" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:61 +msgid "Show Replies" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:95 +msgid "Show replies by people you follow before all other replies." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +msgid "Show reply for everyone" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:85 +msgid "Show Reposts" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:130 +#: src/components/moderation/PostHider.tsx:79 +msgid "Show the content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "" + +#: src/components/AccountList.tsx:122 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign into Bluesky or create a new account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:433 +msgid "Sign out" +msgstr "" + +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 +msgid "Sign out of all accounts" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#: src/view/screens/Settings/index.tsx:362 +msgid "Signed in as" +msgstr "" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:218 +msgid "signed up with your starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 +msgid "Signup without a starter pack" +msgstr "" + +#: src/components/FeedInterstitials.tsx:316 +msgid "Similar accounts" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Skip" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 +msgid "Software Dev" +msgstr "" + +#: src/components/FeedInterstitials.tsx:447 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:70 +msgid "Some people can reply" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:109 +msgid "Something went wrong" +msgstr "" + +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 +#: src/screens/Profile/Sections/Labels.tsx:87 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:200 +#: src/view/screens/NotificationsSettings.tsx:49 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 +msgid "Sorry! Your session expired. Please log in again." +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:64 +msgid "Sort Replies" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:67 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 +msgid "Sports" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:61 +msgid "Start a new chat" +msgstr "" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Starter Pack" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:81 +msgid "Starter pack by {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 +msgid "Starter pack is invalid" +msgstr "" + +#: src/view/screens/Profile.tsx:233 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "Starter packs let you easily share your favourite feeds and people with your friends." + +#: src/view/screens/Settings/index.tsx:918 +msgid "Status Page" +msgstr "" + +#: src/screens/Signup/index.tsx:130 +msgid "Step {0} of {1}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:279 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 +msgid "Storybook" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "" + +#: src/view/screens/ProfileList.tsx:703 +msgid "Subscribe" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:201 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +msgid "Subscribe to Labeler" +msgstr "Subscribe to Labeller" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/view/screens/ProfileList.tsx:699 +msgid "Subscribe to this list" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:332 +msgid "Suggested accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:318 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Suggestive" +msgstr "" + +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "" + +#: src/view/screens/Settings/index.tsx:131 +msgid "Switch to {0}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:132 +msgid "Switches the account you are logged in to" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "System" +msgstr "" + +#: src/view/screens/Settings/index.tsx:818 +msgid "System log" +msgstr "" + +#: src/components/TagMenu/index.tsx:87 +msgid "Tag menu: {displayTag}" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 +msgid "Tap to enter full screen" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 +msgid "Tap to play or pause" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 +msgid "Tap to toggle sound" +msgstr "" + +#: src/view/com/util/images/AutoSizedImage.tsx:219 +#: src/view/com/util/images/AutoSizedImage.tsx:239 +msgid "Tap to view full image" +msgstr "" + +#: src/state/shell/progress-guide.tsx:166 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 +msgid "Tech" +msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:90 +msgid "Terms" +msgstr "" + +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 +msgid "Terms of Service" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 +msgid "Thank you. Your report has been sent." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:452 +msgid "That contains the following:" +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:51 +msgid "That handle is already taken." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 +msgid "That starter pack could not be found." +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:133 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/screens/Moderation/index.tsx:369 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:58 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:58 +msgid "The following steps will help customize your Bluesky experience." +msgstr "The following steps will help customise your Bluesky experience." + +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 +msgid "The post may have been deleted." +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:409 +msgid "The selected video is larger than 50MB." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:724 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:225 +msgid "There was an issue connecting to Tenor." +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 +msgid "There was an issue contacting your server" +msgstr "" + +#: src/view/com/notifications/Feed.tsx:129 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/view/com/posts/Feed.tsx:473 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:169 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 +msgid "There was an issue with fetching your app passwords" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:112 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:266 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:92 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:120 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:37 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:40 +msgid "This information is not shared with other users." +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:127 +msgid "This is important in case you ever need to change your email or reset your password." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 +msgid "This label was applied by <0>{0}." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:146 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:188 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "This labeller hasn't declared what labels it publishes, and may not be active." + +#: src/view/com/modals/LinkWarning.tsx:72 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:136 +msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:966 +msgid "This list is empty!" +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:110 +msgid "This name is already in use" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:139 +msgid "This post has been deleted." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 +msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:364 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:37 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:432 +msgid "This should create a domain record at:" +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:96 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:60 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:58 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:90 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:96 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/view/com/util/AccountDropdownBtn.tsx:55 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/view/screens/Settings/index.tsx:561 +msgid "Thread preferences" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 +msgid "Thread Preferences" +msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:114 +msgid "Threaded Mode" +msgstr "" + +#: src/Navigation.tsx:303 +msgid "Threads Preferences" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:20 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 +msgid "To upload videos to Bluesky, you must first verify your email." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:32 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:255 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:346 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 +msgid "Top" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +msgid "Translate" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:82 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:102 +msgid "TV" +msgstr "" + +#: src/view/screens/Settings/index.tsx:712 +msgid "Two-factor authentication" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:141 +msgid "Type your message here" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:415 +msgid "Type:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:594 +msgid "Un-block list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:579 +msgid "Un-mute list" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:648 +msgid "Unable to delete" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Unblock account" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 +msgid "Unblock Account" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Unblock Account?" +msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Undo repost" +msgstr "" + +#: src/view/com/profile/FollowButton.tsx:61 +msgctxt "action" +msgid "Unfollow" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 +msgid "Unfollow Account" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Unlike this feed" +msgstr "" + +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#: src/components/TagMenu/index.web.tsx:115 +msgid "Unmute {truncatedTag}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 +msgid "Unmute Account" +msgstr "" + +#: src/components/TagMenu/index.tsx:204 +msgid "Unmute all {displayTag} posts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:176 +msgid "Unmute conversation" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +msgid "Unmute thread" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Unmute video" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 +msgid "Unpin" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:293 +msgid "Unpin from home" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 +msgid "Unpin moderation list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:356 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 +msgid "Update to {handle}" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +msgid "Updating quote attachment failed" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:180 +msgid "Updating..." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Upload a photo instead" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:441 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 +#: src/view/com/util/UserBanner.tsx:126 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 +msgid "Upload from Library" +msgstr "" + +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 +msgid "Use a file on your server" +msgstr "" + +#: src/view/screens/AppPasswords.tsx:205 +msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:506 +msgid "Use bsky.social as hosting provider" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:505 +msgid "Use default provider" +msgstr "" + +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 +msgid "Use in-app browser" +msgstr "" + +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:387 +msgid "Use the DNS panel" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:206 +msgid "Use this to sign into the other app along with your handle." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 +msgid "User Blocked" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:53 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:71 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:76 +msgid "User Blocks You" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "" + +#: src/view/screens/ProfileList.tsx:890 +msgid "User list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 +msgid "User list by you" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:176 +msgid "User list created" +msgstr "" + +#: src/view/com/modals/CreateOrEditList.tsx:162 +msgid "User list updated" +msgstr "" + +#: src/view/screens/Lists.tsx:66 +msgid "User Lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:183 +msgid "Username or email address" +msgstr "" + +#: src/view/screens/ProfileList.tsx:924 +msgid "Users" +msgstr "" + +#: src/components/WhoCanReply.tsx:258 +msgid "users followed by <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Users I follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 +msgid "Users in \"{0}\"" +msgstr "" + +#: src/components/LikesDialog.tsx:83 +msgid "Users that have liked this content or profile" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:423 +msgid "Value:" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 +msgid "Verified email required" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:497 +msgid "Verify DNS Record" +msgstr "" + +#: src/view/screens/Settings/index.tsx:937 +msgid "Verify email" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "" + +#: src/view/screens/Settings/index.tsx:962 +msgid "Verify my email" +msgstr "" + +#: src/view/screens/Settings/index.tsx:971 +msgid "Verify My Email" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 +msgid "Verify New Email" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 +msgid "Verify now" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:498 +msgid "Verify Text File" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:71 +#: src/view/com/modals/VerifyEmail.tsx:111 +msgid "Verify Your Email" +msgstr "" + +#: src/view/screens/Settings/index.tsx:890 +msgid "Version {appVersion} {bundleInfo}" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:372 +msgid "Video failed to process" +msgstr "" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 +msgid "Video Games" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +msgid "Video: {0}" +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 +msgid "Videos must be less than 60 seconds long" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:128 +msgid "View {0}'s avatar" +msgstr "" + +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:273 +msgid "View {0}'s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:160 +msgid "View {displayName}'s profile" +msgstr "" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 +msgid "View blocked user's profile" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:96 +msgid "View blogpost for more details" +msgstr "" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:139 +msgid "View details" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:134 +msgid "View details for reporting a copyright violation" +msgstr "" + +#: src/view/com/posts/FeedSlice.tsx:136 +msgid "View full thread" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:47 +msgid "View information about these labels" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 +msgid "View profile" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 +msgid "View the avatar" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:162 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:588 +msgid "View users who like this feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:275 +msgid "View your blocked accounts" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:245 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:260 +msgid "View your muted accounts" +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Visit Site" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/screens/Hashtag.tsx:218 +msgid "We couldn't find any results for that hashtag." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:110 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/SignupQueued.tsx:139 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:229 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/view/com/composer/state/video.ts:431 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:51 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:420 +msgid "We were unable to load your configured labelers at this time." +msgstr "We were unable to load your configured labellers at this time." + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/SignupQueued.tsx:143 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "We'll use this to help customise your experience." + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 +msgid "We're so excited to have you join us!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:113 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/view/screens/Search/Search.tsx:212 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/view/com/composer/Composer.tsx:361 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "We're sorry! You can only subscribe to twenty labellers, and you've reached your limit of twenty." + +#: src/screens/Deactivated.tsx:128 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:42 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 +msgid "What's up?" +msgstr "" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 +msgid "Which languages are used in this post?" +msgstr "" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "" + +#: src/components/WhoCanReply.tsx:179 +msgid "Who can interact with this post?" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Who can reply" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:183 +msgid "Whoops!" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:44 +msgid "Why should this content be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:63 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 +msgid "Write a message" +msgstr "" + +#: src/view/com/composer/Composer.tsx:630 +msgid "Write post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 +msgid "Write your reply" +msgstr "" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 +msgid "Writers" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "Yes" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +msgid "Yes, detach" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:150 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:140 +msgid "you" +msgstr "" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + +#: src/screens/SignupQueued.tsx:136 +msgid "You are in line." +msgstr "" + +#: src/view/com/composer/state/video.ts:424 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "You are not following anyone." +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "" + +#: src/screens/Messages/Settings.tsx:105 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +msgid "You can now sign in with your new password." +msgstr "" + +#: src/screens/Deactivated.tsx:136 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "You do not have any followers." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:100 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:144 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:184 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:214 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:58 +msgid "You have blocked this user" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:114 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +msgid "You have hidden this post." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:91 +msgid "You have muted this user" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:223 +msgid "You have no conversations yet. Start one!" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:138 +msgid "You have no feeds." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 +msgid "You have no lists." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:133 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:96 +msgid "You have not created any app passwords yet. You can create one by pressing the button below." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:132 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:52 +msgid "You have reached the end" +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "You hid this reply." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:79 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:97 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 +msgid "You must be 13 years of age or older to sign up." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:60 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:69 +msgid "You must grant access to your photo library to save the image." +msgstr "" + +#: src/components/ReportDialog/SubmitView.tsx:210 +msgid "You must select at least one labeler for a report" +msgstr "You must select at least one labeller for a report" + +#: src/screens/Deactivated.tsx:131 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:98 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:124 +msgid "You: {0}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:153 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:146 +msgid "You: {short}" +msgstr "" + +#: src/screens/Signup/index.tsx:107 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:112 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:226 +msgid "You're ready to go!" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/state/video.ts:435 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:439 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "Your account" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:88 +msgid "Your account has been deleted" +msgstr "" + +#: src/view/com/composer/state/video.ts:443 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:64 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:211 +msgid "Your birth date" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:108 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:120 +msgid "Your email has been updated but not verified. As a next step, please verify your new email." +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:122 +msgid "Your email has not yet been verified. This is an important security step which we recommend." +msgstr "" + +#: src/state/shell/progress-guide.tsx:156 +msgid "Your first like!" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#: src/screens/Signup/StepHandle.tsx:125 +msgid "Your full handle will be" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:258 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:158 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/view/com/composer/Composer.tsx:405 +msgid "Your post has been published" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:241 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "" + +#: src/view/screens/Settings/index.tsx:119 +msgid "Your profile" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:404 +msgid "Your reply has been published" +msgstr "" + +#: src/components/dms/ReportDialog.tsx:157 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "" + +#: src/screens/Signup/index.tsx:142 +msgid "Your user handle" +msgstr "" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 31960e3dde..0ce4335ebe 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -34,18 +34,10 @@ msgstr "" msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:55 -#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" -#~ msgstr "" - #: src/components/moderation/LabelsOnMe.tsx:54 msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" -#~ msgstr "" - #: src/components/moderation/LabelsOnMe.tsx:60 msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "" @@ -58,7 +50,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" @@ -66,10 +58,6 @@ msgstr "" msgid "{0, plural, one {# second} other {# seconds}}" msgstr "" -#: src/components/KnownFollowers.tsx:179 -#~ msgid "{0, plural, one {and # other} other {and # others}}" -#~ msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:398 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -80,15 +68,15 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -97,19 +85,19 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -123,23 +111,19 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" -#: src/view/screens/ProfileList.tsx:286 -#~ msgid "{0} your feeds" -#~ msgstr "" - -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "" @@ -176,32 +160,12 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/lib/hooks/useTimeAgo.ts:69 -#~ msgid "{diff, plural, one {day} other {days}}" -#~ msgstr "" - -#: src/lib/hooks/useTimeAgo.ts:64 -#~ msgid "{diff, plural, one {hour} other {hours}}" -#~ msgstr "" - -#: src/lib/hooks/useTimeAgo.ts:59 -#~ msgid "{diff, plural, one {minute} other {minutes}}" -#~ msgstr "" - -#: src/lib/hooks/useTimeAgo.ts:75 -#~ msgid "{diff, plural, one {month} other {months}}" -#~ msgstr "" - -#: src/lib/hooks/useTimeAgo.ts:54 -#~ msgid "{diffSeconds, plural, one {second} other {seconds}}" -#~ msgstr "" - #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "" @@ -213,22 +177,22 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "" @@ -240,49 +204,29 @@ msgstr "" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:67 -#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" -#~ msgstr "" - -#: src/components/WhoCanReply.tsx:296 -#~ msgid "<0/> members" -#~ msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:485 -#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -#~ msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:497 -#~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" -#~ msgstr "" - -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -290,36 +234,15 @@ msgstr "" msgid "<0>{0} members" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "" - -#: src/components/ProfileHoverCard/index.web.tsx:449 -#: src/screens/Profile/Header/Metrics.tsx:45 -#~ msgid "<0>{following} <1>following" -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "" - -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "" @@ -327,7 +250,7 @@ msgstr "" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "" @@ -339,12 +262,8 @@ msgstr "" msgid "7 days" msgstr "" -#: src/tours/Tooltip.tsx:70 -#~ msgid "A help tooltip" -#~ msgstr "" - -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "" @@ -352,39 +271,34 @@ msgstr "" msgid "Access profile and other navigation links" msgstr "" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "account" -#~ msgstr "" - -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "" @@ -405,27 +319,27 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "" @@ -433,52 +347,42 @@ msgstr "" msgid "Add {displayName} to starter pack" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "" -#: src/view/com/composer/GifAltText.tsx:175 -#~ msgid "Add ALT text" -#~ msgstr "" - -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "" -#: src/view/com/composer/Composer.tsx:467 -#~ msgid "Add link card" -#~ msgstr "" - -#: src/view/com/composer/Composer.tsx:472 -#~ msgid "Add link card:" -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:321 msgid "Add mute word for configured settings" msgstr "" @@ -487,15 +391,11 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" @@ -503,16 +403,16 @@ msgstr "" msgid "Add the default feed of only people you follow" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "" @@ -520,12 +420,8 @@ msgstr "" msgid "Add to my feeds" msgstr "" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "" - #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "" @@ -533,26 +429,28 @@ msgstr "" msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:171 -#~ msgid "Adjust the number of likes a reply must have to be shown in your feed." -#~ msgstr "" - +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "" @@ -560,11 +458,11 @@ msgstr "" msgid "Algorithm training complete!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -573,58 +471,58 @@ msgstr "" msgid "Allow access to your direct messages" msgstr "" -#: src/screens/Messages/Settings.tsx:61 #: src/screens/Messages/Settings.tsx:64 -#~ msgid "Allow messages from" -#~ msgstr "" - -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "" +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "" @@ -632,23 +530,23 @@ msgstr "" msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "" -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" -#: src/components/dialogs/GifSelect.tsx:252 -#~ msgid "An error occured" -#~ msgstr "" - -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -660,33 +558,21 @@ msgstr "" msgid "An error occurred while loading the video. Please try again." msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" - -#: src/components/StarterPack/ShareDialog.tsx:79 -#~ msgid "An error occurred while saving the image." -#~ msgstr "" - #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" -#: src/components/dms/MessageMenu.tsx:134 -#~ msgid "An error occurred while trying to delete the message. Please try again." -#~ msgstr "" - -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -698,40 +584,40 @@ msgstr "" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "" @@ -739,15 +625,20 @@ msgstr "" msgid "Anti-Social Behavior" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "" @@ -759,51 +650,47 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "" - -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -812,29 +699,21 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -#~ msgid "Are you sure you want delete this starter pack?" -#~ msgstr "" - -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "" -#: src/components/dms/MessageMenu.tsx:123 -#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." -#~ msgstr "" - #: src/components/dms/MessageMenu.tsx:149 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "" -#: src/components/dms/ConvoMenu.tsx:189 -#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." -#~ msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." @@ -844,11 +723,11 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "" @@ -861,11 +740,11 @@ msgid "Are you writing in <0>{0}?" msgstr "" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "" @@ -874,43 +753,39 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 -#~ msgid "Based on your interest in {interestsText}" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "" @@ -919,45 +794,45 @@ msgstr "" msgid "Block account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" @@ -969,55 +844,36 @@ msgstr "" msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "" -#: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82 -#~ msgid "Bluesky is flexible." -#~ msgstr "" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:71 -#~ msgid "Bluesky is open." -#~ msgstr "" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:58 -#~ msgid "Bluesky is public." -#~ msgstr "" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "" @@ -1030,14 +886,10 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" - #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" msgstr "" @@ -1063,7 +915,7 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "" @@ -1071,31 +923,31 @@ msgstr "" msgid "by —" msgstr "" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "" - -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 -#~ msgid "by @{0}" -#~ msgstr "" - #: src/view/com/profile/ProfileSubpageHeader.tsx:164 msgid "by <0/>" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "" @@ -1104,33 +956,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "" #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1142,19 +993,15 @@ msgstr "" msgid "Cancel account deletion" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "" @@ -1163,6 +1010,7 @@ msgid "Cancel reactivation and log out" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "" @@ -1170,14 +1018,14 @@ msgstr "" msgid "Cancels opening the linked website" msgstr "" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1185,25 +1033,25 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" - #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "" @@ -1211,12 +1059,12 @@ msgstr "" msgid "Change my email" msgstr "" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -1228,9 +1076,10 @@ msgstr "" msgid "Change Your Email" msgstr "" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "" @@ -1240,14 +1089,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "" @@ -1255,24 +1104,12 @@ msgstr "" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/Conversation/index.tsx:26 -#~ msgid "Chat with {chatId}" -#~ msgstr "" - #: src/screens/SignupQueued.tsx:78 #: src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:122 -#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ msgid "Check out some recommended users. Follow them to see similar users." -#~ msgstr "" - -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1280,90 +1117,55 @@ msgstr "" msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "" - -#: src/screens/Onboarding/StepInterests/index.tsx:191 -#~ msgid "Choose 3 or more:" -#~ msgstr "" - -#: src/screens/Onboarding/StepInterests/index.tsx:326 -#~ msgid "Choose at least {0} more" -#~ msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:85 -#~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "" - #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" msgstr "" -#: src/components/dialogs/ThreadgateEditor.tsx:91 -#: src/components/dialogs/ThreadgateEditor.tsx:95 -#~ msgid "Choose who can reply" -#~ msgstr "" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 -#~ msgid "Choose your main feeds" -#~ msgstr "" - -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "" -#: src/view/screens/Settings/index.tsx:912 -#~ msgid "Clear all legacy storage data" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:915 -#~ msgid "Clear all legacy storage data (restart after this)" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "" -#: src/view/screens/Settings/index.tsx:913 -#~ msgid "Clears all legacy storage data" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "" @@ -1375,27 +1177,19 @@ msgstr "" msgid "Click here for more information." msgstr "" -#: src/screens/Feeds/NoFollowingFeed.tsx:46 -#~ msgid "Click here to add one." -#~ msgstr "" - #: src/components/TagMenu/index.web.tsx:152 msgid "Click here to open tag menu for {tag}" msgstr "" -#: src/components/RichText.tsx:198 -#~ msgid "Click here to open tag menu for #{tag}" -#~ msgstr "" - -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "" @@ -1407,27 +1201,25 @@ msgstr "" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "" @@ -1435,12 +1227,11 @@ msgstr "" msgid "Close bottom drawer" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "" @@ -1452,30 +1243,26 @@ msgstr "" msgid "Close image viewer" msgstr "" -#: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" - -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1485,64 +1272,66 @@ msgstr "" msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "" -#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 -#~ msgid "Compressing..." -#~ msgstr "" - -#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 -#~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "" @@ -1559,47 +1348,48 @@ msgstr "" msgid "Confirm delete account" msgstr "" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "" - #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "" @@ -1609,13 +1399,13 @@ msgid "Content Not Available" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "" @@ -1623,12 +1413,12 @@ msgstr "" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "" @@ -1636,21 +1426,13 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 -#~ msgid "Continue to the next step" -#~ msgstr "" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 -#~ msgid "Continue to the next step without following any accounts" -#~ msgstr "" - -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "" @@ -1663,20 +1445,21 @@ msgstr "" msgid "Copied" msgstr "" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "" @@ -1684,17 +1467,17 @@ msgstr "" msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "" @@ -1706,12 +1489,12 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "" @@ -1720,40 +1503,32 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "" -#: src/view/com/composer/videos/state.ts:31 -#~ msgid "Could not compress video" -#~ msgstr "" - #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "" -#: src/components/dms/NewChat.tsx:241 -#~ msgid "Could not load profiles. Please try again later." -#~ msgstr "" - #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" msgstr "" @@ -1762,38 +1537,34 @@ msgstr "" msgid "Could not process your video" msgstr "" -#: src/components/dms/ConvoMenu.tsx:68 -#~ msgid "Could not unmute chat" -#~ msgstr "" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "" - -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "" @@ -1802,11 +1573,11 @@ msgstr "" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "" @@ -1815,127 +1586,112 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "" -#: src/view/com/composer/Composer.tsx:469 -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "" - #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:473 -#~ msgid "Dark Theme" -#~ msgstr "" - -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "" -#: src/view/com/modals/DeleteAccount.tsx:87 -#~ msgid "Delete Account" -#~ msgstr "" - #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -1943,7 +1699,7 @@ msgstr "" msgid "Delete for me" msgstr "" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "" @@ -1959,33 +1715,33 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "" @@ -1993,27 +1749,35 @@ msgstr "" msgid "Deleted post." msgstr "" -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -2021,73 +1785,57 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "" -#: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" - -#: src/view/screens/AccessibilitySettings.tsx:111 -#~ msgid "Disable autoplay for GIFs" -#~ msgstr "" - -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "" -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable haptics" -#~ msgstr "" - -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable vibrations" -#~ msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "" -#: src/tours/HomeTour.tsx:70 -#~ msgid "Discover learns which posts you like as you browse." -#~ msgstr "" - #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -2097,15 +1845,15 @@ msgstr "" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -2113,19 +1861,25 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "" @@ -2133,6 +1887,14 @@ msgstr "" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "" @@ -2141,38 +1903,37 @@ msgstr "" msgid "Doesn't begin or end with a hyphen" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "" @@ -2181,64 +1942,56 @@ msgstr "" msgid "Done{extraText}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" - -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 -#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:153 msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "" @@ -2246,58 +1999,55 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "" - -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "" @@ -2306,26 +2056,23 @@ msgstr "" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "" - -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "" @@ -2333,28 +2080,16 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "" - -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "" - -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "" -#: src/components/dialogs/ThreadgateEditor.tsx:98 -#~ msgid "Either choose \"Everybody\" or \"Nobody\"" -#~ msgstr "" - -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "" @@ -2363,11 +2098,11 @@ msgstr "" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2384,21 +2119,21 @@ msgstr "" msgid "Email verified" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "" @@ -2406,68 +2141,47 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 -#~ msgid "Enable Adult Content" -#~ msgstr "" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 -#~ msgid "Enable adult content in your feeds" -#~ msgstr "" - -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:145 -#~ msgid "Enable this setting to only see replies between people you follow." -#~ msgstr "" - -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "" -#: src/components/Lists.tsx:52 -#~ msgid "End of list" -#~ msgstr "" - -#: src/tours/Tooltip.tsx:159 -#~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." -#~ msgstr "" - -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2475,7 +2189,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "" @@ -2484,6 +2198,10 @@ msgstr "" msgid "Enter a word or tag" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "" @@ -2492,20 +2210,20 @@ msgstr "" msgid "Enter the code you received to change your password." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "" @@ -2517,10 +2235,14 @@ msgstr "" msgid "Enter your new email address below." msgstr "" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "" @@ -2529,12 +2251,12 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "" @@ -2546,10 +2268,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "" @@ -2569,7 +2289,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2577,11 +2297,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "" @@ -2601,12 +2321,16 @@ msgstr "" msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2626,32 +2350,32 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "" @@ -2660,12 +2384,12 @@ msgstr "" msgid "Failed to create app password." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "" @@ -2673,11 +2397,11 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "" @@ -2686,24 +2410,14 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:28 -#~ msgid "Failed to load past messages." -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 -#~ msgid "Failed to load recommended feeds" -#~ msgstr "" - #: src/view/screens/Search/Explore.tsx:420 #: src/view/screens/Search/Explore.tsx:448 msgid "Failed to load suggested feeds" @@ -2713,7 +2427,11 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "" @@ -2721,90 +2439,83 @@ msgstr "" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "" + +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:29 -#~ msgid "Failed to send message(s)." -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:709 -#~ msgid "Feed offline" -#~ msgstr "" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:58 -#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." -#~ msgstr "" - -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 -#~ msgid "Feeds can be topical as well!" -#~ msgstr "" - -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "" @@ -2816,7 +2527,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "" @@ -2826,65 +2537,36 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/tours/HomeTour.tsx:88 -#~ msgid "Find more feeds and accounts to follow in the Explore page." -#~ msgstr "" - -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "" -#: src/view/screens/Search/Search.tsx:589 -#~ msgid "Find users on Bluesky" -#~ msgstr "" - -#: src/view/screens/Search/Search.tsx:587 -#~ msgid "Find users with the search tool on the right" -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "" -#: src/tours/Tooltip.tsx:149 -#~ msgid "Finish tour and begin using the application" -#~ msgstr "" - #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "" -#: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "" - -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "" - #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "" @@ -2893,12 +2575,12 @@ msgctxt "action" msgid "Follow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "" @@ -2906,50 +2588,30 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 -#~ msgid "Follow All" -#~ msgstr "" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "" #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 -#~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 -#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." -#~ msgstr "" - -#: src/components/KnownFollowers.tsx:169 -#~ msgid "Followed by" -#~ msgstr "" - -#: src/view/com/profile/ProfileCard.tsx:190 -#~ msgid "Followed by {0}" -#~ msgstr "" - #: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" @@ -2966,14 +2628,10 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:152 -#~ msgid "Followed users only" -#~ msgstr "" - #: src/view/com/notifications/FeedItem.tsx:207 msgid "followed you" msgstr "" @@ -2982,66 +2640,72 @@ msgstr "" msgid "followed you back" msgstr "" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "" -#: src/tours/HomeTour.tsx:59 -#~ msgid "Following shows the latest posts from people you follow." -#~ msgstr "" - -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "" @@ -3053,20 +2717,25 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "" @@ -3074,35 +2743,31 @@ msgstr "" msgid "Frequently Posts Unwanted Content" msgstr "" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" -#: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" - #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" @@ -3116,7 +2781,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -3124,14 +2789,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "" @@ -3139,48 +2803,39 @@ msgstr "" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -#~ msgid "Go back to previous screen" -#~ msgstr "" - -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "" -#: src/view/screens/Search/Search.tsx:827 -#: src/view/shell/desktop/Search.tsx:263 -#~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "" - -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "" @@ -3189,15 +2844,13 @@ msgstr "" msgid "Go to profile" msgstr "" -#: src/tours/Tooltip.tsx:138 -#~ msgid "Go to the next step of the tour" -#~ msgstr "" - #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "" @@ -3205,11 +2858,11 @@ msgstr "" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "" @@ -3217,98 +2870,81 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 -#~ msgid "Here are some accounts for you to follow" -#~ msgstr "" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 -#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." -#~ msgstr "" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:84 -#~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." -#~ msgstr "" - #: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "" -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 -#: src/view/com/util/forms/PostDropdownBtn.tsx:392 -#~ msgid "Hide post" -#~ msgstr "" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "" @@ -3332,7 +2968,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3340,45 +2976,49 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "" @@ -3391,19 +3031,15 @@ msgstr "" msgid "If alt text is long, toggles alt text expanded state" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "" - -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3419,16 +3055,11 @@ msgstr "" msgid "Illegal and Urgent" msgstr "" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "" -#: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3444,7 +3075,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "" @@ -3456,7 +3087,7 @@ msgstr "" msgid "Input name for app password" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "" @@ -3464,23 +3095,19 @@ msgstr "" msgid "Input password for account deletion" msgstr "" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "" -#: src/screens/Login/LoginForm.tsx:221 -#~ msgid "Input the password tied to {identifier}" -#~ msgstr "" - -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "" @@ -3488,15 +3115,15 @@ msgstr "" msgid "Input your user handle" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" -#: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3505,12 +3132,12 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3518,7 +3145,7 @@ msgstr "" msgid "Invite a Friend" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "" @@ -3546,66 +3173,64 @@ msgstr "" msgid "Invites, but personal" msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:65 -#~ msgid "It shows posts from the people you follow as they happen." -#~ msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" - #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:59 -#~ msgid "label has been placed on this {labelTarget}" -#~ msgstr "" - -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "" - #: src/components/moderation/LabelsOnMeDialog.tsx:71 msgid "Labels on your account" msgstr "" @@ -3618,48 +3243,58 @@ msgstr "" msgid "Language selection" msgstr "" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "" @@ -3680,7 +3315,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "" @@ -3692,32 +3327,23 @@ msgstr "" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:310 -#~ msgid "Legacy storage cleared, you need to restart the app now." -#~ msgstr "" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Like" -#~ msgstr "" - #: src/components/ProgressGuide/List.tsx:48 msgid "Like 10 posts" msgstr "" @@ -3727,38 +3353,24 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:268 -#~ msgid "Liked by {0} {1}" -#~ msgstr "" - -#: src/components/LabelingServiceCard/index.tsx:72 -#~ msgid "Liked by {count} {0}" -#~ msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 -#: src/view/screens/ProfileFeed.tsx:600 -#~ msgid "Liked by {likeCount} {0}" -#~ msgstr "" - #: src/view/com/notifications/FeedItem.tsx:211 msgid "liked your custom feed" msgstr "" @@ -3767,7 +3379,7 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "" @@ -3775,24 +3387,24 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "" @@ -3800,32 +3412,31 @@ msgstr "" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "" @@ -3845,22 +3456,22 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "" @@ -3876,19 +3487,27 @@ msgstr "" msgid "Log out" msgstr "" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "" @@ -3900,15 +3519,11 @@ msgstr "" msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" msgstr "" -#: src/screens/Feeds/NoFollowingFeed.tsx:38 -#~ msgid "Looks like you're missing a following feed." -#~ msgstr "" - #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -3925,30 +3540,35 @@ msgstr "" msgid "Mark as read" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -3956,30 +3576,26 @@ msgstr "" msgid "Message from server: {0}" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" -#: src/Navigation.tsx:307 -#~ msgid "Messaging settings" -#~ msgstr "" - #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" msgstr "" @@ -3988,64 +3604,60 @@ msgstr "" msgid "Misleading Post" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" - -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "" @@ -4054,7 +3666,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "" @@ -4062,28 +3674,29 @@ msgstr "" msgid "More feeds" msgstr "" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "" @@ -4092,16 +3705,16 @@ msgstr "" msgid "Mute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "" @@ -4110,28 +3723,15 @@ msgstr "" msgid "Mute conversation" msgstr "" -#: src/components/dialogs/MutedWords.tsx:148 -#~ msgid "Mute in tags only" -#~ msgstr "" - -#: src/components/dialogs/MutedWords.tsx:133 -#~ msgid "Mute in text & tags" -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:136 -#: src/components/dms/ConvoMenu.tsx:142 -#~ msgid "Mute notifications" -#~ msgstr "" - -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "" @@ -4159,30 +3759,26 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#~ msgid "Muted" -#~ msgstr "" - -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "" @@ -4190,41 +3786,41 @@ msgstr "" msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "" @@ -4236,65 +3832,64 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" - -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:74 -#~ msgid "Never lose access to your followers and data." -#~ msgstr "" - -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "" @@ -4306,22 +3901,22 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "" @@ -4330,73 +3925,72 @@ msgstr "" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "" - #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "" @@ -4404,11 +3998,11 @@ msgstr "" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4416,10 +4010,8 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4427,16 +4019,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4444,45 +4044,49 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "" -#: src/components/dms/NewChat.tsx:240 -#~ msgid "No search results found for \"{searchText}\"." +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#~ msgid "Nobody can reply" -#~ msgstr "" - -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4490,12 +4094,8 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:135 -#~ msgid "Not Applicable." -#~ msgstr "" - -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "" @@ -4504,49 +4104,48 @@ msgstr "" msgid "Not right now" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "" @@ -4554,11 +4153,12 @@ msgstr "" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "" @@ -4566,72 +4166,47 @@ msgstr "" msgid "Nudity or adult content not labeled as such" msgstr "" -#: src/screens/Signup/index.tsx:145 -#~ msgid "of" -#~ msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "" -#: src/components/StarterPack/QrCode.tsx:69 -#~ msgid "on" -#~ msgstr "" - -#: src/lib/hooks/useTimeAgo.ts:81 -#~ msgid "on {str}" -#~ msgstr "" - -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "" -#: src/tours/Tooltip.tsx:118 -#~ msgid "Onboarding tour step {0}: {1}" -#~ msgstr "" - -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:245 -#~ msgid "Only {0} can reply" -#~ msgstr "" - #: src/components/WhoCanReply.tsx:217 msgid "Only {0} can reply." msgstr "" @@ -4640,7 +4215,11 @@ msgstr "" msgid "Only contains letters, numbers, and hyphens" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4649,42 +4228,46 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "" @@ -4692,7 +4275,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "" @@ -4700,20 +4283,20 @@ msgstr "" msgid "Open navigation" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "" @@ -4721,57 +4304,57 @@ msgstr "" msgid "Opens {numItems} options" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:349 -#~ msgid "Opens an expanded list of users in this notification" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "" @@ -4783,56 +4366,51 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 -#: src/view/screens/Feeds.tsx:417 -#~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "" @@ -4840,29 +4418,25 @@ msgstr "" msgid "Opens the linked website" msgstr "" -#: src/screens/Messages/List/index.tsx:86 -#~ msgid "Opens the message settings page" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -4870,8 +4444,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "" @@ -4879,7 +4453,7 @@ msgstr "" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "" @@ -4892,14 +4466,15 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "" @@ -4907,21 +4482,21 @@ msgstr "" msgid "Other..." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4931,42 +4506,42 @@ msgstr "" msgid "Password Changed" msgstr "" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" @@ -4975,65 +4550,69 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "" -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "" -#: src/screens/Messages/Settings.tsx:97 -#: src/screens/Messages/Settings.tsx:104 -#~ msgid "Play notification sounds" -#~ msgstr "" - -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "" @@ -5042,7 +4621,7 @@ msgid "Please choose your handle." msgstr "" #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "" @@ -5067,11 +4646,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -5079,16 +4658,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -5096,21 +4675,18 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "" - #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "" @@ -5124,17 +4700,21 @@ msgstr "" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "" @@ -5149,7 +4729,7 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -5157,7 +4737,7 @@ msgstr "" msgid "Post language" msgstr "" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "" @@ -5166,19 +4746,27 @@ msgstr "" msgid "Post not found" msgstr "" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "" -#: src/components/dialogs/MutedWords.tsx:89 -#~ msgid "Posts can be muted based on their text, their tags, or both." -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -5195,7 +4783,7 @@ msgstr "" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5205,16 +4793,11 @@ msgstr "" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" -#: src/screens/Messages/Conversation/MessagesList.tsx:47 -#: src/screens/Messages/Conversation/MessagesList.tsx:53 -#~ msgid "Press to Retry" -#~ msgstr "" - #: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -5223,79 +4806,79 @@ msgstr "" msgid "Previous image" msgstr "" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "" -#: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5309,53 +4892,39 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" -#: src/tours/Tooltip.tsx:111 -#~ msgid "Quick tip" -#~ msgstr "" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "" -#: src/view/com/modals/Repost.tsx:66 -#~ msgctxt "action" -#~ msgid "Quote post" -#~ msgstr "" - -#: src/view/com/modals/Repost.tsx:71 -#~ msgctxt "action" -#~ msgid "Quote Post" -#~ msgstr "" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5363,16 +4932,12 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "" -#: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5380,58 +4945,47 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "" -#: src/components/dms/MessageReportDialog.tsx:149 -#~ msgid "Reason: {0}" -#~ msgstr "" - -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 -#~ msgid "Recommended Feeds" -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 -#~ msgid "Recommended Users" -#~ msgstr "" - -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5445,11 +4999,11 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "" @@ -5457,7 +5011,7 @@ msgstr "" msgid "Remove Banner" msgstr "" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5473,13 +5027,14 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "" @@ -5492,36 +5047,32 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 -#~ msgid "Remove image preview" -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5529,16 +5080,16 @@ msgstr "" msgid "Remove this feed from your saved feeds" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "" @@ -5552,33 +5103,21 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "" -#: src/view/com/composer/ExternalEmbed.tsx:88 -#~ msgid "Removes default thumbnail from {0}" -#~ msgstr "" - -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" - -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -#~ msgid "Removes the image preview" -#~ msgstr "" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "" @@ -5586,27 +5125,15 @@ msgstr "" msgid "Replies disabled" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#~ msgid "Replies on this thread are disabled" -#~ msgstr "" - #: src/components/WhoCanReply.tsx:215 msgid "Replies to this post are disabled." msgstr "" -#: src/components/WhoCanReply.tsx:243 -#~ msgid "Replies to this thread are disabled" -#~ msgstr "" - -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:142 -#~ msgid "Reply Filters" -#~ msgstr "" - #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:123 msgid "Reply Hidden by Thread Author" @@ -5617,47 +5144,41 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" -#: src/view/com/post/Post.tsx:177 -#: src/view/com/posts/FeedItem.tsx:285 -#~ msgctxt "description" -#~ msgid "Reply to <0/>" -#~ msgstr "" - -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -5667,13 +5188,8 @@ msgstr "" msgid "Report" msgstr "" -#: src/components/dms/ConvoMenu.tsx:146 -#: src/components/dms/ConvoMenu.tsx:150 -#~ msgid "Report account" -#~ msgstr "" - -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "" @@ -5683,16 +5199,16 @@ msgstr "" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "" @@ -5700,13 +5216,13 @@ msgstr "" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -5722,8 +5238,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -5740,9 +5256,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "" @@ -5752,32 +5268,28 @@ msgstr "" msgid "Repost" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:214 -#~ msgid "Reposted by <0/>" -#~ msgstr "" - -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -5799,7 +5311,7 @@ msgstr "" msgid "Request Code" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "" @@ -5807,20 +5319,26 @@ msgstr "" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -5832,29 +5350,29 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "" @@ -5863,16 +5381,16 @@ msgstr "" msgid "Retries the last action, which errored out" msgstr "" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5880,57 +5398,56 @@ msgstr "" msgid "Retry" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:54 -#~ msgid "Retry." -#~ msgstr "" - #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "" -#: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "" - -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "" @@ -5939,119 +5456,94 @@ msgstr "" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:81 -#~ msgid "Saved to your camera roll." -#~ msgstr "" - -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "" - -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "" - -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/components/dms/NewChat.tsx:226 -#~ msgid "Search for someone to start a conversation with." -#~ msgstr "" - #: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "" @@ -6067,32 +5559,23 @@ msgstr "" msgid "See {truncatedTag} posts by user" msgstr "" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:411 -#: src/view/com/util/UserAvatar.tsx:402 -#~ msgid "See profile" -#~ msgstr "" - -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "" -#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 -#~ msgid "See what's next" -#~ msgstr "" - -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6104,7 +5587,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "" @@ -6116,7 +5599,7 @@ msgstr "" msgid "Select an emoji" msgstr "" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "" @@ -6124,7 +5607,7 @@ msgstr "" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -6132,15 +5615,15 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "" @@ -6148,11 +5631,7 @@ msgstr "" msgid "Select option {i} of {numItems}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 -#~ msgid "Select some accounts below to follow" -#~ msgstr "" - -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6160,19 +5639,15 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 -#~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "" - -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6180,42 +5655,38 @@ msgstr "" msgid "Select what content this mute word should apply to." msgstr "" -#: src/screens/Onboarding/StepModeration/index.tsx:63 -#~ msgid "Select what you want to see (or not see), and we’ll handle the rest." -#~ msgstr "" - -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 -#~ msgid "Select your primary algorithmic feeds" -#~ msgstr "" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 -#~ msgid "Select your secondary algorithmic feeds" -#~ msgstr "" - #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6230,37 +5701,37 @@ msgctxt "action" msgid "Send Email" msgstr "" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6268,35 +5739,35 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -6304,55 +5775,22 @@ msgstr "" msgid "Set up your account" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:463 -#~ msgid "Sets color theme to dark" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:456 -#~ msgid "Sets color theme to light" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:450 -#~ msgid "Sets color theme to system setting" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:489 -#~ msgid "Sets dark theme to the dark theme" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:482 -#~ msgid "Sets dark theme to the dim theme" -#~ msgstr "" - -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "" - -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "" @@ -6360,20 +5798,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "" @@ -6386,28 +5823,20 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" - #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6425,7 +5854,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6437,7 +5866,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6445,23 +5874,19 @@ msgstr "" msgid "Shares the linked website" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "" - -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "" @@ -6475,16 +5900,12 @@ msgstr "" msgid "Show badge and filter from feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 -#~ msgid "Show follows similar to {0}" -#~ msgstr "" - #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -6492,14 +5913,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -6507,68 +5928,36 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:119 -#~ msgid "Show quote-posts in Following feed" -#~ msgstr "" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:135 -#~ msgid "Show quotes in Following" -#~ msgstr "" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:95 -#~ msgid "Show re-posts in Following feed" -#~ msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:87 -#~ msgid "Show replies in Following" -#~ msgstr "" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:71 -#~ msgid "Show replies in Following feed" -#~ msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:111 -#~ msgid "Show reposts in Following" -#~ msgstr "" - -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:347 -#~ msgid "Show users" -#~ msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" msgstr "" @@ -6577,36 +5966,31 @@ msgstr "" msgid "Show warning and filter from feeds" msgstr "" -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "" - #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "" @@ -6618,42 +6002,37 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "" -#: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "" - -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "" @@ -6661,8 +6040,8 @@ msgstr "" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -6670,17 +6049,22 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "" @@ -6692,11 +6076,7 @@ msgstr "" msgid "Some people can reply" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:203 -#~ msgid "Some subtitle" -#~ msgstr "" - -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -6705,40 +6085,32 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:169 -#~ msgid "Source: <0>{0}" -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" +msgid "Source:" msgstr "" #: src/lib/moderation/useReportOptions.ts:72 @@ -6751,85 +6123,69 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "" - -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" - -#: src/tours/Tooltip.tsx:99 -#~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." -#~ msgstr "" - -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#~ msgid "Status page" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" -#: src/screens/Signup/index.tsx:145 -#~ msgid "Step" -#~ msgstr "" - -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" -msgstr "Submit" +msgstr "" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "" @@ -6837,76 +6193,65 @@ msgstr "" msgid "Subscribe to @{0} to use these labels:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 -#~ msgid "Subscribe to the {0} feed" -#~ msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" -#: src/view/screens/Search/Search.tsx:425 -#~ msgid "Suggested Follows" -#~ msgstr "" - #: src/components/FeedInterstitials.tsx:318 msgid "Suggested for you" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "" -#: src/tours/HomeTour.tsx:48 -#~ msgid "Switch between feeds to control your experience." -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "" -#: src/components/dialogs/MutedWords.tsx:323 -#~ msgid "tag" -#~ msgstr "" - -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "" @@ -6914,23 +6259,19 @@ msgstr "" msgid "Tags only" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "" - #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -6939,10 +6280,6 @@ msgstr "" msgid "Tap to view full image" msgstr "" -#: src/view/com/util/images/AutoSizedImage.tsx:70 -#~ msgid "Tap to view fully" -#~ msgstr "" - #: src/state/shell/progress-guide.tsx:166 msgid "Task complete - 10 likes!" msgstr "" @@ -6952,7 +6289,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "" @@ -6960,23 +6297,23 @@ msgstr "" msgid "Tell a joke!" msgstr "" -#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 -msgid "Tell us a little more" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "" @@ -6987,33 +6324,29 @@ msgstr "" msgid "Terms used violate community standards" msgstr "" -#: src/components/dialogs/MutedWords.tsx:323 -#~ msgid "text" -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:266 msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "" - -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "" @@ -7021,42 +6354,38 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:127 -#~ msgid "the author" -#~ msgstr "" - #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "" @@ -7069,7 +6398,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7094,71 +6423,55 @@ msgstr "" msgid "The post may have been deleted." msgstr "" -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "" -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 -#~ msgid "There are many feeds to try:" -#~ msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "" - -#: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "" - -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "" - -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 -#~ msgid "There was an issue connecting to the chat." -#~ msgstr "" - -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7168,43 +6481,49 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "" #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 -#~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "" +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "" @@ -7212,16 +6531,15 @@ msgstr "" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "" @@ -7229,15 +6547,11 @@ msgstr "" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 -#~ msgid "These are popular accounts you might like:" -#~ msgstr "" - -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -7245,26 +6559,18 @@ msgstr "" msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:260 -#~ msgid "This appeal will be sent to <0>{0}." -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:26 -#~ msgid "This chat was disconnected due to a network error." -#~ msgstr "" - #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." msgstr "" @@ -7273,7 +6579,7 @@ msgstr "" msgid "This content has received a general warning from moderators." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "" @@ -7286,11 +6592,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -7298,19 +6604,13 @@ msgstr "" msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:59 -#: src/view/screens/ProfileFeed.tsx:471 -#: src/view/screens/ProfileList.tsx:729 -#~ msgid "This feed is empty!" -#~ msgstr "" - #: src/view/com/posts/CustomFeedEmptyState.tsx:37 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7318,7 +6618,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "" @@ -7326,23 +6626,15 @@ msgstr "" msgid "This is important in case you ever need to change your email or reset your password." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:124 -#~ msgid "This label was applied by {0}." -#~ msgstr "" - -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:165 -#~ msgid "This label was applied by you" -#~ msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7358,7 +6650,7 @@ msgstr "" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "" @@ -7370,32 +6662,28 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 -#~ msgid "This post will be hidden from feeds." -#~ msgstr "" - -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7403,7 +6691,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "" @@ -7440,48 +6728,36 @@ msgstr "" msgid "This user isn't following anyone." msgstr "" -#: src/view/com/modals/SelfLabel.tsx:137 -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "" - #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "" -#: src/components/dialogs/MutedWords.tsx:283 -#~ msgid "This will delete {0} from your muted words. You can always add it back later." -#~ msgstr "" - #: src/view/com/util/AccountDropdownBtn.tsx:55 msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "" -#: src/components/WhoCanReply.tsx:109 -#~ msgid "Thread settings updated" -#~ msgstr "" - -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "" @@ -7489,45 +6765,37 @@ msgstr "" msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" -#: src/components/dialogs/MutedWords.tsx:112 -#~ msgid "Toggle between muted word options." -#~ msgstr "" - #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "" -#: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "" - #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "" @@ -7536,40 +6804,40 @@ msgctxt "action" msgid "Try again" msgstr "" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -7577,14 +6845,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "" @@ -7594,17 +6862,17 @@ msgstr "" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7615,34 +6883,26 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 -#~ msgid "Unfollow" -#~ msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Unlike" -#~ msgstr "" - -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" @@ -7651,12 +6911,12 @@ msgstr "" msgid "Unmute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "" @@ -7664,41 +6924,38 @@ msgstr "" msgid "Unmute conversation" msgstr "" -#: src/components/dms/ConvoMenu.tsx:140 -#~ msgid "Unmute notifications" -#~ msgstr "" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#~ msgid "Unmuted" -#~ msgstr "" - -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "" @@ -7707,7 +6964,7 @@ msgstr "" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "" @@ -7715,89 +6972,98 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" -#: src/lib/moderation/useReportOptions.ts:85 -#~ msgid "Unwanted sexual content" -#~ msgstr "" - #: src/lib/moderation/useReportOptions.ts:77 #: src/lib/moderation/useReportOptions.ts:90 msgid "Unwanted Sexual Content" msgstr "" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" +msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "" @@ -7805,7 +7071,7 @@ msgstr "" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "" @@ -7842,91 +7108,82 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "" -#: src/components/WhoCanReply.tsx:280 -#~ msgid "users followed by <0/>" -#~ msgstr "" - #: src/components/WhoCanReply.tsx:258 msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:510 -#~ msgid "Verify {0}" -#~ msgstr "" - -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "" @@ -7935,37 +7192,34 @@ msgstr "" msgid "Verify New Email" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "" -#: src/view/screens/Settings/index.tsx:852 -#~ msgid "Version {0}" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "" @@ -7973,24 +7227,24 @@ msgstr "" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" -#: src/view/com/composer/videos/state.ts:27 -#~ msgid "Videos cannot be larger than 50MB" -#~ msgstr "" - -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "" @@ -8003,15 +7257,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "" @@ -8031,11 +7293,13 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "" @@ -8043,28 +7307,28 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8087,11 +7351,11 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8099,11 +7363,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -8111,27 +7375,19 @@ msgstr "" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "" -#: src/components/dialogs/MutedWords.tsx:203 -#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#~ msgstr "" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 -#~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "" - -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -8139,19 +7395,23 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -8159,24 +7419,20 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 -#~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." -#~ msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8184,15 +7440,11 @@ msgstr "" msgid "Welcome back!" msgstr "" -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 -#~ msgid "Welcome to <0>Bluesky" -#~ msgstr "" - #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "" @@ -8200,17 +7452,17 @@ msgstr "" msgid "What do you want to call your starter pack?" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "" @@ -8218,25 +7470,12 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" - #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "" -#: src/components/WhoCanReply.tsx:212 -#~ msgid "Who can reply dialog" -#~ msgstr "" - -#: src/components/WhoCanReply.tsx:216 -#~ msgid "Who can reply?" -#~ msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8268,36 +7507,32 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "" - -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "" @@ -8306,15 +7541,15 @@ msgstr "" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8322,11 +7557,10 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8339,7 +7573,7 @@ msgstr "" msgid "You are in line." msgstr "" -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8347,6 +7581,10 @@ msgstr "" msgid "You are not following anyone." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8356,20 +7594,12 @@ msgstr "" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:143 -#~ msgid "You can change these settings later." -#~ msgstr "" - -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" - -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" @@ -8381,7 +7611,7 @@ msgstr "" msgid "You do not have any followers." msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -8389,15 +7619,11 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "" -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "" -#: src/view/screens/Feeds.tsx:477 -#~ msgid "You don't have any saved feeds!" -#~ msgstr "" - -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "" @@ -8415,8 +7641,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8439,7 +7665,7 @@ msgstr "" msgid "You have muted this user" msgstr "" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -8447,24 +7673,20 @@ msgstr "" msgid "You have no feeds." msgstr "" -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "" -#: src/screens/Messages/List/index.tsx:200 -#~ msgid "You have no messages yet. Start a conversation with someone!" -#~ msgstr "" - -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "" -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "" -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "" @@ -8472,11 +7694,11 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -8505,23 +7727,15 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:95 -#~ msgid "You may only add up to 50 feeds" -#~ msgstr "" +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:78 -#~ msgid "You may only add up to 50 profiles" -#~ msgstr "" - -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 -#~ msgid "You must be 18 years or older to enable adult content" -#~ msgstr "" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -8529,12 +7743,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "" @@ -8542,53 +7755,53 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 -msgid "You'll stay updated with these feeds" +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." msgstr "" -#: src/screens/Onboarding/StepModeration/index.tsx:60 -#~ msgid "You're in control" -#~ msgstr "" +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -8601,7 +7814,7 @@ msgstr "" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "" @@ -8614,15 +7827,15 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "" @@ -8630,15 +7843,15 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "" @@ -8646,21 +7859,17 @@ msgstr "" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "" -#: src/screens/Onboarding/StepFollowingFeed.tsx:62 -#~ msgid "Your default feed is \"Following\"" -#~ msgstr "" - -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "" @@ -8685,7 +7894,7 @@ msgstr "" msgid "Your full handle will be" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "" @@ -8697,15 +7906,15 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "" @@ -8713,14 +7922,14 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index b1aff1aadd..c4dd4bf443 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -13,26 +13,26 @@ msgstr "" "Language-Team: brodieavoult\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" -msgstr "" +msgstr "(contiene contenido embedido)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" msgstr "(sin correo)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" -msgstr "" +msgstr "{0, plural, one {{formattedCount} otro} other {{formattedCount} otros}}" #: src/lib/hooks/useTimeAgo.ts:156 msgid "{0, plural, one {# day} other {# days}}" -msgstr "" +msgstr "{0, plural, one {# día} other {# días}}" #: src/lib/hooks/useTimeAgo.ts:146 msgid "{0, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{0, plural, one {# hora} other {# horas}}" #: src/components/moderation/LabelsOnMe.tsx:55 #~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" @@ -40,7 +40,7 @@ msgstr "" #: src/components/moderation/LabelsOnMe.tsx:54 msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" -msgstr "" +msgstr "{0, plural, one {se ha colocado # etiqueta en esta cuenta} other {se han colocado # etiquetas en esta cuenta}}" #: src/components/moderation/LabelsOnMe.tsx:61 #~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" @@ -48,23 +48,23 @@ msgstr "" #: src/components/moderation/LabelsOnMe.tsx:60 msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" -msgstr "" +msgstr "{0, plural, one {se ha colocado # etiqueta en este contenido} other {se han colocado # etiquetas en este contenido}}" #: src/lib/hooks/useTimeAgo.ts:136 msgid "{0, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{0, plural, one {# minuto} other {# minutos}}" #: src/lib/hooks/useTimeAgo.ts:167 msgid "{0, plural, one {# month} other {# months}}" -msgstr "" +msgstr "{0, plural, one {# mes} other {# meses}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "" +msgstr "{0, plural, one {# repost} other {# reposts}}" #: src/lib/hooks/useTimeAgo.ts:126 msgid "{0, plural, one {# second} other {# seconds}}" -msgstr "" +msgstr "{0, plural, one {# segundo} other {# segundos}}" #: src/components/KnownFollowers.tsx:179 #~ msgid "{0, plural, one {and # other} other {and # others}}" @@ -73,112 +73,112 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:398 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" -msgstr "" +msgstr "{0, plural, one {seguidor} other {seguidores}}" #: src/components/ProfileHoverCard/index.web.tsx:402 #: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" -msgstr "" +msgstr "{0, plural, one {siguiendo} other {siguiendo}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" -msgstr "" +msgstr "{0, plural, one {Me gusta (# me gusta)} other {Me gusta (# me gusta)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" -msgstr "" +msgstr "{0, plural, one {me gusta} other {me gusta}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "" +msgstr "{0, plural, one {Le gustó a # user} other {Les gustó a # users}}" #: src/screens/Profile/Header/Metrics.tsx:59 msgid "{0, plural, one {post} other {posts}}" -msgstr "" +msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" -msgstr "" +msgstr "{0, plural, one {cita} other {citas}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" -msgstr "" +msgstr "{0, plural, one {Responder (# respuesta)} other {Responder (# respuestas)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" -msgstr "" +msgstr "{0, plural, one {repost} other {reposts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" -msgstr "" +msgstr "{0, plural, one {No me gusta (# me gusta)} other {No me gusta (# me gusta)}}" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 msgid "{0} <0>in <1>tags" -msgstr "" +msgstr "{0} <0>en <1>tags" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" -msgstr "" +msgstr "{0} <0>en <1>texto y etiquetas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" -msgstr "" +msgstr "{0} se han unido esta semana" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" -msgstr "" +msgstr "{0} de {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "¡{0} personas han usado este paquete de inicio!" #: src/view/screens/ProfileList.tsx:286 #~ msgid "{0} your feeds" -#~ msgstr "" +#~ msgstr "{0} tus feeds" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" -msgstr "" +msgstr "avatar de {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Los feeds y personas favoritas de {0}, ¡únete a mí!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "paquete de inicio de {0}" #. How many days have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:158 msgid "{0}d" -msgstr "" +msgstr "{0}d" #. How many hours have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:148 msgid "{0}h" -msgstr "" +msgstr "{0}h" #. How many minutes have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:138 msgid "{0}m" -msgstr "" +msgstr "{0}m" #. How many months have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0}mo" -msgstr "" +msgstr "{0}mes" #. How many seconds have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:128 msgid "{0}s" -msgstr "" +msgstr "{0}s" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "" +msgstr "{count, plural, one {Le ha gustado a # usuario} other {Les han gustado a # usuarios}}" #: src/lib/hooks/useTimeAgo.ts:69 #~ msgid "{diff, plural, one {day} other {days}}" @@ -201,9 +201,9 @@ msgstr "" #~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "Paquete de inicio de {displayName}" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -213,32 +213,32 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} siguiendo" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" -msgstr "" +msgstr "No se puede enviar un mensaje a {handle}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} sin leer" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "" +msgstr "{profileName} se unió a Bluesky hace {0}" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} se unió a Bluesky usando un paquete de inicio hace {0}" #: src/view/screens/PreferencesFollowingFeed.tsx:67 #~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" @@ -252,12 +252,12 @@ msgstr "" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -266,15 +266,15 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" @@ -282,17 +282,21 @@ msgstr "" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} siguiendo" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" #: src/components/WhoCanReply.tsx:274 msgid "<0>{0} members" -msgstr "" +msgstr "<0>{0} miembros" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} en {time}" #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{followers} <1>seguidores" +#~ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:449 #: src/screens/Profile/Header/Metrics.tsx:45 @@ -300,57 +304,56 @@ msgstr "" #~ msgstr "<0>{following} <1>siguiendo" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Nombre de usuario inválido" #: src/components/dialogs/MutedWords.tsx:193 msgid "24 hours" -msgstr "" +msgstr "24 horas" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Confirmación 2FA" #: src/components/dialogs/MutedWords.tsx:232 msgid "30 days" -msgstr "" +msgstr "30 días" #: src/components/dialogs/MutedWords.tsx:217 msgid "7 days" -msgstr "" +msgstr "7 días" #: src/tours/Tooltip.tsx:70 #~ msgid "A help tooltip" #~ msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" -msgstr "" +msgstr "Acceder a enlaces y configuraciones de navegación" #: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" -msgstr "" +msgstr "Acceder al perfil y otros links de navegación" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Accesibilidad" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" @@ -358,21 +361,21 @@ msgstr "Ajustes de accesibilidad" #~ msgid "account" #~ msgstr "cuenta" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Cuenta" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Cuenta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" -msgstr "Cuenta bloqueada" +msgstr "Cuenta seguida" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Cuenta muteada" @@ -393,55 +396,57 @@ msgstr "Opciones de cuenta" msgid "Account removed from quick access" msgstr "Cuenta elimada de acceso rápido" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Cuenta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Has dejado de seguir a esta cuenta" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" -msgstr "Cuenta demuteada" +msgstr "Cuenta no silenciada" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Añadir" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" -msgstr "" +msgstr "Agregar {0} más para continuar" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "Agregar {displayName} al paquete de inicio" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Añadir advertencia de contenido" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Añadir cuenta a esta lista" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Añadir cuenta" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Añadir texto alternativo" @@ -449,19 +454,19 @@ msgstr "Añadir texto alternativo" #~ msgid "Add ALT text" #~ msgstr "Añadir texto alternativo" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" -msgstr "" +msgstr "Agregar texto alternativo (opcional)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Añadir contraseña de app" #: src/components/dialogs/MutedWords.tsx:321 msgid "Add mute word for configured settings" -msgstr "" +msgstr "Añadir palabra silenciada en los ajustes" #: src/components/dialogs/MutedWords.tsx:112 msgid "Add muted words and tags" @@ -475,24 +480,24 @@ msgstr "Añadir palabras silenciadas y etiquetas" msgid "Add recommended feeds" msgstr "Añadir feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "" +msgstr "Agregue el feed predeterminado de solo personas que sigue" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Añade el siguiente registro DNS a tu dominio:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" -msgstr "" +msgstr "Agregue este feed a sus feeds" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Añadir a listas" @@ -501,7 +506,7 @@ msgid "Add to my feeds" msgstr "Añadir a mis feeds" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Añadido a lista" @@ -513,94 +518,105 @@ msgstr "Añadido a mis feeds" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Ajusta la cantidad de me gusta que una respuesta debe tener para aparecer en tu feed." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Contenido adulto" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "El contenido para adultos solo se puede habilitar a través de la web en <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "El contenido adulto esta desactivado." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Avanzado" #: src/state/shell/progress-guide.tsx:171 msgid "Algorithm training complete!" -msgstr "" +msgstr "¡Entrenamiento de algoritmo completo!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" -msgstr "" +msgstr "¡Se han seguido todas las cuentas!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Todos tus feeds guardados, en un solo lugar." #: src/view/com/modals/AddAppPasswords.tsx:188 #: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" -msgstr "" +msgstr "Permitir el acceso a sus mensajes directos" #: src/screens/Messages/Settings.tsx:61 #: src/screens/Messages/Settings.tsx:64 #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" -msgstr "" +msgstr "Permitir nuevos mensajes de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" -msgstr "" +msgstr "Permitir respuestas de:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" -msgstr "" +msgstr "Permitir acceso a mensajes directos" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "¿Ya tienes un código?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Sesión ya iniciada como @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Texto alternativo" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "El texto alternativo describe imágenes a usuarios ciegos o con baja visión, y ayuda a dar más contexto a todos." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "El texto alternativo será truncado. Límite: {0} caracteres." + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Un código de verificación ha sido enviado a {0}. Ingresa ese código a continuación." @@ -608,63 +624,67 @@ msgstr "Un código de verificación ha sido enviado a {0}. Ingresa ese código a msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Un código de verificación ha sido enviado a tu dirección anterior, {0}. Ingresa ese código a continuación." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "¡Se ha enviado un correo electrónico! Ingrese el código de confirmación incluido en el correo electrónico a continuación." + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" -msgstr "" +msgstr "Se ha producido un error" #: src/components/dialogs/GifSelect.tsx:252 #~ msgid "An error occured" #~ msgstr "Ocurrió un error" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" -msgstr "" +msgstr "Ocurrió un error" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." -msgstr "" +msgstr "Se produjo un error al comprimir el video." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "" +msgstr "Se produjo un error al generar su paquete de inicio. ¿Quieres intentarlo de nuevo?" #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 msgid "An error occurred while loading the video. Please try again later." -msgstr "" +msgstr "Un error ocurrió al cargar el video. Por favor intente denuevo." #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 msgid "An error occurred while loading the video. Please try again." -msgstr "" +msgstr "Un error ocurrió mientras cargaba el video. Por favor intente denuevo." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "¡Se produjo un error al guardar el código QR!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" -msgstr "" +msgstr "Un error ocurrió mientras seleccionaba el video" #: src/components/dms/MessageMenu.tsx:134 #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocurrió un error al intentar eliminar el mensaje. Intenta de nuevo." -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "Un error ocurrió mientras intentaba seguir a todos" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." -msgstr "" +msgstr "Se produjo un error al cargar el video." #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -672,42 +692,42 @@ msgstr "Un problema no presente en estas opciones" #: src/components/dms/dialogs/NewChatDialog.tsx:36 msgid "An issue occurred starting the chat" -msgstr "" +msgstr "Se produjo un problema iniciando el chat" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" -msgstr "" +msgstr "Se produjo un problema mientras intentaba abrir el chat." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Ocurrió un problema. Intenta de nuevo." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "Ocurrió un error desconocido" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" -msgstr "" +msgstr "un etiquetador desconocido" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "y" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF animado" @@ -715,15 +735,20 @@ msgstr "GIF animado" msgid "Anti-Social Behavior" msgstr "Comportamiento antisocial" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 -msgid "Anybody can interact" -msgstr "" +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Cualquier idioma" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "Cualquiera puede interactuar" + +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Idioma de interfaz" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Contraseña de app eliminada" @@ -735,27 +760,27 @@ msgstr "El nombre de una contraseña de app sólo puede contener letras, número msgid "App Password names must be at least 4 characters long." msgstr "El nombre de una contraseña de app deben tener al menos 4 caracteres." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Ajustes de contraseñas de app" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Contraseñas de la app" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Apelar" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Apelar la etiqueta de \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apelación enviada" @@ -763,36 +788,36 @@ msgstr "Apelación enviada" #~ msgid "Appeal submitted." #~ msgstr "Apelación enviada" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" -msgstr "" +msgstr "Apelar esta decisión" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Aparencia" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" -msgstr "" +msgstr "Configuración de apariencia" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" -msgstr "" +msgstr "Configuración de apariencia" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" -msgstr "" +msgstr "Aplicar feeds recomendados predeterminados" #: src/screens/StarterPack/StarterPackScreen.tsx:610 #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "¿Seguro que quieres eliminar la contraseña de app \"{name}\"?" @@ -802,10 +827,14 @@ msgstr "¿Seguro que quieres eliminar la contraseña de app \"{name}\"?" #: src/components/dms/MessageMenu.tsx:149 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." -msgstr "" +msgstr "¿Estás seguro de que quieres eliminar este mensaje? El mensaje se eliminará para usted, pero no para el otro participante." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" +msgstr "¿Estás seguro de que quieres eliminar este paquete de inicio?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" msgstr "" #: src/components/dms/ConvoMenu.tsx:189 @@ -814,17 +843,17 @@ msgstr "" #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "" +msgstr "¿Estás seguro de que quieres dejar esta conversación? Sus mensajes serán eliminados para usted, pero no para el otro participante." #: src/view/com/feeds/FeedSourceCard.tsx:313 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "¿Seguro que quieres eliminar {0} de tus feeds?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" -msgstr "" +msgstr "¿Estás seguro que deseas remover esto de tus feeds?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "¿Seguro que quieres descartar este borrador?" @@ -837,11 +866,11 @@ msgid "Are you writing in <0>{0}?" msgstr "¿Estás escribiendo en <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Arte" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Desnudez artística o no erótica." @@ -850,22 +879,22 @@ msgid "At least 3 characters" msgstr "Al menos 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Atrás" @@ -873,20 +902,20 @@ msgstr "Atrás" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basado en tus intereses en {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "General" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Cumpleaños" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Cumpleaños:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Bloquear" @@ -895,45 +924,45 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear cuenta" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Bloquear cuenta" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "¿Bloquear cuenta?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Bloquear cuentas" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Bloquear lista" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "¿Bloquear estas cuentas?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera. No verás su contenido y no podrán ver el tuyo." @@ -945,86 +974,90 @@ msgstr "Post bloqueado." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueo es público. Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta, pero evitará que respondan en tus hilos, te mencionen o interactúen contigo de ninguna manera." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky es una red abierta donde puedes elegir un proveedor de servicio. Servicios personalizados ya están disponibles en beta para desarrolladores." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky es una red abierta donde puedes elegir un proveedor de servicio. Servicios personalizados ya están disponibles en beta para desarrolladores." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky es una red abierta donde puede elegir su proveedor de alojamiento. Si eres un desarrollador, puedes alojar tu propio servidor." #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" -msgstr "" +msgstr "¡Bluesky es mejor con amigos!" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su red." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada." #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" -msgstr "" +msgstr "Desenfocar imágenes" #: src/lib/moderation/useLabelBehaviorDescription.ts:51 msgid "Blur images and filter from feeds" -msgstr "" +msgstr "Desenfocar imágenes y filtrar desde los feeds" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Libros" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" -msgstr "" +msgstr "Explorar más cuentas" #: src/components/FeedInterstitials.tsx:483 msgid "Browse more feeds on the Explore page" -msgstr "" +msgstr "Revisar más feeds" #: src/components/FeedInterstitials.tsx:332 #: src/components/FeedInterstitials.tsx:335 #: src/components/FeedInterstitials.tsx:465 #: src/components/FeedInterstitials.tsx:468 msgid "Browse more suggestions" -msgstr "" +msgstr "Explorar más sugerencias" #: src/components/FeedInterstitials.tsx:358 #: src/components/FeedInterstitials.tsx:492 msgid "Browse more suggestions on the Explore page" -msgstr "" +msgstr "Explore más sugerencias" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" -msgstr "" +msgstr "Explorar otros feeds" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Negocios" @@ -1032,27 +1065,39 @@ msgstr "Negocios" msgid "by —" msgstr "por —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" -msgstr "By {0}" +msgstr "Por {0}" #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 #~ msgid "by @{0}" -#~ msgstr "by @{0}" +#~ msgstr "por @{0}" #: src/view/com/profile/ProfileSubpageHeader.tsx:164 msgid "by <0/>" -msgstr "by <0/>" +msgstr "por <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Al crear una cuenta, aceptas nuestros {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Al crear una cuenta, aceptas nuestros {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "Al crear una cuenta, usted acepta la <0>Política de privacidad." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "Al crear una cuenta, usted acepta los <0>Términos de Servicio y la <1>Política de privacidad." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "Al crear una cuenta, usted acepta los <0>Términos de Servicio." #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "por ti" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Cámara" @@ -1061,33 +1106,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos. Debe tener al menos 4 caracteres, pero no más de 32." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Cancelar" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1099,68 +1143,73 @@ msgstr "Cancelar" msgid "Cancel account deletion" msgstr "Cancelar la eliminación de la cuenta" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Cancelar cambio de nombre de usuario" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Cancelar recorte de imagen" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Cancelar edición de perfil" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Cancelar edición de perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Cancelar citación" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "Cancelar la reactivación y cerrar la sesión" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Cancelar búsqueda" #: src/view/com/modals/LinkWarning.tsx:106 msgid "Cancels opening the linked website" -msgstr "" +msgstr "Cancela apertura del sitio web vinculado" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" -msgstr "" +msgstr "No se puede interactuar con un usuario bloqueado" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" -msgstr "" +msgstr "Subtítulos (.vtt)" #: src/view/com/composer/videos/SubtitleDialog.tsx:56 msgid "Captions & alt text" -msgstr "" +msgstr "Subtítulos y texto alternativo" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "Cambiar la dirección de correo electrónico" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Cambiar nombre de usuario" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Cambiar nombre de usuario" @@ -1168,12 +1217,12 @@ msgstr "Cambiar nombre de usuario" msgid "Change my email" msgstr "Cambiar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Cambiar contraseña" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Cambiar contraseña" @@ -1185,9 +1234,10 @@ msgstr "Cambiar idioma del post a {0}" msgid "Change Your Email" msgstr "Cambiar correo electrónico" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Chat" @@ -1197,16 +1247,16 @@ msgstr "Chat muteado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Ajustes de chat" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" -msgstr "" +msgstr "Configuración de chat" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" @@ -1215,9 +1265,9 @@ msgstr "Chat demuteado" #: src/screens/SignupQueued.tsx:78 #: src/screens/SignupQueued.tsx:82 msgid "Check my status" -msgstr "" +msgstr "Verifique mi estado" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Te enviamos un código de inicio de sesión a tu correo. Introducelo aquí." @@ -1237,23 +1287,27 @@ msgstr "Te enviamos un código de verificación a tu correo. Introducelo aquí:" #~ msgid "Choose at least {0} more" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" -msgstr "" +msgstr "Elija Feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" -msgstr "" +msgstr "Elige para mi" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" +msgstr "Elige a la gente" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Elige proveedor" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Tu eliges los algoritmos que usar en tus feed." @@ -1270,7 +1324,7 @@ msgstr "Elige este color como tu avatar" #~ msgid "Choose your main feeds" #~ msgstr "Elige tus feeds principales" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Elige tu contraseña" @@ -1282,16 +1336,15 @@ msgstr "Elige tu contraseña" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Borrar todos los datos de almacenamiento heredados (reiniciar después de esto)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Borrar todos los datos de almacenamiento" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Borrar consulta de búsqueda" @@ -1299,41 +1352,41 @@ msgstr "Borrar consulta de búsqueda" #~ msgid "Clears all legacy storage data" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" -msgstr "" +msgstr "Borra todos los datos de almacenamiento" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" -msgstr "has clic aquí" +msgstr "clic aquí" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Clic aquí para obtener más información sobre la desactivación de su cuenta" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "Clic aquí para obtener más información." #: src/screens/Feeds/NoFollowingFeed.tsx:46 #~ msgid "Click here to add one." -#~ msgstr "Has clic aquí para agregar uno." +#~ msgstr "Clic aquí para agregar uno." #: src/components/TagMenu/index.web.tsx:152 msgid "Click here to open tag menu for {tag}" -msgstr "Has clic aquí para abrir el menu de {tag}" - -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 -msgid "Click to disable quote posts of this post." -msgstr "" +msgstr "Clic aquí para abrir el menu de {tag}" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 -msgid "Click to enable quote posts of this post." -msgstr "" +msgid "Click to disable quote posts of this post." +msgstr "Clic para deshabilitar las citas para esta publicación." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "Clic para habilitar las citas para esta publicación." + +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" -msgstr "" +msgstr "Click para reintentar mensaje fallido" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1341,44 +1394,41 @@ msgstr "Clima" #: src/components/dms/ChatEmptyPill.tsx:39 msgid "Clip 🐴 clop 🐴" -msgstr "" +msgstr "Clip 🐴 clop 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Cerrar" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" -msgstr "" +msgstr "Cerrar diálogo activo" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Cerrar la alerta" #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" -msgstr "Cierra el cajón inferior" +msgstr "Cerrar el cajón inferior" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" -msgstr "" +msgstr "Cerrar ventana" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" -msgstr "" +msgstr "Cerrar ventana de GIF" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 msgid "Close image" @@ -1389,73 +1439,81 @@ msgid "Close image viewer" msgstr "Cerrar el visor de imagen" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Cerrar el pie de página de navegación" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" -msgstr "" +msgstr "Cierre este diálogo" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" -msgstr "" +msgstr "Cierra la barra de navegación inferior" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" -msgstr "" +msgstr "Cierra la alerta de actualización de contraseña" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Cierra el compositor de post y descarga postry" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" -msgstr "" +msgstr "Cierra el espectador para la imagen del encabezado" #: src/view/com/notifications/FeedItem.tsx:265 msgid "Collapse list of users" -msgstr "" +msgstr "Lista de colapso de usuarios" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" -msgstr "" +msgstr "Colapsa la lista de usuarios para una notificación en particular" + +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Modo de color" #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" -msgstr "" +msgstr "Comedia" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" -msgstr "" +msgstr "Historietas" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directrices de la comunidad" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" -msgstr "" +msgstr "Complete la incorporación y comience a usar su cuenta" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" -msgstr "" +msgstr "Completa el desafío" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" -msgstr "" +msgstr "Componer publicaciones hasta {MAX_GRAPHEME_LENGTH} caracteres de longitud" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Redactar la respuesta" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1466,19 +1524,21 @@ msgstr "Redactar la respuesta" #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" -msgstr "" +msgstr "Configuración de filtrado de contenido para la categoría: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." -msgstr "" +msgstr "Configurado en <0>ajustes de moderación" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Confirmar" @@ -1489,38 +1549,43 @@ msgstr "Confirmar el cambio" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 msgid "Confirm content language settings" -msgstr "Confirmar la configuración del idioma del contenido" +msgstr "Confimar el idioma del contenido" #: src/view/com/modals/DeleteAccount.tsx:282 msgid "Confirm delete account" msgstr "Confirmar eliminación de cuenta" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" -msgstr "" +msgstr "Confirma tu edad:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" -msgstr "" +msgstr "Confirma tu fecha de nacimiento" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Código de confirmación" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "Código de confirmación" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" -msgstr "" +msgstr "Contactar a soporte" #: src/components/moderation/LabelsOnMe.tsx:42 #~ msgid "content" @@ -1528,55 +1593,55 @@ msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" -msgstr "" +msgstr "Contenido Bloqueado" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" -msgstr "" +msgstr "Filtros de contenido" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Idiomas de contenido" #: src/components/moderation/ModerationDetailsDialog.tsx:81 #: src/lib/moderation/useModerationCauseDescription.ts:80 msgid "Content Not Available" -msgstr "" +msgstr "Contenido no disponible" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Advertencia de contenido" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Advertencias de contenido" #: src/components/Menu/index.web.tsx:83 msgid "Context menu backdrop, click to close the menu." -msgstr "" +msgstr "Fondo del menú contextual, haga clic para cerrar el menú." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Continuar" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" -msgstr "" +msgstr "Continuar como {0} (actualmente ha iniciado sesión)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "Continuar hilo..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" -msgstr "" +msgstr "Continua al siguiente paso" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 #~ msgid "Continue to the next step" @@ -1586,103 +1651,104 @@ msgstr "" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" -msgstr "" +msgstr "Conversación eliminada" #: src/screens/Onboarding/index.tsx:41 msgid "Cooking" -msgstr "" +msgstr "Cocinando" #: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" -msgstr "" +msgstr "Versión de compilación copiada al portapapeles" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" -msgstr "" +msgstr "Copiado al portapapeles" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" -msgstr "" +msgstr "¡Copiado!" #: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" -msgstr "" +msgstr "Copia la contraseña de la aplicación" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copiar" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" -msgstr "" +msgstr "Copiar {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" -msgstr "" +msgstr "Copiar código" #: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" -msgstr "" +msgstr "Copiar link" #: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" -msgstr "" +msgstr "Copiar Link" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" -msgstr "Copia el enlace a la post" +msgstr "Copiar el enlace hacia el post" #: src/components/dms/MessageMenu.tsx:110 #: src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" -msgstr "" +msgstr "Copiar texto del mensaje" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" -msgstr "Copiar el texto de la post" +msgstr "Copiar texto del post" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" -msgstr "" +msgstr "Copiar código QR" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de derechos de autor" #: src/view/com/composer/videos/state.ts:31 #~ msgid "Could not compress video" -#~ msgstr "" +#~ msgstr "No se puede comprimir el video" #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "No se pudo salir de este chat" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "No se pudo cargar este feed" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "No se pudo cargar esta lista" @@ -1696,157 +1762,163 @@ msgstr "No se pudo mutear al chat" #: src/view/com/composer/videos/VideoPreview.web.tsx:56 msgid "Could not process your video" -msgstr "" +msgstr "No se pudo procesar tu video" #: src/components/dms/ConvoMenu.tsx:68 #~ msgid "Could not unmute chat" -#~ msgstr "" +#~ msgstr "No se pudo desmutear el chat" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" -msgstr "" +msgstr "Crear" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Crear una cuenta nueva" +#~ msgid "Create a new account" +#~ msgstr "Crear una cuenta nueva" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" -msgstr "" +msgstr "Crear una nueva cuenta de Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "Crear un código QR para pack de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" -msgstr "" +msgstr "Crea un paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" -msgstr "" +msgstr "Crea un paquete de inicio para mí" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "Crear una cuenta" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 msgid "Create an account" -msgstr "" +msgstr "Crea una cuenta" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" -msgstr "" +msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" -msgstr "" +msgstr "Crea otro" #: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" -msgstr "" +msgstr "Crea una contraseña de aplicación" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crear una cuenta nueva" #: src/components/StarterPack/ShareDialog.tsx:158 #~ msgid "Create QR code" -#~ msgstr "" +#~ msgstr "Crea un código QR" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" -msgstr "" +msgstr "Crea un reporte de {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Creado {0}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" -msgstr "" +msgstr "Cultura" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" -msgstr "" +msgstr "Personalizado" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Dominio personalizado" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." -msgstr "" +msgstr "Los feeds personalizados creados por la comunidad te brindan nuevas experiencias y te ayudan a encontrar el contenido que te encanta." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Preferencias sobre medios externos." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." -msgstr "" - -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 -msgid "Dark" -msgstr "" - -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 -msgid "Dark mode" -msgstr "" +msgstr "Personaliza quién puede interactuar con esta publicación." #: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:130 +msgid "Dark" +msgstr "Oscuro" + +#: src/view/screens/Debug.tsx:70 +msgid "Dark mode" +msgstr "Modo Oscuro" + +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" -msgstr "" +msgstr "Tema oscuro" #: src/view/screens/Settings/index.tsx:473 #~ msgid "Dark Theme" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" -msgstr "" +msgstr "Fecha de nacimiento" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" -msgstr "" +msgstr "Desactivar cuenta" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" -msgstr "" +msgstr "Desactivar mi cuenta" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" -msgstr "" +msgstr "Moderacion de depuración" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" -msgstr "" +msgstr "Panel de depuración" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "Por Defecto" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" -msgstr "" +msgstr "Borrar" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Borrar la cuenta" @@ -1858,153 +1930,165 @@ msgstr "Borrar la cuenta" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Borrar la contraseña de la app" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" -msgstr "" +msgstr "Borrar la contraseña de la app?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" #: src/components/dms/MessageMenu.tsx:124 msgid "Delete for me" -msgstr "" +msgstr "Borrar para mi" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Borrar la lista" #: src/components/dms/MessageMenu.tsx:147 msgid "Delete message" -msgstr "" +msgstr "Borrar mensaje" #: src/components/dms/MessageMenu.tsx:122 msgid "Delete message for me" -msgstr "" +msgstr "Borrar mensaje para mi" #: src/view/com/modals/DeleteAccount.tsx:285 msgid "Delete my account" msgstr "Borrar mi cuenta" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" -msgstr "" +msgstr "Borrar Mi Cuenta…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" -msgstr "Borrar una post" +msgstr "Borrar un post" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" -msgstr "" +msgstr "Borrar paquete de inicio" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" -msgstr "" +msgstr "¿Borrar pack de inicio?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" -msgstr "" +msgstr "¿Borrar esta lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "¿Borrar esta post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" -msgstr "" +msgstr "Eliminado" #: src/view/com/post-thread/PostThread.tsx:398 msgid "Deleted post." -msgstr "Se borró la post." +msgstr "Se borró el post." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Descripción" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" -msgstr "" +msgstr "Texto descriptivo alternativo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" -msgstr "" +msgstr "Desvincular cita" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" -msgstr "" +msgstr "¿Desvincular publicación de la cita?" #: src/components/WhoCanReply.tsx:175 msgid "Dialog: adjust who can interact with this post" -msgstr "" +msgstr "Ajustar quién puede interactuar con esta publicación" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "¿Quieres decir algo?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "No reproducir GIFs automáticamente" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" -msgstr "" +msgstr "Desactivar la reproducción automática de videos y GIFs" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" -msgstr "" +msgstr "Desactivar Correo 2FA" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" -msgstr "" +msgstr "Desactivar la retroalimentación háptica" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" -msgstr "" +msgstr "Desactivar subtitulos" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" -msgstr "" +msgstr "Deshabilitado" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:837 -msgid "Discard draft?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" msgstr "" -#: src/screens/Moderation/index.tsx:552 +#: src/view/com/composer/Composer.tsx:531 +msgid "Discard draft?" +msgstr "¿Descartar borrador?" + #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados" @@ -2015,112 +2099,133 @@ msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconecta #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" -msgstr "" +msgstr "Descubre nuevos feeds personalizados" #: src/view/screens/Search/Explore.tsx:389 msgid "Discover new feeds" -msgstr "" +msgstr "Descubrir nuevos feeds" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" -msgstr "" +msgstr "Descubrir Nuevos Feeds" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" -msgstr "" +msgstr "Descartar error" #: src/components/ProgressGuide/List.tsx:40 msgid "Dismiss getting started guide" -msgstr "" +msgstr "Descartar la guía de introducción" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" -msgstr "" +msgstr "Mostrar insignias de texto alternativo más grandes" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Mostrar el nombre" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Mostrar el nombre" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Mostrar el nombre" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Con panel de DNS" #: src/components/dialogs/MutedWords.tsx:302 msgid "Do not apply this mute word to users you follow" +msgstr "No aplicar esta palabra silenciada a los usuarios que sigues" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." -msgstr "" +msgstr "No incluye desnudez." #: src/screens/Signup/StepHandle.tsx:159 msgid "Doesn't begin or end with a hyphen" -msgstr "" +msgstr "No comienza ni termina con un guion." + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "Domain Value" +msgstr "Valor de dominio" #: src/view/com/modals/ChangeHandle.tsx:475 -msgid "Domain Value" -msgstr "" - -#: src/view/com/modals/ChangeHandle.tsx:482 msgid "Domain verified!" msgstr "¡Dominio verificado!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Listo" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" -msgstr "" +msgstr "Listo" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 msgid "Done{extraText}" msgstr "Listo{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 -msgid "Download Bluesky" -msgstr "" +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "Doble toque para cerrar el diálogo" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "Descargar Bluesky" + +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" -msgstr "" +msgstr "Descargar archivo CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" -msgstr "" +msgstr "Arrastra para agregar imagenes" #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 #~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." @@ -2128,41 +2233,45 @@ msgstr "" #: src/components/dialogs/MutedWords.tsx:153 msgid "Duration:" -msgstr "" +msgstr "Duración:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "p. ej. alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "p. ej. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "p. ej. Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "p. ej. alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "p. ej. Artista, amante de los perros, y lector ávido." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "p. ej. Artista, amante de los perros, y lector ávido." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "p. ej. Desnudez artística." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "p. ej. Grandes usuarios" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "p. ej. Spammers" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "p. ej. Usuarios que simpre aciertan." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "p. ej. Usuarios que constantemente responden con publicidad." @@ -2170,73 +2279,76 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" -msgstr "" +msgstr "Editar" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" -msgstr "" +msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" -msgstr "" +msgstr "Editar avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" -msgstr "" +msgstr "Editar Feeds" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Editar la imagen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" -msgstr "" +msgstr "Editar ajustes de interacción" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Editar los detalles de la lista" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" -msgstr "" +msgstr "Editar lista de Moderación" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Editar mis noticias" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Editar mi perfil" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Editar mi perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" -msgstr "" +msgstr "Editar Personas" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 msgid "Edit post interaction settings" -msgstr "" +msgstr "Editar ajustes de interacción del post" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Editar el perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Editar el perfil" @@ -2245,60 +2357,60 @@ msgstr "Editar el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar mis noticias guardadas" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" -msgstr "" +msgstr "Editar pack inicial" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" -msgstr "" +msgstr "Editar lista de Usuarios" #: src/components/WhoCanReply.tsx:87 msgid "Edit who can reply" -msgstr "" +msgstr "Editar quien puede responder" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Editar tu nombre para mostrar " -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Edita tu descripcion de perfil" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" -msgstr "" +msgstr "Edita tu paquete de inicio" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" -msgstr "" +msgstr "Educación" #: src/components/dialogs/ThreadgateEditor.tsx:98 #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Correo electrónico" #: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 msgid "Email 2FA disabled" -msgstr "" +msgstr "Correo 2FA deshabilitado" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Dirección de correo electrónico" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" -msgstr "" +msgstr "Correo electrónico reenviado" #: src/view/com/modals/ChangeEmail.tsx:54 #: src/view/com/modals/ChangeEmail.tsx:83 msgid "Email updated" -msgstr "" +msgstr "Correo electrónico actualizado" #: src/view/com/modals/ChangeEmail.tsx:106 msgid "Email Updated" @@ -2306,37 +2418,37 @@ msgstr "Correo electrónico actualizado" #: src/view/com/modals/VerifyEmail.tsx:85 msgid "Email verified" -msgstr "" +msgstr "Correo electrónico verificado" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" -msgstr "" +msgstr "Correo electrónico verificado" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Correo electrónico:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" -msgstr "" +msgstr "Insertar código HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" -msgstr "" +msgstr "Insertar post" #: src/components/dialogs/Embed.tsx:101 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -msgstr "" +msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguiente fragmento y pégalo en el código HTML de tu sitio web." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" -msgstr "" +msgstr "Activar {0} solamente" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" -msgstr "" +msgstr "Activar contenido adulto" #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 #~ msgid "Enable Adult Content" @@ -2347,39 +2459,39 @@ msgstr "" #~ msgid "Enable adult content in your feeds" #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" -msgstr "" +msgstr "Activar medios externos" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" -msgstr "" +msgstr "Habilitar notificaciones prioritarias" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" -msgstr "" +msgstr "Activar subtítutlos" #: src/view/screens/PreferencesFollowingFeed.tsx:145 #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" -msgstr "" +msgstr "Habilitar solo esta fuente" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" -msgstr "" +msgstr "Activado" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Fin de noticias" @@ -2391,131 +2503,137 @@ msgstr "Fin de noticias" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." -msgstr "" +msgstr "Asegúrate de haber seleccionado un idioma para cada archivo de subtítulos." #: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" -msgstr "" +msgstr "Ingresa un nombre para esta contraseña de aplicación" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" -msgstr "" +msgstr "Ingresa una contraseña" #: src/components/dialogs/MutedWords.tsx:127 #: src/components/dialogs/MutedWords.tsx:128 msgid "Enter a word or tag" -msgstr "" +msgstr "Ingresa una palabra o tag" + +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "Ingresa Código" #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" -msgstr "" +msgstr "Ingresa Código de Confirmación" #: src/view/com/modals/ChangePassword.tsx:154 msgid "Enter the code you received to change your password." -msgstr "" +msgstr "Ingresa el código que recibiste para cambiar tu contraseña." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Introduce el dominio que quieres utilizar" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Introduce el correo electrónico que utilizaste para crear tu cuenta. Te enviaremos un \"código de restablecimiento\" para que puedas establecer una nueva contraseña." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" -msgstr "" +msgstr "Ingresa tu fecha de nacimiento" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Introduce la dirección de correo electrónico" #: src/view/com/modals/ChangeEmail.tsx:42 msgid "Enter your new email above" -msgstr "" +msgstr "Ingresa tu nuevo correo arriba" #: src/view/com/modals/ChangeEmail.tsx:112 msgid "Enter your new email address below." msgstr "Introduce tu nueva dirección de correo electrónico a continuación." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Introduce tu nombre de usuario y contraseña" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" -msgstr "" +msgstr "Ocurrió un error al guardar el archivo" #: src/screens/Signup/StepCaptcha/index.tsx:56 msgid "Error receiving captcha response." -msgstr "" +msgstr "Error al recibir la respuesta del captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Error:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Todos" #: src/components/WhoCanReply.tsx:67 msgid "Everybody can reply" -msgstr "" +msgstr "Todos pueden responder" #: src/components/WhoCanReply.tsx:213 msgid "Everybody can reply to this post." -msgstr "" +msgstr "Todos pueden responder a esta publicación." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" -msgstr "" +msgstr "Todos" #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" -msgstr "" +msgstr "Menciones o respuestas excesivas" #: src/lib/moderation/useReportOptions.ts:86 msgid "Excessive or unwanted messages" -msgstr "" +msgstr "Mensajes excesivos o no deseados" #: src/components/dialogs/MutedWords.tsx:311 msgid "Exclude users you follow" -msgstr "" +msgstr "Excluir a los usuarios que sigues" #: src/components/dialogs/MutedWords.tsx:514 msgid "Excludes users you follow" -msgstr "" +msgstr "Excluye a los usuarios que sigues" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" -msgstr "" +msgstr "Salir de pantalla completa" #: src/view/com/modals/DeleteAccount.tsx:293 msgid "Exits account deletion process" -msgstr "" +msgstr "Salir del proceso de eliminación de cuenta" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" -msgstr "" +msgstr "Salir del proceso de cambio de nombre de usuario" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" -msgstr "" +msgstr "Salir del proceso de recorte de imagen" #: src/view/com/lightbox/Lightbox.web.tsx:130 msgid "Exits image view" -msgstr "" +msgstr "Salir de la vista de imagen" #: src/view/com/modals/ListAddRemoveUsers.tsx:89 msgid "Exits inputting search query" -msgstr "" +msgstr "Salir de la entrada de la consulta de búsqueda" #: src/view/com/lightbox/Lightbox.web.tsx:183 msgid "Expand alt text" @@ -2523,101 +2641,104 @@ msgstr "Expandir el texto alt" #: src/view/com/notifications/FeedItem.tsx:266 msgid "Expand list of users" -msgstr "" +msgstr "Expandir lista de usuarios" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" +msgstr "Expandir o colapsar la publicación completa a la que estás respondiendo." + +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "" +msgstr "Experimental: Cuando esta preferencia esté habilitada, solo recibirás notificaciones de respuestas y citas de los usuarios que sigues. Seguiremos añadiendo más controles aquí con el tiempo." #: src/components/dialogs/MutedWords.tsx:500 msgid "Expired" -msgstr "" +msgstr "Expirado" #: src/components/dialogs/MutedWords.tsx:502 msgid "Expires {0}" -msgstr "" +msgstr "Expira {0}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." -msgstr "" +msgstr "Medios explícitos o potencialmente perturbadores." #: src/lib/moderation/useGlobalLabelStrings.ts:35 msgid "Explicit sexual images." -msgstr "" +msgstr "Imágenes sexuales explícitas." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" -msgstr "" +msgstr "Exportar mis datos" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" -msgstr "" +msgstr "Exportar Mis Datos" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Medios externos" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita ningún tipo de información hasta que presiones el botón de \"play\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Medios externos" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Medios externos" #: src/view/com/modals/AddAppPasswords.tsx:119 #: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." -msgstr "" +msgstr "Error al crear la contraseña de la aplicación." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" -msgstr "" +msgstr "Error al crear el paquete de inicio." -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." -msgstr "" +msgstr "Error al crear la lista. Verifica tu conexión a Internet y vuelve a intentarlo." #: src/components/dms/MessageMenu.tsx:73 msgid "Failed to delete message" -msgstr "" +msgstr "Error al eliminar el mensaje." -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" -msgstr "" +msgstr "Error al eliminar la publicación, por favor intenta de nuevo." -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" -msgstr "" +msgstr "Error al eliminar el paquete inicial." #: src/view/screens/Search/Explore.tsx:427 #: src/view/screens/Search/Explore.tsx:455 msgid "Failed to load feeds preferences" -msgstr "" +msgstr "Error al cargar las preferencias de feeds." -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" -msgstr "" +msgstr "Error al cargar los GIFs." -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" -msgstr "" +msgstr "Error al cargar los mensajes anteriores." #: src/screens/Messages/Conversation/MessageListError.tsx:28 #~ msgid "Failed to load past messages." @@ -2626,61 +2747,64 @@ msgstr "" #: src/view/screens/Search/Explore.tsx:420 #: src/view/screens/Search/Explore.tsx:448 msgid "Failed to load suggested feeds" -msgstr "" +msgstr "Error al cargar los feeds sugeridos." #: src/view/screens/Search/Explore.tsx:378 msgid "Failed to load suggested follows" -msgstr "" +msgstr "Error al cargar las sugerencias de seguimiento." -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "Error al fijar la publicación." + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" -msgstr "" +msgstr "Error al guardar la imagen: {0}" #: src/state/queries/notifications/settings.ts:39 msgid "Failed to save notification preferences, please try again" -msgstr "" +msgstr "Error al guardar las preferencias de notificación, por favor intenta de nuevo." -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" -msgstr "" +msgstr "Error al enviar" #: src/screens/Messages/Conversation/MessageListError.tsx:29 #~ msgid "Failed to send message(s)." -#~ msgstr "" +#~ msgstr "Error al enviar mensaje(s)" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "" +msgstr "Error al enviar la apelación, por favor intenta de nuevo." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "Error al cambiar el estado de silencio del hilo, por favor intenta de nuevo." -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" -msgstr "" +msgstr "Error al actualizar los feeds" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" -msgstr "" +msgstr "Error al actualizar los ajustes" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" -msgstr "" +msgstr "Error al subir video" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" -msgstr "" +msgstr "Feed por {0}" #: src/view/screens/Feeds.tsx:709 #~ msgid "Feed offline" @@ -2688,26 +2812,30 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "Alternar Feed" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Feeds" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Las noticias son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para más información." @@ -2715,51 +2843,52 @@ msgstr "Las noticias son algoritmos personalizados que los usuarios construyen c #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" -msgstr "" +msgstr "¡Feeds actualizados!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" -msgstr "" +msgstr "Contenido del Archivo" #: src/view/screens/Settings/ExportCarDialog.tsx:42 msgid "File saved successfully!" -msgstr "" +msgstr "¡Archivo guardado exitosamente!" #: src/lib/moderation/useLabelBehaviorDescription.ts:66 msgid "Filter from feeds" -msgstr "" +msgstr "Filtrar de los feeds" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" -msgstr "" +msgstr "Finalizando" #: src/view/com/posts/CustomFeedEmptyState.tsx:47 #: src/view/com/posts/FollowingEmptyState.tsx:53 #: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" -msgstr "" +msgstr "Buscar cuentas para seguir" #: src/tours/HomeTour.tsx:88 #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" -msgstr "" +msgstr "Buscar publicaciones y usuarios en Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." -msgstr "" +msgstr "Ajusta el contenido que ves en tu feed de Seguimiento." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Ajusta los hilos de discusión." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" -msgstr "" +msgstr "Terminar" #: src/tours/Tooltip.tsx:149 #~ msgid "Finish tour and begin using the application" @@ -2769,25 +2898,25 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "" +#~ msgid "Flip horizontal" +#~ msgstr "" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "" +#~ msgid "Flip vertically" +#~ msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Seguir" @@ -2796,46 +2925,46 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" -msgstr "" +msgstr "Seguir {name}" #: src/components/ProgressGuide/List.tsx:54 msgid "Follow 7 accounts" -msgstr "" +msgstr "Sigue 7 cuentas" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Seguir cuenta" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" -msgstr "" +msgstr "Seguir a todos" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 #~ msgid "Follow All" -#~ msgstr "" +#~ msgstr "Seguir a todos" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Seguir de vuelta" #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "" +msgstr "Seguir de vuelta" #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "" +msgstr "Sigue más cuentas para conectarte con tus intereses y ampliar tu red." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 #~ msgid "Follow selected accounts and continue to the next step" @@ -2851,21 +2980,21 @@ msgstr "" #: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" -msgstr "" +msgstr "Seguido por <0>{0}" #: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Seguido por <0>{0} y {1, plural, one {# other} other {# others}}" #: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" -msgstr "" +msgstr "Seguido por <0>{0} y <1>{1}" #: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Seguido por <0>{0}, <1>{1}, y {2, plural, one {# other} other {# others}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Usuarios seguidos" @@ -2879,68 +3008,78 @@ msgstr "ha comenzado a seguirte" #: src/view/com/notifications/FeedItem.tsx:205 msgid "followed you back" -msgstr "" +msgstr "te ha seguido de vuelta" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "Seguidores de @{0} que conoces" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" -msgstr "" +msgstr "Seguidores que conoces" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Siguiendo" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Siguiendo {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" -msgstr "" +msgstr "Siguiendo {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" -msgstr "Feed de Siguiendo" +msgstr "Preferencias del feed de Seguimiento" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" -msgstr "Feed de Siguiendo" +msgstr "Preferencias del feed de Seguimiento" #: src/tours/HomeTour.tsx:59 #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Te sigue" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "Fuente" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "Tamaño de fuente" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Comida" @@ -2952,55 +3091,60 @@ msgstr "Por razones de seguridad, tendremos que enviarte un código de confirmac msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrás volver a verla de nuevo. Si pierdes esta contraseña, tendrás que generar una nueva." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema." + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" -msgstr "" +msgstr "Para siempre" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Olvidé mi contraseña" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "¿Has olvidado tu contraseña?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" -msgstr "" +msgstr "¿La olvidaste?" #: src/lib/moderation/useReportOptions.ts:54 msgid "Frequently Posts Unwanted Content" msgstr "" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" -msgstr "" +msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" -msgstr "" +msgstr "De <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" -msgstr "" +msgstr "Pantalla Completa" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galería" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" -msgstr "" +msgstr "Genera un paquete de inicio" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" -msgstr "" +msgstr "Obtiene ayuda" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3009,28 +3153,27 @@ msgstr "Comenzar" #: src/components/ProgressGuide/List.tsx:33 msgid "Getting started" -msgstr "" +msgstr "Comenzando" #: src/components/MediaPreview.tsx:122 msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" -msgstr "" +msgstr "Dale a tu perfil un rostro" #: src/lib/moderation/useReportOptions.ts:39 msgid "Glaring violations of law or terms of service" msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Volver" @@ -3038,10 +3181,10 @@ msgstr "Volver" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Volver" @@ -3049,39 +3192,39 @@ msgstr "Volver" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" -msgstr "" +msgstr "Volver al paso anterior" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" -msgstr "" +msgstr "Volver al paso anterior" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" -msgstr "" +msgstr "Ir al inicio" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" -msgstr "" +msgstr "Ir al inicio" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" -msgstr "" +msgstr "Ir a la conversiación con {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Ir al siguiente" #: src/components/dms/ConvoMenu.tsx:167 msgid "Go to profile" -msgstr "" +msgstr "Ir al perfil" #: src/tours/Tooltip.tsx:138 #~ msgid "Go to the next step of the tour" @@ -3089,21 +3232,23 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" -msgstr "" +msgstr "Ir al perfil del usuario" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Contenido Gráfico" #: src/state/shell/progress-guide.tsx:161 msgid "Half way there!" -msgstr "" +msgstr "Ya estas a mitad de camino!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" -msgstr "Nombre de usuarioContenido Gráfico" +msgstr "Nombre de usuario" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Vibración" @@ -3111,26 +3256,26 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, trolling o intolerancia" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" -msgstr "" +msgstr "¿Tienes problemas?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." -msgstr "" +msgstr "Ayuda a que las personas sepan que no eres un bot subiendo una foto o creando un avatar." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 #~ msgid "Here are some accounts for you to follow" @@ -3148,22 +3293,22 @@ msgstr "" msgid "Here is your app password." msgstr "Aquí tienes tu contraseña de la app." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" -msgstr "" +msgstr "Lista oculta" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -3173,36 +3318,36 @@ msgstr "Ocultar" #~ msgid "Hide post" #~ msgstr "Ocultar post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" -msgstr "" +msgstr "Ocultar el post para mi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" -msgstr "" +msgstr "Ocultar respuesta para todos" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" -msgstr "" +msgstr "Ocultar respuesta para mi" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" -msgstr "" +msgstr "Ocultar el contenido" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "¿Ocultar este post?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" -msgstr "" +msgstr "¿Ocultar esta respuesta?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Ocultar lista de usuarios" @@ -3226,193 +3371,200 @@ msgstr "El servidor de noticias ha respondido de forma incorrecta. Por favor, in msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas para encontrar esta noticia. Puede que la hayan borrado." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" #: src/screens/Profile/ErrorState.tsx:31 msgid "Hmmmm, we couldn't load that moderation service." -msgstr "" +msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Consulta a continuación para más detalles. Si este problema persiste, por favor contáctanos." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" -msgstr "" +msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Inicio" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" -msgstr "" +msgstr "Alojamiento:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Proveedor de alojamiento" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" -msgstr "" +msgstr "¿Cómo deberíamos abrir este enlace?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Tengo un código" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "Tengo un código" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" -msgstr "" +msgstr "Tengo un código de confirmación" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Tengo mi propio dominio" #: src/components/dms/BlockedByListDialog.tsx:57 #: src/components/dms/ReportConversationPrompt.tsx:22 msgid "I understand" -msgstr "" +msgstr "Lo entiendo" #: src/view/com/lightbox/Lightbox.web.tsx:185 msgid "If alt text is long, toggles alt text expanded state" -msgstr "" +msgstr "Si el texto alternativo es largo, alterna el estado expandido del texto alternativo." #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Si no se selecciona ninguno, es apto para todas las edades." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Si no se selecciona ninguno, es apto para todas las edades." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." -msgstr "" +msgstr "Si aún no eres un adulto según las leyes de tu país, tu padre, madre o tutor legal debe leer estos Términos en tu nombre." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." -msgstr "" +msgstr "Si eliminas esta lista, no podrás recuperarla." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." -msgstr "" +msgstr "Si eliminas este post, no podrás recuperarlo." #: src/view/com/modals/ChangePassword.tsx:149 msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "" +msgstr "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "" +msgstr "Si estás intentando cambiar tu nombre de usuario o correo electrónico, hazlo antes de desactivar tu cuenta." #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" -msgstr "" +msgstr "Ilegal y Urgente" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" -msgstr "" +msgstr "Imagen" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Texto alt de la imagen" +#~ msgid "Image alt text" +#~ msgstr "Texto alt de la imagen" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "¡Imagen guardada en tu carrete de fotos!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" -msgstr "" +msgstr "Suplantación de identidad o afirmaciones falsas sobre identidad o afiliación" #: src/lib/moderation/useReportOptions.ts:68 msgid "Impersonation, misinformation, or false claims" -msgstr "" +msgstr "Suplantación de identidad, desinformación o afirmaciones falsas" #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" -msgstr "" +msgstr "Mensajes inapropiados o enlaces explícitos" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" -msgstr "" +msgstr "Introduce el código enviado a tu correo electrónico para restablecer la contraseña" #: src/view/com/modals/DeleteAccount.tsx:246 msgid "Input confirmation code for account deletion" -msgstr "" +msgstr "Introduce el código de confirmación para la eliminación de la cuenta" #: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" -msgstr "" +msgstr "Introduce un nombre para la contraseña de la aplicación" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" -msgstr "" +msgstr "Introduce una nueva contraseña" #: src/view/com/modals/DeleteAccount.tsx:265 msgid "Input password for account deletion" -msgstr "" +msgstr "Introduce la contraseña para la eliminación de la cuenta" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" -msgstr "" +msgstr "Introduce el código que se te ha enviado por correo electrónico." #: src/screens/Login/LoginForm.tsx:221 #~ msgid "Input the password tied to {identifier}" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" -msgstr "" +msgstr "Introduce el nombre de usuario o la dirección de correo electrónico que usaste al registrarte" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" -msgstr "" +msgstr "Introduce tu contraseña" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" -msgstr "" +msgstr "Introduce tu proveedor de alojamiento preferido" #: src/screens/Signup/StepHandle.tsx:114 msgid "Input your user handle" -msgstr "" +msgstr "Introduce tu nombre de usuario" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" -msgstr "" +msgstr "Interacción limitada" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "Presentando nuevas configuraciones de fuentes" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." -msgstr "" +msgstr "Código de confirmación 2FA no es válido." #: src/view/com/post-thread/PostThreadItem.tsx:264 msgid "Invalid or unsupported post record" -msgstr "" +msgstr "Registro de publicación inválido o no compatible" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Nombre de usuario o contraseña no válidos" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" -msgstr "" +msgstr "Código de Verificación no válido" #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" msgstr "Invita a un amigo" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Código de invitación" @@ -3422,79 +3574,93 @@ msgstr "No se acepta el código de invitación. Comprueba que lo has introducido #: src/view/com/modals/InviteCodes.tsx:171 msgid "Invite codes: {0} available" -msgstr "" +msgstr "Códigos de invitación: {0} disponibles" #: src/view/com/modals/InviteCodes.tsx:170 msgid "Invite codes: 1 available" -msgstr "" +msgstr "Códigos de invitación: 1 disponible" #: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "¡Invita a personas a este paquete inicial!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "Invita a tus amigos a seguir tus feeds y personas favoritas" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +msgstr "Invitaciones, pero personales" + +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "Parece que podrías haber ingresado tu dirección de correo electrónico incorrectamente. ¿Estás seguro de que es correcta?" #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "Es correcto" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "" +msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete inicial buscando arriba." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" -msgstr "" +msgstr "Tarea ID: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Tareas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" -msgstr "" +msgstr "Únete a Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" -msgstr "" +msgstr "Únete a la conversación" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" -msgstr "" +msgstr "Periodismo" #: src/components/moderation/LabelsOnMe.tsx:59 #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." -msgstr "" +msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." -msgstr "" +msgstr "Etiquetado por el autor." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" +msgstr "Etiquetas" + +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" msgstr "" #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." -msgstr "" +msgstr "Las etiquetas son anotaciones sobre usuarios y contenido. Pueden usarse para ocultar, advertir y categorizar la red." #: src/components/moderation/LabelsOnMe.tsx:61 #~ msgid "labels have been placed on this {labelTarget}" @@ -3502,69 +3668,79 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:71 msgid "Labels on your account" -msgstr "" +msgstr "Etiquetas en tu cuenta" #: src/components/moderation/LabelsOnMeDialog.tsx:73 msgid "Labels on your content" -msgstr "" +msgstr "Etiquetas en tu contenido" #: src/view/com/composer/select-language/SelectLangBtn.tsx:105 msgid "Language selection" msgstr "Escoger el idioma" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Ajustes de Idiomas" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Ajustes de Idiomas" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Idiomas" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 -msgid "Latest" -msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "Más grande" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 +msgid "Latest" +msgstr "Último" + +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Aprender más" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" -msgstr "" +msgstr "Aprender más de Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "Obtén más información sobre cómo autoalojar tu PDS." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." -msgstr "" +msgstr "Obtén más información sobre la moderación aplicada a este contenido." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Aprender más acerca de esta advertencia" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Más información sobre lo que es público en Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." -msgstr "" +msgstr "Aprender más." #: src/components/dms/LeaveConvoPrompt.tsx:50 msgid "Leave" -msgstr "" +msgstr "Dejar" #: src/components/dms/MessagesListBlockedFooter.tsx:66 #: src/components/dms/MessagesListBlockedFooter.tsx:73 msgid "Leave chat" -msgstr "" +msgstr "Dejar chat" #: src/components/dms/ConvoMenu.tsx:138 #: src/components/dms/ConvoMenu.tsx:141 @@ -3572,9 +3748,9 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:211 #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" -msgstr "" +msgstr "Dejar conversación" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Déjalos todos sin marcar para ver cualquier idioma." @@ -3584,27 +3760,26 @@ msgstr "Salir de Bluesky" #: src/screens/SignupQueued.tsx:134 msgid "left to go." -msgstr "" +msgstr "quedan." #: src/view/screens/Settings/index.tsx:310 #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" -msgstr "" +msgstr "Déjame escoger" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "¡Vamos a restablecer tu contraseña!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" -msgstr "" +msgstr "Vamos!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "" @@ -3614,30 +3789,30 @@ msgstr "" #: src/components/ProgressGuide/List.tsx:48 msgid "Like 10 posts" -msgstr "" +msgstr "Dale «me gusta» a 10 posts" #: src/state/shell/progress-guide.tsx:157 #: src/state/shell/progress-guide.tsx:162 msgid "Like 10 posts to train the Discover feed" -msgstr "" +msgstr "Dale «me gusta» a 10 publicaciones para entrenar el feed de Descubrimiento." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Dar «me gusta» a esta noticia" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Le ha gustado a" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" -msgstr "" +msgstr "Le ha gustado a" #: src/view/com/feeds/FeedSourceCard.tsx:268 #~ msgid "Liked by {0} {1}" @@ -3655,144 +3830,151 @@ msgstr "" #: src/view/com/notifications/FeedItem.tsx:211 msgid "liked your custom feed" -msgstr "" +msgstr "le gusta tu feed personalizado" #: src/view/com/notifications/FeedItem.tsx:178 msgid "liked your post" -msgstr "" +msgstr "le gusta tu post" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" -msgstr "Cantidad de «Me gusta»" +msgstr "Me gusta" #: src/view/com/post-thread/PostThreadItem.tsx:204 msgid "Likes on this post" -msgstr "" +msgstr "Me gusta en este post" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" -msgstr "" +msgstr "Lista" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Avatar de la lista" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" -msgstr "" +msgstr "Lista de bloqueados" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" -msgstr "" +msgstr "Lista por {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" -msgstr "" +msgstr "Lista de eliminados" #: src/screens/List/ListHiddenScreen.tsx:126 msgid "List has been hidden" -msgstr "" +msgstr "Se ha ocultado la lista" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" -msgstr "" +msgstr "Lista oculta" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" -msgstr "" +msgstr "Lista silenciada" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nombre de la lista" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" -msgstr "" +msgstr "Lista desbloqueada" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" -msgstr "" +msgstr "La lista ya no está silenciada" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listas" #: src/components/dms/BlockedByListDialog.tsx:39 msgid "Lists blocking this user:" -msgstr "" +msgstr "Listas bloqueando este usuario:" #: src/view/screens/Search/Explore.tsx:131 msgid "Load more" -msgstr "" +msgstr "Cargar mas" #: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" -msgstr "" +msgstr "Cargar mas feeds sugeridos" #: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" -msgstr "" +msgstr "Cargar mas seguidos sugeridos" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Cargar posts nuevos" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "Ingresa o registrate" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 #: src/screens/SignupQueued.tsx:184 #: src/screens/SignupQueued.tsx:187 msgid "Log out" -msgstr "" +msgstr "Salir" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilidad de desconexión" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Acceder a una cuenta que no está en la lista" -#: src/components/RichText.tsx:219 -msgid "Long press to open tag menu for #{tag}" +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 -msgid "Looks like XXXXX-XXXXX" +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" +#: src/components/RichText.tsx:226 +msgid "Long press to open tag menu for #{tag}" +msgstr "Mantén presionado para abrir el menú de etiquetas para #{tag}" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "Es como XXXXX-XXXXX" + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." -msgstr "" +msgstr "Parece que no has guardado ningún feed. Usa nuestras recomendaciones o explora más abajo." #: src/screens/Home/NoFeedsPinned.tsx:83 msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" -msgstr "" +msgstr "Parece que has desanclado todos tus feeds. Pero no te preocupes, ¡puedes agregar algunos abajo! 😄" #: src/screens/Feeds/NoFollowingFeed.tsx:38 #~ msgid "Looks like you're missing a following feed." @@ -3800,11 +3982,11 @@ msgstr "" #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "" +msgstr "Parece que te falta un feed de seguimiento. <0>Haz clic aquí para agregar uno." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" -msgstr "" +msgstr "Haz uno para mi" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3812,63 +3994,68 @@ msgstr "¡Asegúrate de que es aquí a donde pretendes ir!" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" -msgstr "" +msgstr "Gestiona tus palabras y etiquetas silenciadas" #: src/components/dms/ConvoMenu.tsx:151 #: src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" -msgstr "" +msgstr "Marcar como leido" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Multimedia" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "usuarios mencionados" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Usuarios mencionados" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menú" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" -msgstr "" +msgstr "Mensaje {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" -msgstr "" +msgstr "Mensaje eliminado" #: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Mensaje del servidor: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" -msgstr "" +msgstr "Campo de entrada de mensaje" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" -msgstr "" +msgstr "El mensaje es muy largo" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" -msgstr "" +msgstr "Ajustes de mensaje" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" -msgstr "" +msgstr "Mensajes" #: src/Navigation.tsx:307 #~ msgid "Messaging settings" @@ -3876,133 +4063,134 @@ msgstr "" #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" -msgstr "" +msgstr "Cuenta engañosa" #: src/lib/moderation/useReportOptions.ts:67 msgid "Misleading Post" -msgstr "" +msgstr "Post engañoso" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderación" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" -msgstr "" +msgstr "Detalles de moderación" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" -msgstr "" +msgstr "Lista de moderación por {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" -msgstr "" +msgstr "Lista de moderación por {0}" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" -msgstr "" +msgstr "Lista de moderación por ti" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" -msgstr "" +msgstr "Lista de moderación creada" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" -msgstr "" +msgstr "Lista de moderación actualizada" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" -msgstr "" +msgstr "ajustes de moderación" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" -msgstr "" +msgstr "Ajustes de moderación" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" -msgstr "" +msgstr "Estados de moderación" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" -msgstr "" +msgstr "Herramientas de moderación" #: src/components/moderation/ModerationDetailsDialog.tsx:51 #: src/lib/moderation/useModerationCauseDescription.ts:45 msgid "Moderator has chosen to set a general warning on the content." -msgstr "" +msgstr "El moderador ha decidido establecer una advertencia general sobre el contenido." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" -msgstr "" +msgstr "Más" #: src/view/shell/desktop/Feeds.tsx:55 msgid "More feeds" msgstr "Más feeds" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Más opciones" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" -msgstr "" +msgstr "Respuestas mejor valoradas primero" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" -msgstr "" +msgstr "Películas" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" -msgstr "" +msgstr "Música" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Silenciar" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" -msgstr "" - -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -msgid "Mute" -msgstr "" +msgstr "Silenciar" #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" -msgstr "" +msgstr "Silenciar {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Silenciar la cuenta" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" -msgstr "Silenciar las cuentas" +msgstr "Silenciar cuentas" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" -msgstr "" +msgstr "Silenciar todos los posts con {displayTag}" #: src/components/dms/ConvoMenu.tsx:172 #: src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" -msgstr "" +msgstr "Silenciar conversación" #: src/components/dialogs/MutedWords.tsx:148 #~ msgid "Mute in tags only" @@ -4014,9 +4202,9 @@ msgstr "" #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" -msgstr "" +msgstr "Silenciar en:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Silenciar la lista" @@ -4025,224 +4213,232 @@ msgstr "Silenciar la lista" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "¿Silenciar estas cuentas?" #: src/components/dialogs/MutedWords.tsx:185 msgid "Mute this word for 24 hours" -msgstr "" +msgstr "Silenciar esta palabra por 24 horas" #: src/components/dialogs/MutedWords.tsx:224 msgid "Mute this word for 30 days" -msgstr "" +msgstr "Silenciar esta palabra por 30 días" #: src/components/dialogs/MutedWords.tsx:209 msgid "Mute this word for 7 days" -msgstr "" +msgstr "Silenciar esta palabra por 7 días" #: src/components/dialogs/MutedWords.tsx:258 msgid "Mute this word in post text and tags" -msgstr "" +msgstr "Silenciar esta palabra en el texto de la publicación y en las etiquetas." #: src/components/dialogs/MutedWords.tsx:274 msgid "Mute this word in tags only" -msgstr "" +msgstr "Silenciar esta palabra solo en etiquetas" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" -msgstr "" +msgstr "Silenciar esta palabra hasta que la vuelvas a habilitar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" -msgstr "Mutear hilo" +msgstr "Silenciar hilo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" -msgstr "" +msgstr "Silenciar palabras y etiquetas" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 #~ msgid "Muted" -#~ msgstr "Muteado" +#~ msgstr "Silenciado" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" -msgstr "Cuentas muteadas" +msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" -msgstr "Cuentas muteadas" +msgstr "Cuentas silenciadas" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." -msgstr "Al mutear a una cuenta no verás sus posts en tu feed o notificaciones. Nadie puede ver a quien muteas." +msgstr "Al silenciar a una cuenta no verás sus posts en tu feed o notificaciones. Nadie puede ver a quien silencias." #: src/lib/moderation/useModerationCauseDescription.ts:90 msgid "Muted by \"{0}\"" -msgstr "Muteado por \"{0}\"" +msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" -msgstr "Palabras y etiquetas muteadas" +msgstr "Palabras y etiquetas silenciadas" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "Nadie puede ver a quien muteas. Las cuentas muteadas pueden interactuar contigo, pero no verás sus posts en tu feed o notificaciones." +msgstr "Nadie puede ver a quien silencias. Las cuentas silenciadas pueden interactuar contigo, pero no verás sus posts en tu feed o notificaciones." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Mi cumpleaños" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Mis feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mi perfil" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Mis feeds guardados" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Mis feeds guardados" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nombre" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" -msgstr "" +msgstr "Nombre requerido" #: src/lib/moderation/useReportOptions.ts:59 #: src/lib/moderation/useReportOptions.ts:98 #: src/lib/moderation/useReportOptions.ts:106 #: src/lib/moderation/useReportOptions.ts:114 msgid "Name or Description Violates Community Standards" -msgstr "" +msgstr "Nombre o descripción que violan los estándares de la comunidad" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" -msgstr "" +msgstr "Naturaleza" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" -msgstr "" +msgstr "Navegar a {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Navegar al paquete de inicio" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" -msgstr "" +msgstr "Navega a la siguiente pantalla" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" -msgstr "" +msgstr "Navega a tu perfil" + +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "¿Necesitas cambiarlo?" #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" -msgstr "" +msgstr "¿Necesitas reportar una violación de copyright?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." -msgstr "" +msgstr "Nunca pierdas acceso de tus seguidores o tus datos." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" -msgstr "" +msgstr "No importa, crea un nombre de usuario por mí." -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" -msgstr "" +msgstr "Nuevo" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Nuevo" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" -msgstr "" +msgstr "Nuevo chat" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "Nuevas opciones de fuentes ✨" #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" -msgstr "" +msgstr "Nuevos mensajes" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" -msgstr "" +msgstr "Nueva lista de moderación" #: src/view/com/modals/ChangePassword.tsx:213 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: src/view/com/modals/ChangePassword.tsx:218 msgid "New Password" -msgstr "" +msgstr "Nueva contraseña" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" -msgstr "" - -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 -msgid "New post" msgstr "Nuevo post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 +msgid "New post" +msgstr "Nuevo post" + +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Nuevo post" #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" -msgstr "" +msgstr "Ventana de información para nuevo usuario." -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Nueva lista de usuarios" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" -msgstr "" +msgstr "Respuestas nuevas primero" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Noticias" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4252,108 +4448,117 @@ msgstr "Siguiente" msgid "Next image" msgstr "Imagen nueva" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Sin descripción" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Sin panel de DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." -msgstr "" +msgstr "No se encontraron GIFs destacados. Puede haber un problema con Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "No se encontraron feeds. Intenta buscar algo más." -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "Sin <> aún" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" -msgstr "" +msgstr "Ya no sigues a {0}" #: src/screens/Signup/StepHandle.tsx:169 msgid "No longer than 253 characters" -msgstr "" +msgstr "No más de 253 caracteres" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" -msgstr "" +msgstr "No hay mensajes aún" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" -msgstr "" +msgstr "No hay conversaciones para mostrar" #: src/view/com/notifications/Feed.tsx:121 msgid "No notifications yet!" -msgstr "" +msgstr "¡Aún no hay notificaciones!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" -msgstr "" +msgstr "Nadie" #: src/components/WhoCanReply.tsx:237 msgid "No one but the author can quote this post." -msgstr "" +msgstr "Nadie, excepto el autor, puede citar esta publicación." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." -msgstr "" +msgstr "No hay posts aún." -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "No hay citas aún" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "No hay reposts aún" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" -msgstr "Sin resultados" +msgstr "Sin resultado" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" -msgstr "" +msgstr "Sin resultados" #: src/components/Lists.tsx:215 msgid "No results found" -msgstr "" +msgstr "No se encontraron resultados" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "No se han encontrado resultados para {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." -msgstr "" +msgstr "No se encontraron resultados para \"{search}\"." #: src/components/dms/NewChat.tsx:240 #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" -msgstr "" +msgstr "No gracias" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Nadie" @@ -4361,94 +4566,103 @@ msgstr "Nadie" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" -msgstr "" +msgstr "Nadie ha dado \"me gusta\" a esto todavía. ¡Quizás deberías ser el primero!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "Nadie ha citado esto todavía. ¡Quizás deberías ser el primero!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "Nadie ha vuelto a publicar esto todavía. ¡Quizás deberías ser el primero!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "No se encontró a nadie. Intenta buscar a otra persona." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" -msgstr "" +msgstr "Desnudez no sexual" #: src/view/com/modals/SelfLabel.tsx:135 #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" -msgstr "" +msgstr "No encontrado" #: src/view/com/modals/VerifyEmail.tsx:254 #: src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" -msgstr "" +msgstr "No en este momento" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" -msgstr "" +msgstr "Nota sobre compartir" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración sólo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky, y es posible que otras aplicaciones no respeten esta configuración. Otras aplicaciones y sitios web pueden seguir mostrando tu contenido a los usuarios que hayan cerrado sesión." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" -msgstr "" +msgstr "Nada aquí" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" -msgstr "" +msgstr "Filtros de notificación" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" -msgstr "" +msgstr "Ajustes de notificación" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" -msgstr "" +msgstr "Ajustes de notificación" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" -msgstr "" +msgstr "Sonidos de notificación" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" -msgstr "" +msgstr "Sonidos de notificación" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notificaciones" #: src/lib/hooks/useTimeAgo.ts:122 msgid "now" -msgstr "" +msgstr "ahora" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" -msgstr "" +msgstr "Ahora" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" -msgstr "" +msgstr "Desnudez" #: src/lib/moderation/useReportOptions.ts:78 msgid "Nudity or adult content not labeled as such" -msgstr "" +msgstr "Desnudez o contenido para adultos no etiquetado como tal" #: src/screens/Signup/index.tsx:145 #~ msgid "of" @@ -4456,33 +4670,32 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" -msgstr "" +msgstr "Apagar" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "¡Qué problema!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." -msgstr "" +msgstr "¡Oh no! Algo salió mal." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Está bien" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" -msgstr "" +msgstr "Respuestas antiguas primero" #: src/components/StarterPack/QrCode.tsx:69 #~ msgid "on" @@ -4492,11 +4705,11 @@ msgstr "" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" -msgstr "" +msgstr "en<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "" @@ -4504,13 +4717,13 @@ msgstr "" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" -msgstr "" +msgstr "Solo se admiten archivos .jpg y .png" #: src/components/WhoCanReply.tsx:245 #~ msgid "Only {0} can reply" @@ -4522,290 +4735,303 @@ msgstr "Solo {0} puede responder." #: src/screens/Signup/StepHandle.tsx:152 msgid "Only contains letters, numbers, and hyphens" +msgstr "Solo contiene letras, números y guiones." + +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" -msgstr "" +msgstr "Solo se admiten archivos WebVTT (.vtt)." #: src/components/Lists.tsx:88 msgid "Oops, something went wrong!" -msgstr "" +msgstr "¡Ups, algo salió mal!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" -msgstr "" +msgstr "Abierto" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" -msgstr "" +msgstr "Abrir el menú de accesos directos del perfil de {name}." -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" -msgstr "" +msgstr "Abrir el creador de avatares" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" -msgstr "" +msgstr "Abrir opciones de conversación" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" -msgstr "" +msgstr "Abrir selector de emoji" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" +msgstr "Abrir menú de opciones del feed" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" msgstr "" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" -msgstr "" +msgstr "Abrir links en navigador interno" #: src/components/dms/ActionsWrapper.tsx:87 msgid "Open message options" -msgstr "" +msgstr "Abrir opciones de mensaje" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" -msgstr "" +msgstr "Abrir ajustes de palabras y tags silenciados" #: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Abrir navegación" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" -msgstr "" +msgstr "Abrir menú de opciones del post" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" -msgstr "" +msgstr "Abrir menú del paquete de inicio" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" -msgstr "" +msgstr "Abrir pagina de histórico" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" -msgstr "" +msgstr "Abrir registro del sistema." #: src/view/com/util/forms/DropdownButton.tsx:159 msgid "Opens {numItems} options" +msgstr "Abre {numItems} opciones." + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "Abre un diálogo para elegir quién puede responder a este hilo." -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" -msgstr "" +msgstr "Abrir ajustes de accesibilidad" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" -msgstr "" +msgstr "Abre detalles adicionales para una entrada de depuración." #: src/view/com/notifications/FeedItem.tsx:349 #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" -msgstr "" +msgstr "Abrir ajustes de apariencia" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" -msgstr "" +msgstr "Abrir cámara del dispositivo" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" -msgstr "" +msgstr "Abrir ajustes de chat" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" -msgstr "" +msgstr "Abrir compositor" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Abrir la configuración del idioma que se puede ajustar" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" -msgstr "" +msgstr "Abrir galería de fotos del dispositivo" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" -msgstr "" +msgstr "Abre la configuración de incrustaciones externas" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" -msgstr "" +msgstr "Abre el flujo para crear una nueva cuenta de Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" -msgstr "" +msgstr "Abre el flujo para iniciar sesión en tu cuenta existente de Bluesky" #: src/view/com/composer/photos/SelectGifBtn.tsx:36 msgid "Opens GIF select dialog" -msgstr "" +msgstr "Abre el diálogo de selección de GIF." #: src/view/com/modals/InviteCodes.tsx:173 msgid "Opens list of invite codes" msgstr "Abre la lista de códigos de invitación" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "Abre el modal para la confirmación de desactivación de cuenta" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" -msgstr "" +msgstr "Abre el modal para la confirmación de eliminación de cuenta. Requiere un código enviado por correo electrónico" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" -msgstr "" +msgstr "Abre el modal para cambiar tu contraseña de Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" -msgstr "" +msgstr "Abre el modal para elegir un nuevo nombre de usuario en Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" -msgstr "" +msgstr "Abre el modal para descargar los datos de tu cuenta de Bluesky (repositorio)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" -msgstr "" +msgstr "Abre el modal para la verificación de correo electrónico" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Abre el modal para usar el dominio personalizado" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Abre la configuración de moderación" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" -msgstr "" +msgstr "Abre el formulario de restablecimiento de contraseña" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Abre la pantalla con todas las noticias guardadas" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" -msgstr "" +msgstr "Abre la configuración de contraseñas de la aplicación" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" -msgstr "" +msgstr "Abre las preferencias del feed de Seguidos" #: src/view/com/modals/LinkWarning.tsx:93 msgid "Opens the linked website" -msgstr "" +msgstr "Abre el sitio web vinculado" #: src/screens/Messages/List/index.tsx:86 #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Abre la página del libro de cuentos" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Abre la página de la bitácora del sistema" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Abre las preferencias de hilos" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" -msgstr "" +msgstr "Abre este perfil" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" -msgstr "" +msgstr "Abre el selector de video" #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" -msgstr "" +msgstr "Opcion {0} de {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" -msgstr "" +msgstr "Opcionalmente, proporciona información adicional a continuación:" #: src/components/dialogs/MutedWords.tsx:299 msgid "Options:" -msgstr "" +msgstr "Opciones:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" -msgstr "" +msgstr "O combina estas opciones:" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "O, continúa con otra cuenta." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "O, ingresa con una de tus otras cuentas." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" -msgstr "" +msgstr "Otro" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Otra cuenta" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" -msgstr "" +msgstr "Otras cuentas" #: src/view/com/composer/select-language/SelectLangBtn.tsx:92 msgid "Other..." msgstr "Otro..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "" +msgstr "Nuestros moderadores han revisado denuncias y han decidido deshabilitar tu acceso a los chats en Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Página no encontrada" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" -msgstr "" +msgstr "Página no encontrada" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4813,126 +5039,135 @@ msgstr "Contraseña" #: src/view/com/modals/ChangePassword.tsx:143 msgid "Password Changed" -msgstr "" +msgstr "Contraseña cambiada" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Contraseña actualizada" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "¡Contraseña actualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" -msgstr "" +msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" -msgstr "" +msgstr "Pausar video" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" -msgstr "" +msgstr "Personas" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" -msgstr "" +msgstr "Personas seguidas por @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" -msgstr "" +msgstr "Personas siguiendo a @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." -msgstr "" +msgstr "Se requiere permiso para acceder al carrete de la cámara." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." -msgstr "" +msgstr "El permiso para acceder al carrete de la cámara fue denegado. Por favor, actívalo en la configuración de tu sistema." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "Alternar persona." #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" -msgstr "" +msgstr "Mascotas" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" -msgstr "" +msgstr "Fotografía" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Imágenes destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" -msgstr "" +msgstr "Anclar en inicio" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" -msgstr "" +msgstr "Anclar en inicio" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Anclar en tu perfil" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "Anclado" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" -msgstr "Canales de noticias anclados" +msgstr "Feeds anclados" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" -msgstr "" +msgstr "Tus feeds anclados" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" -msgstr "" +msgstr "Reproducir" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" -msgstr "" +msgstr "Reproducir {0}" #: src/screens/Messages/Settings.tsx:97 #: src/screens/Messages/Settings.tsx:104 #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" -msgstr "" +msgstr "Reproducir o pausar GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" -msgstr "" +msgstr "Reproducir video" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" -msgstr "" +msgstr "Reproducir Video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" -msgstr "" +msgstr "Reproducir GIF" #: src/screens/Signup/state.ts:217 msgid "Please choose your handle." msgstr "Por favor, elige tu identificador." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Por favor, elige tu contraseña." #: src/screens/Signup/state.ts:231 msgid "Please complete the verification captcha." -msgstr "" +msgstr "Por favor, completa la verificación CAPTCHA" #: src/view/com/modals/ChangeEmail.tsx:65 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." @@ -4940,7 +5175,7 @@ msgstr "Por favor, confirma tu correo electrónico antes de cambiarlo. Se trata #: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." -msgstr "" +msgstr "Por favor, introduce un nombre para tu contraseña de aplicación. No están permitidos los espacios" #: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." @@ -4948,53 +5183,54 @@ msgstr "Introduce un nombre único para la contraseña de esta app o utiliza una #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" -msgstr "" +msgstr "Por favor, introduce una palabra, tag, o frase válida para silenciar" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Introduce tu correo electrónico." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." -msgstr "" +msgstr "Introduce tu código de invitación" #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Introduce tu contraseña, también:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "" +msgstr "Por favor explica por qué crees que esta etiqueta fue aplicada incorrectamente por {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "" +msgstr "Por favor explica por qué crees que tus chats fueron deshabilitados incorrectamente" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" -msgstr "" +msgstr "Por favor, ingresa como @{0}" #: src/view/com/modals/VerifyEmail.tsx:109 msgid "Please Verify Your Email" -msgstr "" +msgstr "Por favor, verifica tu email" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Política" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -5002,60 +5238,72 @@ msgstr "Publicar" #: src/view/com/post-thread/PostThread.tsx:481 msgctxt "description" msgid "Post" -msgstr "Post" +msgstr "Publicación" #: src/view/com/post-thread/PostThreadItem.tsx:196 msgid "Post by {0}" -msgstr "Post por {0}" +msgstr "Publicación por {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" -msgstr "Post por {0}" +msgstr "Publicación por {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" -msgstr "Post eliminado" +msgstr "Publicación eliminada" + +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" -msgstr "Post ocultado" +msgstr "Publicación oculta" #: src/components/moderation/ModerationDetailsDialog.tsx:106 #: src/lib/moderation/useModerationCauseDescription.ts:104 msgid "Post Hidden by Muted Word" -msgstr "Post ocultado por palabra muteada" +msgstr "Publicación ocultada por palabra silenciada" #: src/components/moderation/ModerationDetailsDialog.tsx:109 #: src/lib/moderation/useModerationCauseDescription.ts:113 msgid "Post Hidden by You" -msgstr "Post ocultado por ti" +msgstr "Publicación ocultada por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" -msgstr "" +msgstr "Ajustes de interacción de la publicación" #: src/view/com/composer/select-language/SelectLangBtn.tsx:88 msgid "Post language" -msgstr "Lenguaje de la post" +msgstr "Lenguaje de la publicación" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" -msgstr "Lenguajes de la post" +msgstr "Lenguajes de la publicación" #: src/view/com/post-thread/PostThread.tsx:207 #: src/view/com/post-thread/PostThread.tsx:219 msgid "Post not found" msgstr "Publicación no encontrada" -#: src/components/TagMenu/index.tsx:267 -msgid "posts" -msgstr "" +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Publicación fijado" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Publicación desfijado" + +#: src/components/TagMenu/index.tsx:252 +msgid "posts" +msgstr "Publicaciones" + +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Publicaciones" @@ -5065,11 +5313,11 @@ msgstr "Publicaciones" #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "" +msgstr "Los posts pueden ser silenciados según su texto, sus etiquetas o ambos. Recomendamos evitar palabras comunes que aparezcan en muchos posts, ya que podría resultar en que no se muestre ninguna publicación." #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" -msgstr "" +msgstr "Publicaciones ocultas" #: src/view/com/modals/LinkWarning.tsx:60 msgid "Potentially Misleading Link" @@ -5077,22 +5325,22 @@ msgstr "Enlace potencialmente engañoso" #: src/state/queries/notifications/settings.ts:44 msgid "Preference saved" -msgstr "" +msgstr "Preferencias guardadas" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" -msgstr "" +msgstr "Presiona para reintentar la conexión" #: src/components/forms/HostingProvider.tsx:46 msgid "Press to change hosting provider" -msgstr "" +msgstr "Presiona para cambiar el proveedor de hosting" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" -msgstr "" +msgstr "Presiona para reintentar" #: src/screens/Messages/Conversation/MessagesList.tsx:47 #: src/screens/Messages/Conversation/MessagesList.tsx:53 @@ -5101,108 +5349,112 @@ msgstr "" #: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "Presiona para ver los seguidores de esta cuenta que también sigues." #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Imagen previa" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Idioma primario" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Priorizar los usuarios a los que sigue" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" -msgstr "" +msgstr "Notificaciones prioritarias" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidad" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Política de privacidad" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Procesando..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" -msgstr "" +msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Perfil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" -msgstr "" +msgstr "Perfil actualizado" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Protege tu cuenta verificando tu correo electrónico." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" -msgstr "" +msgstr "Público" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Listas públicas y compartibles de usuarios para mutear o bloquear en cantidad." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Listas públicas y compartibles que pueden impulsar feeds." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Publicar" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Publicar respuesta" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "¡Código QR copiado a tu portapapeles!" #: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" -msgstr "" +msgstr "¡El código QR ha sido descargado!" #: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "¡Código QR guardado en tu galería!" #: src/tours/Tooltip.tsx:111 #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" -msgstr "Citar una post" +msgstr "Citar una publicación" #: src/view/com/modals/Repost.tsx:66 #~ msgctxt "action" @@ -5214,100 +5466,101 @@ msgstr "Citar una post" #~ msgid "Quote Post" #~ msgstr "Citar una post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" -msgstr "" +msgstr "La publicación citada ha sido readjuntada" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" -msgstr "" +msgstr "La publicación citada se ha separado correctamente" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" -msgstr "" +msgstr "Citas deshabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" -msgstr "" +msgstr "Citas habilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" -msgstr "" +msgstr "Configuración de citas" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" -msgstr "" +msgstr "Citas" #: src/view/com/post-thread/PostThreadItem.tsx:230 msgid "Quotes of this post" -msgstr "" +msgstr "Citas de esta publicación" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Proporciones" +#~ msgid "Ratios" +#~ msgstr "Proporciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" -msgstr "" +msgstr "Readjuntar cita" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "Reactivar tu cuenta" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" -msgstr "" +msgstr "Leer el blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" -msgstr "" +msgstr "Leer las Políticas de Privacidad de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" -msgstr "" +msgstr "Leer los Términos y Condiciones de Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" -msgstr "" +msgstr "Razón:" #: src/components/dms/MessageReportDialog.tsx:149 #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" -msgstr "" +msgstr "Busquedas Recientes" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" -msgstr "" +msgstr "Reconectar" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" -msgstr "" +msgstr "Actualizar notificaciones" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" -msgstr "" +msgstr "Recargar conversaciones" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5315,62 +5568,63 @@ msgstr "Eliminar" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "Eliminar a {displayName} del paquete inicial" #: src/view/com/util/AccountDropdownBtn.tsx:26 msgid "Remove account" msgstr "Eliminar la cuenta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" -msgstr "" +msgstr "Remover adjunto" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" -msgstr "" +msgstr "Remover Avatar" #: src/view/com/util/UserBanner.tsx:155 msgid "Remove Banner" -msgstr "" +msgstr "Remover Banner" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" -msgstr "" +msgstr "Remover incrustado" #: src/view/com/posts/FeedErrorMessage.tsx:169 #: src/view/com/posts/FeedShutdownMsg.tsx:116 #: src/view/com/posts/FeedShutdownMsg.tsx:120 msgid "Remove feed" -msgstr "Eliminar el canal de noticias" +msgstr "Remover feed" #: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" -msgstr "" +msgstr "¿Remover feed?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" -msgstr "Eliminar de mis canales de noticias" +msgstr "Remover de mis feeds" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" -msgstr "" +msgstr "¿Remover de mis feeds?" #: src/view/com/util/AccountDropdownBtn.tsx:53 msgid "Remove from quick access?" -msgstr "" +msgstr "¿Remover del acceso rápido?" #: src/screens/List/ListHiddenScreen.tsx:156 msgid "Remove from saved feeds" -msgstr "" +msgstr "Remover de los feeds guardados" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" -msgstr "Eliminar la imagen" +msgstr "Remover la imagen" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 #~ msgid "Remove image preview" @@ -5378,72 +5632,72 @@ msgstr "Eliminar la imagen" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" -msgstr "" +msgstr "Remover palabra silenciada de tu lista" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" -msgstr "" +msgstr "Remover perfil" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" -msgstr "" +msgstr "Remover perfil del historial de búsqueda" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" -msgstr "" +msgstr "Remover cita" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" -msgstr "" +msgstr "Remover republicación" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" -msgstr "" +msgstr "Remover archivo de subtítulo" #: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" -msgstr "" +msgstr "Remover este feed de tus feeds guardados" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" -msgstr "" +msgstr "Removido por autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" -msgstr "" +msgstr "Removido por ti" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" -msgstr "Eliminar de la lista" +msgstr "Removido de la lista" #: src/view/com/feeds/FeedSourceCard.tsx:138 msgid "Removed from my feeds" -msgstr "" +msgstr "Removido de mis feeds" #: src/screens/List/ListHiddenScreen.tsx:94 #: src/screens/List/ListHiddenScreen.tsx:160 msgid "Removed from saved feeds" -msgstr "" +msgstr "Removido de mis feeds guardados" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" -msgstr "" +msgstr "Removido de tus feeds" #: src/view/com/composer/ExternalEmbed.tsx:88 #~ msgid "Removes default thumbnail from {0}" #~ msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" -msgstr "" +msgstr "Remueve cita de la publicación" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "Remueve adjunto" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5452,15 +5706,15 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" -msgstr "" +msgstr "Reemplaza con Descubrimiento" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Respuestas" #: src/components/WhoCanReply.tsx:69 msgid "Replies disabled" -msgstr "" +msgstr "Respuestas deshabilitadas" #: src/view/com/threadgate/WhoCanReply.tsx:123 #~ msgid "Replies on this thread are disabled" @@ -5468,16 +5722,16 @@ msgstr "" #: src/components/WhoCanReply.tsx:215 msgid "Replies to this post are disabled." -msgstr "" +msgstr "Las respuestas en esta publicación estan deshabilitadas" #: src/components/WhoCanReply.tsx:243 #~ msgid "Replies to this thread are disabled" #~ msgstr "Las respuestas a este hilo están desactivadas" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" -msgstr "" +msgstr "Responder" #: src/view/screens/PreferencesFollowingFeed.tsx:142 #~ msgid "Reply Filters" @@ -5486,440 +5740,452 @@ msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:123 msgid "Reply Hidden by Thread Author" -msgstr "" +msgstr "Respuesta ocultada por el autor del hilo" #: src/components/moderation/ModerationDetailsDialog.tsx:114 #: src/lib/moderation/useModerationCauseDescription.ts:122 msgid "Reply Hidden by You" -msgstr "" +msgstr "Respuesta ocultada por ti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" -msgstr "" +msgstr "Ajustes de respuesta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" -msgstr "" +msgstr "La configuración de respuestas es elegida por el autor del hilo" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" -msgstr "" +msgstr "Responder a <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" -msgstr "" +msgstr "Responder a una publicación bloqueada" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" -msgstr "" +msgstr "Responder a una publicación" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" -msgstr "" +msgstr "Responder a ti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" -msgstr "" +msgstr "Visibilidad de la respuesta actualizada" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" -msgstr "" +msgstr "La respuesta se ha ocultado correctamente." #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" -msgstr "" +msgstr "Denunciar" #: src/components/dms/ConvoMenu.tsx:146 #: src/components/dms/ConvoMenu.tsx:150 #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" -msgstr "Informe de la cuenta" +msgstr "Denunciar cuenta" #: src/components/dms/ConvoMenu.tsx:197 #: src/components/dms/ConvoMenu.tsx:200 #: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" -msgstr "" +msgstr "Denunciar conversación" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" -msgstr "" +msgstr "Ventana de denuncia" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" -msgstr "Informe del canal de noticias" +msgstr "Denunciar feed" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" -msgstr "Informe de la lista" +msgstr "Denunciar lista" #: src/components/dms/MessageMenu.tsx:130 msgid "Report message" -msgstr "" +msgstr "Denunciar mensaje" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" -msgstr "Informe de la post" +msgstr "Denunciar publicación" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" -msgstr "" +msgstr "Denunciar paquete de inicio" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" -msgstr "" +msgstr "Denunciar este contenido" #: src/components/ReportDialog/SelectReportOptionView.tsx:56 msgid "Report this feed" -msgstr "" +msgstr "Denunciar este feed" #: src/components/ReportDialog/SelectReportOptionView.tsx:53 msgid "Report this list" -msgstr "" +msgstr "Denunciar esta lista" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" -msgstr "" +msgstr "Denunciar este mensaje" #: src/components/ReportDialog/SelectReportOptionView.tsx:50 msgid "Report this post" -msgstr "" +msgstr "Denunciar esta publicación" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "Denunciar este paquete de inicio" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" -msgstr "" +msgstr "Denunciar este usuario" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" -msgstr "" +msgstr "Volver a publicar" #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Repost" msgstr "Volver a publicar" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" -msgstr "Volver a publicar o citar post" +msgstr "Volver a publicar o citar publicación" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Vuelto a publicar por" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Vuelto a publicar por {0}" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" -msgstr "" +msgstr "Vuelto a publicar por <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" -msgstr "" +msgstr "Vuelto a publicar por ti" #: src/view/com/notifications/FeedItem.tsx:180 msgid "reposted your post" -msgstr "" +msgstr "volvió a publicar tu publicación" #: src/view/com/post-thread/PostThreadItem.tsx:209 msgid "Reposts of this post" -msgstr "" +msgstr "Republicaciones de esta publicación" #: src/view/com/modals/ChangeEmail.tsx:176 #: src/view/com/modals/ChangeEmail.tsx:178 msgid "Request Change" -msgstr "Solicitar un cambio" +msgstr "Solicitar cambio" #: src/view/com/modals/ChangePassword.tsx:242 #: src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" -msgstr "" +msgstr "Solicitar código" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Requerir texto alternativo antes de publicar" #: src/view/screens/Settings/Email2FAToggle.tsx:51 msgid "Require email code to log into your account" -msgstr "" +msgstr "Requerir código de correo electrónico para iniciar sesión en tu cuenta" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Requerido para este proveedor" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 -msgid "Resend email" -msgstr "Volver a enviar correo" +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Requerido en tu región" +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 +msgid "Resend email" +msgstr "Reenviar correo" + +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" -msgstr "" +msgstr "Reenviar correo" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" -msgstr "" +msgstr "Reenviar correo de verificación" #: src/view/com/modals/ChangePassword.tsx:186 msgid "Reset code" -msgstr "Código de reseteo" +msgstr "Código de restablecimiento" #: src/view/com/modals/ChangePassword.tsx:193 msgid "Reset Code" -msgstr "Código de reseteo" +msgstr "Código de restablecimiento" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Restablecer el estado de incorporación" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" -msgstr "Restablecer la contraseña" +msgstr "Restablecer contraseña" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Restablecer el estado de preferencias" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Restablece el estado de incorporación" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" -msgstr "Restablecer el estado de preferencias" +msgstr "Restablece el estado de preferencias" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" -msgstr "" +msgstr "Reintentar inicio de sesión" #: src/view/com/util/error/ErrorMessage.tsx:57 #: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" -msgstr "" +msgstr "Reintenta la última acción, que presentó un error" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" -msgstr "Intentar de nuevo" +msgstr "Reintentar" #: src/screens/Messages/Conversation/MessageListError.tsx:54 #~ msgid "Retry." -#~ msgstr "Intentar de nuevo" +#~ msgstr "Reintentar." #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" -msgstr "" +msgstr "Volver a la página anterior" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" -msgstr "" +msgstr "Volver a la página de inicio" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" -msgstr "" +msgstr "Volver a la página anterior" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Guardar" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Guardar" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Guardar texto alternativo" +#~ msgid "Save alt text" +#~ msgstr "Guardar texto alternativo" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Guardar cumpleaños" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "Guardar cambios" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Guardar cambios" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Guardar cambio de nombre de usuario" #: src/components/StarterPack/ShareDialog.tsx:151 #: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" -msgstr "" +msgstr "Guardar imagen" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Guardar recorte de imagen" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" -msgstr "" +msgstr "Guardar código QR" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" -msgstr "Guardar a mis feeds" +msgstr "Guardar en mis feeds" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" -msgstr "Feeds Guardados" +msgstr "Feeds guardados" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" -msgstr "" +msgstr "Guardado en tu galería" #: src/view/com/lightbox/Lightbox.tsx:81 #~ msgid "Saved to your camera roll." -#~ msgstr "" +#~ msgstr "Guardado en tu galería." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" -msgstr "" +msgstr "Guardado en tus feeds" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Guarda los cambios en tu perfil" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" -msgstr "" +msgstr "Guarda el cambio de nombre de usuario a {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" -msgstr "" +msgstr "Guarda los ajustes de recorte de la imagen" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" -msgstr "" +msgstr "¡Di hola!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Ciencia" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" -msgstr "" +msgstr "Desplazar hacia arriba" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Buscar" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" -msgstr "" +msgstr "Buscar \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" -msgstr "" +msgstr "Buscar \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Buscar todas las publicaciones de @{authorHandle} con la etiqueta {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Buscar todas las publicaciones con la etiqueta {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "Buscar feeds que quieras sugerir a otros." #: src/components/dms/NewChat.tsx:226 #~ msgid "Search for someone to start a conversation with." -#~ msgstr "" +#~ msgstr "Buscar a alguien para comenzar una conversación." #: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Buscar usuarios" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" -msgstr "" +msgstr "Buscar GIFs" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" -msgstr "" +msgstr "Buscar perfiles" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" -msgstr "" +msgstr "Buscar en Tenor" #: src/view/com/modals/ChangeEmail.tsx:105 msgid "Security Step Required" @@ -5927,144 +6193,144 @@ msgstr "Se requiere un paso de seguridad" #: src/components/TagMenu/index.web.tsx:77 msgid "See {truncatedTag} posts" -msgstr "" +msgstr "Ver publicaciones de {truncatedTag}" #: src/components/TagMenu/index.web.tsx:94 msgid "See {truncatedTag} posts by user" -msgstr "" +msgstr "Ver publicaciones de {truncatedTag} por el usuario" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" -msgstr "" +msgstr "Ver publicaciones de <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" -msgstr "" +msgstr "Ver publicaciones de <0>{displayTag} por este usuario" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" -msgstr "" +msgstr "Ver empleos en Bluesky" #: src/view/com/notifications/FeedItem.tsx:411 #: src/view/com/util/UserAvatar.tsx:402 #~ msgid "See profile" -#~ msgstr "" +#~ msgstr "Ver perfil" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" -msgstr "" +msgstr "Ver esta guía" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" -msgstr "" +msgstr "Control deslizante de búsqueda" #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" -msgstr "" +msgstr "Seleccionar {item}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" -msgstr "" +msgstr "Selecciona un color" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" -msgstr "" +msgstr "Seleccionar cuenta" #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 msgid "Select an avatar" -msgstr "" +msgstr "Selecciona un avatar" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" -msgstr "" +msgstr "Selecciona un emoji" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Selecciona de una cuenta existente" #: src/view/com/composer/photos/SelectGifBtn.tsx:35 msgid "Select GIF" -msgstr "" +msgstr "Seleccionar GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" -msgstr "" +msgstr "Seleccionar GIF \"{0}\"" #: src/components/dialogs/MutedWords.tsx:142 msgid "Select how long to mute this word for." -msgstr "" +msgstr "Selecciona por cuánto tiempo se debería silenciar esta palabra." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." -msgstr "" +msgstr "Seleccionar idioma..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" -msgstr "" +msgstr "Seleccionar idiomas" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" -msgstr "" +msgstr "Seleccionar moderador" #: src/view/com/util/Selector.tsx:107 msgid "Select option {i} of {numItems}" -msgstr "" +msgstr "Seleccionar opción {i} de {numItems}" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 #~ msgid "Select some accounts below to follow" -#~ msgstr "" +#~ msgstr "Seleccionar algunas cuentas para seguir abajo" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" -msgstr "" +msgstr "Seleccionar subtítulo (.vtt)" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" -msgstr "" +msgstr "Seleccionar el emoji {emojiName} como tu avatar" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" -msgstr "" +msgstr "Seleccionar los servicios de moderación a los que reportar" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." -msgstr "Elige que proveedor de servicio quieres usar." +msgstr "Elige qué proveedor de servicio quieres usar." #: src/screens/Onboarding/StepTopicalFeeds.tsx:100 #~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "" +#~ msgstr "Seleccionar feeds temáticos para seguir de la lista a continuación" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" -msgstr "" +msgstr "Seleccionar video" #: src/components/dialogs/MutedWords.tsx:242 msgid "Select what content this mute word should apply to." -msgstr "" +msgstr "Seleccionar a qué contenido se debe aplicar esta palabra silenciada." #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Elige lo que quieres ver y nosotros nos encargaremos del resto." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." -msgstr "Elige en que idioma deseas que estén los posts de tus feeds. Si ninguno es seleccionado, se mostraran en todos los idiomas." +msgstr "Elige en qué idiomas deseas que estén los posts de tus feeds. Si ninguno es seleccionado, se mostrarán en todos los idiomas." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." -msgstr "Elige en que idioma deseas que esté la interfaz de Bluesky." +msgstr "Elige en qué idioma deseas que esté la interfaz de Bluesky." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Elige tu fecha de nacimiento" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" -msgstr "" +msgstr "Selecciona tus intereses de las opciones a continuación" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." -msgstr "Elige en que idioma deseas traducir los posts de tu feed." +msgstr "Elige en qué idioma deseas traducir los posts de tu feed." #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 #~ msgid "Select your primary algorithmic feeds" @@ -6076,7 +6342,15 @@ msgstr "Elige en que idioma deseas traducir los posts de tu feed." #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" -msgstr "" +msgstr "¡Envía un sitio web interesante!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "Enviar confirmación" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "Enviar correo de confirmación" #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 @@ -6092,83 +6366,83 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar correo" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Enviar comentarios" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Enviar mensaje" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." -msgstr "" +msgstr "Enviar publicación a..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Enviar reporte" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Enviar reporte a {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" -msgstr "" +msgstr "Enviar correo de verificación" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" -msgstr "" +msgstr "Enviar vía mensaje directo" #: src/view/com/modals/DeleteAccount.tsx:151 msgid "Sends email with confirmation code for account deletion" -msgstr "" +msgstr "Envía un correo con el código de confirmación para la eliminación de la cuenta" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Dirección del servidor" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Establecer cumpleaños" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Establecer la contraseña nueva" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Establece este ajuste en \"No\" para ocultar todas las publicaciones de citas de tus noticias. Las repeticiones seguirán siendo visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las respuestas de tus noticias." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han vuelto a publicar desde tus noticias." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Establece este ajuste en \"Sí\" para mostrar las respuestas en una vista de hilos. Se trata de una función experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." -msgstr "" +msgstr "Establece este ajuste en \"Sí\" para mostrar muestras de tus feeds guardados en tu feed de Siguiendo. Esta es una función experimental." #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" -msgstr "" +msgstr "Configura tu cuenta" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" -msgstr "" +msgstr "Establece el nombre de usuario de Bluesky" #: src/view/screens/Settings/index.tsx:463 #~ msgid "Sets color theme to dark" @@ -6190,31 +6464,30 @@ msgstr "" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" -msgstr "" +msgstr "Establece el correo electrónico para restablecer la contraseña" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Ajustes" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Actividad sexual o desnudez erótica." @@ -6222,56 +6495,55 @@ msgstr "Actividad sexual o desnudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Compartir" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Compartir" #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" -msgstr "" +msgstr "¡Comparte una historia genial!" #: src/components/dms/ChatEmptyPill.tsx:36 msgid "Share a fun fact!" -msgstr "" +msgstr "¡Comparte un dato curioso!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" -msgstr "" +msgstr "Compartir de todas maneras" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Compartir feed" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" -msgstr "" +msgstr "Compartir enlace" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -6280,50 +6552,54 @@ msgstr "Compartir enlace" #: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" -msgstr "" +msgstr "Ventana para compartir enlace" #: src/components/StarterPack/ShareDialog.tsx:135 #: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" -msgstr "" +msgstr "Compartir código QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" -msgstr "" +msgstr "Compartir este paquete de inicio" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu comunidad en Bluesky." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" -msgstr "" +msgstr "¡Comparte tu feed favorito!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" -msgstr "" +msgstr "Probador de Preferencias Compartidas" #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" -msgstr "" +msgstr "Comparte el sitio web enlazado" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Ver" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Ver texto alternativo" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Ver de todas maneras" @@ -6331,11 +6607,11 @@ msgstr "Ver de todas maneras" #: src/lib/moderation/useLabelBehaviorDescription.ts:27 #: src/lib/moderation/useLabelBehaviorDescription.ts:63 msgid "Show badge" -msgstr "" +msgstr "Mostrar insignia" #: src/lib/moderation/useLabelBehaviorDescription.ts:61 msgid "Show badge and filter from feeds" -msgstr "" +msgstr "Mostrar insignia y filtrar de los feeds" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 #~ msgid "Show follows similar to {0}" @@ -6343,37 +6619,37 @@ msgstr "" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" -msgstr "" +msgstr "Mostrar respuestas ocultas" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" -msgstr "" +msgstr "Mostrar menos como este" #: src/screens/List/ListHiddenScreen.tsx:172 msgid "Show list anyway" -msgstr "" +msgstr "Mostrar lista de todas maneras" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Ver más" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" -msgstr "" +msgstr "Mostrar más como este" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show muted replies" -msgstr "" +msgstr "Mostrar respuestas silenciadas" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" -msgstr "Mostrar publicaciones de mis noticias" +msgstr "Mostrar publicaciones de mis feeds" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Mostrar publicaciones de citas" @@ -6389,11 +6665,11 @@ msgstr "Mostrar publicaciones de citas" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Mostrar respuestas" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el resto de respuestas." @@ -6409,12 +6685,12 @@ msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el res #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" -msgstr "" +msgstr "Mostrar respuesta para todos" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Mostrar reposts" @@ -6422,10 +6698,10 @@ msgstr "Mostrar reposts" #~ msgid "Show reposts in Following" #~ msgstr "Mostrar reposts en Siguiendo" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" -msgstr "" +msgstr "Mostrar el contenido" #: src/view/com/notifications/FeedItem.tsx:347 #~ msgid "Show users" @@ -6433,42 +6709,41 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" -msgstr "" +msgstr "Mostrar advertencia" #: src/lib/moderation/useLabelBehaviorDescription.ts:56 msgid "Show warning and filter from feeds" -msgstr "" +msgstr "Mostrar advertencia y filtrar de los feeds" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Iniciar sesión" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Iniciar sesión como {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Iniciar sesión como ..." @@ -6478,130 +6753,134 @@ msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!" #: src/components/dialogs/Signin.tsx:46 msgid "Sign into Bluesky or create a new account" -msgstr "Inicia sesión a Bluesky o crea una nueva cuenta" +msgstr "Inicia sesión en Bluesky o crea una nueva cuenta" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Cerrar sesión" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" -msgstr "" +msgstr "Cerrar sesión de todas las cuentas" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Crear cuenta" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Inicia sesión o crea una cuenta para unirte a la conversación" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Inicia sesión o crea una cuenta para unirte a la conversación" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Se requiere iniciar sesión" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Sesión iniciada como" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" #: src/view/com/notifications/FeedItem.tsx:218 msgid "signed up with your starter pack" -msgstr "" +msgstr "se ha registrado con tu paquete de inicio" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" -msgstr "" +msgstr "Registrarse sin un paquete de inicio" #: src/components/FeedInterstitials.tsx:316 msgid "Similar accounts" -msgstr "" +msgstr "Cuentas similares" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Saltar" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" -msgstr "Saltar" +msgstr "Saltar este flujo" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "Más pequeño" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Programación" #: src/components/FeedInterstitials.tsx:447 msgid "Some other feeds you might like" -msgstr "" +msgstr "Algunos otros feeds que podrían gustarte" #: src/components/WhoCanReply.tsx:70 msgid "Some people can reply" -msgstr "" +msgstr "Algunas personas pueden responder" #: src/screens/StarterPack/Wizard/index.tsx:203 #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Ocurrió un error" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Ocurrió un error, por favor intenta de nuevo" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Ocurrió un error. Intenta de nuevo." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" -msgstr "" +msgstr "¡Ocurrió un error!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Ordenar respuestas" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Ordenar respuestas al mismo post por:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Fuente:" +msgid "Source:" +msgstr "Fuente:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6613,108 +6892,116 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menciones o respuestas excesivas" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Deportes" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Cuadrado" +#~ msgid "Square" +#~ msgstr "Cuadrado" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" -msgstr "" +msgstr "Iniciar un nuevo chat" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" -msgstr "" +msgstr "Iniciar chat con {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" -msgstr "" +msgstr "Paquete de inicio" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" -msgstr "" +msgstr "Paquete de inicio de {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Paquete de inicio creado por ti" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" -msgstr "" +msgstr "El paquete de inicio es inválido" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" -msgstr "" +msgstr "Paquetes de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y personas favoritas con tus amigos." -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" -msgstr "" +msgstr "Página de estado" #: src/screens/Signup/index.tsx:145 #~ msgid "Step" #~ msgstr "Paso" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." -msgstr "" +msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Libro de cuentos" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Suscribirse" #: src/screens/Profile/Sections/Labels.tsx:201 msgid "Subscribe to @{0} to use these labels:" -msgstr "" +msgstr "Suscríbete a @{0} para usar estas etiquetas:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" -msgstr "" +msgstr "Suscribirse al etiquetador" #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" -msgstr "" +msgstr "Suscribirse a este etiquetador" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "¡Éxito!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" -msgstr "" +msgstr "Cuentas sugeridas" #: src/view/screens/Search/Search.tsx:425 #~ msgid "Suggested Follows" @@ -6722,20 +7009,21 @@ msgstr "" #: src/components/FeedInterstitials.tsx:318 msgid "Suggested for you" -msgstr "" +msgstr "Sugerido para ti" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" -msgstr "" +msgstr "Sugestivo" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soporte" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Cambiar a otra cuenta" @@ -6743,20 +7031,21 @@ msgstr "Cambiar a otra cuenta" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" -msgstr "" +msgstr "Cambiar a {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" -msgstr "" +msgstr "Cambia la cuenta en la que has iniciado sesión" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" -msgstr "" +msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Bitácora del sistema" @@ -6764,38 +7053,38 @@ msgstr "Bitácora del sistema" #~ msgid "tag" #~ msgstr "" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" -msgstr "" +msgstr "Menú de etiquetas: {displayTag}" #: src/components/dialogs/MutedWords.tsx:282 msgid "Tags only" -msgstr "" +msgstr "Solo etiquetas" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Alto" +#~ msgid "Tall" +#~ msgstr "Alto" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" -msgstr "" +msgstr "Toca para descartar" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" -msgstr "" +msgstr "Toca para entrar a pantalla completa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" -msgstr "" +msgstr "Toca para reproducir o pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" -msgstr "" +msgstr "Toca para alternar el sonido" #: src/view/com/util/images/AutoSizedImage.tsx:219 #: src/view/com/util/images/AutoSizedImage.tsx:239 msgid "Tap to view full image" -msgstr "" +msgstr "Toca para ver la imagen completa" #: src/view/com/util/images/AutoSizedImage.tsx:70 #~ msgid "Tap to view fully" @@ -6803,38 +7092,42 @@ msgstr "" #: src/state/shell/progress-guide.tsx:166 msgid "Task complete - 10 likes!" -msgstr "" +msgstr "¡Tarea completada - 10 me gusta!" #: src/components/ProgressGuide/List.tsx:49 msgid "Teach our algorithm what you like" -msgstr "" +msgstr "Enseña a nuestro algoritmo lo que te gusta" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Tecnología" #: src/components/dms/ChatEmptyPill.tsx:35 msgid "Tell a joke!" +msgstr "¡Cuenta un chiste!" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" msgstr "" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "Cuéntanos un poco más" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "Diez Millones" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Condiciones de servicio" @@ -6843,226 +7136,251 @@ msgstr "Condiciones de servicio" #: src/lib/moderation/useReportOptions.ts:107 #: src/lib/moderation/useReportOptions.ts:115 msgid "Terms used violate community standards" -msgstr "" +msgstr "Los términos utilizados violan las normas de la comunidad" #: src/components/dialogs/MutedWords.tsx:323 #~ msgid "text" -#~ msgstr "" +#~ msgstr "texto" #: src/components/dialogs/MutedWords.tsx:266 msgid "Text & tags" -msgstr "" +msgstr "Texto y etiquetas" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de introducción de texto" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "¡Gracias! Tu correo electrónico ha sido verificado exitosamente." + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." -msgstr "" +msgstr "Gracias. Tu denuncia ha sido enviada." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "Gracias por ser uno de nuestros primeros 10 millones de usuarios." #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "" +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "Gracias, has verificado tu dirección de correo electrónico exitosamente." -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Gracias, has verificado tu dirección de correo electrónico exitosamente. Puedes cerrar esta ventana." + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" -msgstr "" +msgstr "Eso contiene lo siguiente:" #: src/screens/Signup/StepHandle.tsx:51 msgid "That handle is already taken." msgstr "Este nombre de usuario ya está en uso." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." -msgstr "" +msgstr "No se pudo encontrar ese paquete de inicio." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" -msgstr "" +msgstr "¡Eso es todo, amigos!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrá interactuar contigo tras desbloquearla." #: src/components/moderation/ModerationDetailsDialog.tsx:127 #~ msgid "the author" -#~ msgstr "" +#~ msgstr "el autor" #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." -msgstr "" +msgstr "El autor de este hilo ha ocultado esta respuesta." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" -msgstr "" +msgstr "La aplicación web de Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" -msgstr "Las Directrices Comunitarias se ha trasladado a <0/>" +msgstr "Las Directrices Comunitarias se han trasladado a <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" -msgstr "La Política de derechos de autor se han trasladado a <0/>" +msgstr "La Política de derechos de autor se ha trasladado a <0/>" #: src/view/com/posts/FeedShutdownMsg.tsx:102 msgid "The Discover feed" -msgstr "" +msgstr "El feed de Descubrir" #: src/state/shell/progress-guide.tsx:167 #: src/state/shell/progress-guide.tsx:172 msgid "The Discover feed now knows what you like" -msgstr "" +msgstr "El feed de Descubrir ahora sabe lo que te gusta" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "La experiencia es mejor en la aplicación. Descarga Bluesky ahora y continuaremos donde lo dejaste." #: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." -msgstr "" +msgstr "El feed ha sido reemplazado por Descubrir." #: src/components/moderation/LabelsOnMeDialog.tsx:58 msgid "The following labels were applied to your account." -msgstr "" +msgstr "Las siguientes etiquetas se aplicaron a tu cuenta." #: src/components/moderation/LabelsOnMeDialog.tsx:59 msgid "The following labels were applied to your content." -msgstr "" +msgstr "Las siguientes etiquetas se aplicaron a tu contenido." #: src/screens/Onboarding/Layout.tsx:58 msgid "The following steps will help customize your Bluesky experience." -msgstr "" +msgstr "Los siguientes pasos ayudarán a personalizar tu experiencia en Bluesky." #: src/view/com/post-thread/PostThread.tsx:208 #: src/view/com/post-thread/PostThread.tsx:220 msgid "The post may have been deleted." msgstr "Es posible que se haya borrado el post." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de privacidad se ha trasladado a <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." -msgstr "" +msgstr "El video seleccionado es mayor de 50MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "El paquete de inicio que intentas ver es inválido. Puedes eliminar este paquete de inicio en su lugar." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Se ha movido el formulario de soporte. Si necesitas ayuda, por favor <0/> o visita {HELP_DESK_URL} para ponerte en contacto con nosotros." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Las condiciones de servicio se han trasladado a" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -msgstr "" +msgstr "El código de verificación que has proporcionado es inválido. Por favor, asegúrate de haber utilizado el enlace de verificación correcto o solicita uno nuevo." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "Tema" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" -#~ msgstr "Hay muchos más feeds que probar:" +#~ msgstr "¡Hay muchos más feeds que probar!" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +msgstr "No hay límite de tiempo para la desactivación de la cuenta, regresa en cualquier momento." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Hubo un problema al contactar con el servidor, por favor verifica tu conexión a internet y vuelve a intentarlo." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "" +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Hubo un problema al eliminar este feed. Por favor verifica tu conexión a internet y vuelve a intentarlo." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "" +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Hubo un problema al actualizar tus feeds, por favor verifica tu conexión a internet y vuelve a intentarlo." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." -msgstr "" +msgstr "Hubo un problema al conectarse a Tenor." #: src/screens/Messages/Conversation/MessageListError.tsx:23 #~ msgid "There was an issue connecting to the chat." -#~ msgstr "" +#~ msgstr "Hubo un problema al conectarse al chat." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" +msgstr "Hubo un problema al contactar con el servidor" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" -msgstr "" +msgstr "Hubo un problema al contactar con tu servidor" #: src/view/com/notifications/Feed.tsx:129 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "" +msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "" +msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." -msgstr "" +msgstr "Hubo un problema al obtener la lista. Toca aquí para intentar de nuevo." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "Hubo un problema al obtener tus listas. Toca aquí para intentar de nuevo." + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." -msgstr "" +msgstr "Hubo un problema al enviar tu reporte. Por favor verifica tu conexión a internet." #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 #~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "" +#~ msgstr "Hubo un problema al sincronizar tus preferencias con el servidor" -#: src/view/screens/AppPasswords.tsx:69 -msgid "There was an issue with fetching your app passwords" +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/view/screens/AppPasswords.tsx:75 +msgid "There was an issue with fetching your app passwords" +msgstr "Hubo un problema al obtener tus contraseñas de aplicación" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Ocurrió un problema {0}" @@ -7070,113 +7388,112 @@ msgstr "Ocurrió un problema {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." -msgstr "" +msgstr "Hubo un problema. Por favor verifica tu conexión a internet y vuelve a intentarlo." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Se ha producido un problema inesperado en la aplicación. Por favor, ¡avísanos si te ha ocurrido esto!" #: src/screens/SignupQueued.tsx:112 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." -msgstr "" +msgstr "¡Ha habido una oleada de nuevos usuarios en Bluesky! Activaremos tu cuenta tan pronto como podamos." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #~ msgid "These are popular accounts you might like:" -#~ msgstr "" +#~ msgstr "Estas son cuentas populares que podrían gustarte:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha sido marcada:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta ha solicitado que los usuarios inicien sesión para ver su perfil." #: src/components/dms/BlockedByListDialog.tsx:34 msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." -msgstr "" +msgstr "Esta cuenta está bloqueada por una o más de tus listas de moderación. Para desbloquearla, por favor visita las listas directamente y elimina a este usuario." #: src/components/moderation/LabelsOnMeDialog.tsx:260 #~ msgid "This appeal will be sent to <0>{0}." -#~ msgstr "" +#~ msgstr "Esta apelación será enviada a <0>{0}." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." -msgstr "" +msgstr "Esta apelación será enviada a <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." -msgstr "" +msgstr "Esta apelación será enviada al servicio de moderación de Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" -msgstr "" +msgstr "Este chat fue desconectado" #: src/screens/Messages/Conversation/MessageListError.tsx:26 #~ msgid "This chat was disconnected due to a network error." -#~ msgstr "" +#~ msgstr "Este chat fue desconectado debido a un error de red." #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." -msgstr "" +msgstr "Este contenido ha sido ocultado por los moderadores." #: src/lib/moderation/useGlobalLabelStrings.ts:24 msgid "This content has received a general warning from moderators." -msgstr "" +msgstr "Este contenido ha recibido una advertencia general de los moderadores." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" -msgstr "" +msgstr "Este contenido está alojado por {0}. ¿Deseas habilitar medios externos?" #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:82 msgid "This content is not available because one of the users involved has blocked the other." -msgstr "" +msgstr "Este contenido no está disponible porque uno de los usuarios involucrados ha bloqueado al otro." #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." -msgstr "Este contenido no se puede visto sin una cuenta de Bluesky." +msgstr "Este contenido no se puede ver sin una cuenta de Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." -msgstr "" +msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona para ver opciones." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "" +msgstr "Esta función está en beta. Puedes leer más sobre la exportación de repositorios en <0>esta publicación del blog." #: src/view/com/posts/FeedErrorMessage.tsx:120 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." -msgstr "Este feed está recibiendo mucho tráfico y no está disponible temporalmente. Intenta de nuevo luego." +msgstr "Este feed está recibiendo mucho tráfico y no está disponible temporalmente. Intenta de nuevo más tarde." #: src/screens/Profile/Sections/Feed.tsx:59 #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 #~ msgid "This feed is empty!" -#~ msgstr "" +#~ msgstr "¡Este feed está vacío!" #: src/view/com/posts/CustomFeedEmptyState.tsx:37 msgid "This feed is empty! You may need to follow more users or tune your language settings." -msgstr "" +msgstr "¡Este feed está vacío! Es posible que necesites seguir a más usuarios o ajustar la configuración de idioma." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." -msgstr "" +msgstr "Este feed está vacío." #: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "" +msgstr "Este feed ya no está en línea. Estamos mostrando <0>Descubrir en su lugar." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Esta información no es compartida con otros usuarios." @@ -7186,27 +7503,27 @@ msgstr "Esto es importante por si alguna vez necesitas cambiar tu correo electr #: src/components/moderation/ModerationDetailsDialog.tsx:124 #~ msgid "This label was applied by {0}." -#~ msgstr "" +#~ msgstr "Esta etiqueta fue aplicada por {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." -msgstr "" +msgstr "Esta etiqueta fue aplicada por <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." -msgstr "" +msgstr "Esta etiqueta fue aplicada por el autor." #: src/components/moderation/LabelsOnMeDialog.tsx:165 #~ msgid "This label was applied by you" -#~ msgstr "" +#~ msgstr "Esta etiqueta fue aplicada por ti" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." -msgstr "" +msgstr "Esta etiqueta fue aplicada por ti." #: src/screens/Profile/Sections/Labels.tsx:188 msgid "This labeler hasn't declared what labels it publishes, and may not be active." -msgstr "" +msgstr "Este etiquetador no ha declarado qué etiquetas publica y puede que no esté activo." #: src/view/com/modals/LinkWarning.tsx:72 msgid "This link is taking you to the following website:" @@ -7214,178 +7531,182 @@ msgstr "Este enlace te lleva al siguiente sitio web:" #: src/screens/List/ListHiddenScreen.tsx:136 msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Esta lista - creada por <0>{0} - contiene posibles violaciones de las directrices comunitarias de Bluesky en su nombre o descripción." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" -msgstr "" +msgstr "¡Esta lista está vacía!" #: src/screens/Profile/ErrorState.tsx:40 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -msgstr "" +msgstr "Este servicio de moderación no está disponible. Consulta más detalles a continuación. Si el problema persiste, contáctanos." #: src/view/com/modals/AddAppPasswords.tsx:110 msgid "This name is already in use" -msgstr "" +msgstr "Este nombre ya está en uso" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." -msgstr "Esta post ha sido eliminado." +msgstr "Esta publicación ha sido eliminada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "" +msgstr "Esta publicación solo es visible para usuarios registrados. No será visible para personas que no han iniciado sesión." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "" +msgstr "Esta publicación será ocultada de los feeds y hilos. Esto no se puede deshacer." #: src/view/com/util/forms/PostDropdownBtn.tsx:443 #~ msgid "This post will be hidden from feeds." -#~ msgstr "" +#~ msgstr "Esta publicación será ocultada de los feeds." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." -msgstr "" +msgstr "El autor de esta publicación ha deshabilitado las citas de publicaciones." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "" +msgstr "Este perfil solo es visible para usuarios registrados. No será visible para personas que no han iniciado sesión." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "" +msgstr "Esta respuesta será clasificada en una sección oculta al final de tu hilo y silenciará las notificaciones para respuestas posteriores, tanto para ti como para otros." #: src/screens/Signup/StepInfo/Policies.tsx:37 msgid "This service has not provided terms of service or a privacy policy." -msgstr "" +msgstr "Este servicio no ha proporcionado términos de servicio ni una política de privacidad." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" -msgstr "Esto deberia de crear un registro de dominio a:" +msgstr "Esto debería crear un registro de dominio en:" #: src/view/com/profile/ProfileFollowers.tsx:96 msgid "This user doesn't have any followers." -msgstr "" +msgstr "Este usuario no tiene seguidores." #: src/components/dms/MessagesListBlockedFooter.tsx:60 msgid "This user has blocked you" -msgstr "" +msgstr "Este usuario te ha bloqueado" #: src/components/moderation/ModerationDetailsDialog.tsx:78 #: src/lib/moderation/useModerationCauseDescription.ts:73 msgid "This user has blocked you. You cannot view their content." -msgstr "" +msgstr "Este usuario te ha bloqueado. No puedes ver su contenido." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." -msgstr "" +msgstr "Este usuario ha solicitado que su contenido solo se muestre a usuarios que han iniciado sesión." #: src/components/moderation/ModerationDetailsDialog.tsx:58 msgid "This user is included in the <0>{0} list which you have blocked." -msgstr "" +msgstr "Este usuario está incluido en la lista <0>{0} que has bloqueado." #: src/components/moderation/ModerationDetailsDialog.tsx:90 msgid "This user is included in the <0>{0} list which you have muted." -msgstr "" +msgstr "Este usuario está incluido en la lista <0>{0} que has silenciado." #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "" +msgstr "Este usuario es nuevo aquí. Presiona para más información sobre cuándo se unió." #: src/view/com/profile/ProfileFollows.tsx:96 msgid "This user isn't following anyone." -msgstr "" +msgstr "Este usuario no sigue a nadie." #: src/view/com/modals/SelfLabel.tsx:137 #~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Esta advertencia sólo está disponible para las publicaciones con medios adjuntos." +#~ msgstr "Esta advertencia solo está disponible para publicaciones con medios adjuntos." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." -msgstr "" +msgstr "Esto eliminará \"{0}\" de tus palabras silenciadas. Siempre puedes agregarlo de nuevo más tarde." #: src/components/dialogs/MutedWords.tsx:283 #~ msgid "This will delete {0} from your muted words. You can always add it back later." -#~ msgstr "" +#~ msgstr "Esto eliminará {0} de tus palabras silenciadas. Siempre puedes agregarlas de nuevo más tarde." #: src/view/com/util/AccountDropdownBtn.tsx:55 msgid "This will remove @{0} from the quick access list." -msgstr "" +msgstr "Esto eliminará @{0} de la lista de acceso rápido." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." -msgstr "" +msgstr "Esto eliminará tu publicación de esta cita para todos los usuarios y la reemplazará con un marcador de posición." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Preferencias de hilos" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Preferencias de hilos" #: src/components/WhoCanReply.tsx:109 #~ msgid "Thread settings updated" -#~ msgstr "" +#~ msgstr "Configuraciones de hilo actualizadas" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" -msgstr "" +msgstr "Preferencias de hilos" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." -msgstr "" +msgstr "Para desactivar el método de 2FA por correo electrónico, por favor verifica tu acceso a la dirección de correo electrónico." #: src/components/dms/ReportConversationPrompt.tsx:20 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" +msgstr "Para denunciar una conversación, por favor denuncia uno de sus mensajes a través de la pantalla de la conversación. Esto permite a nuestros moderadores entender el contexto de tu problema." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." -msgstr "" +msgstr "Para subir videos a Bluesky, primero debes verificar tu correo electrónico." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" -msgstr "" +msgstr "¿A quién te gustaría enviar este reporte?" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Hoy" #: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "" +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "Juntos, estamos reconstruyendo el internet social. Nos alegra que estés aquí." #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." -#~ msgstr "" +#~ msgstr "Alternar entre opciones de palabras silenciadas." #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "Conmutar el menú desplegable" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" -msgstr "" +msgstr "Alternar para habilitar o deshabilitar contenido para adultos" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Top" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Transformaciones" +#~ msgid "Transformations" +#~ msgstr "Transformaciones" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Traducir" @@ -7394,55 +7715,55 @@ msgctxt "action" msgid "Try again" msgstr "Intentar de nuevo" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" -msgstr "" +msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" -msgstr "" +msgstr "Autenticación de dos factores" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Escribe tu mensaje aquí" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" -msgstr "" +msgstr "Tipo:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Desbloquear lista" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Demutear lista" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" -msgstr "" +msgstr "No se puede eliminar" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -7450,19 +7771,19 @@ msgstr "Desbloquear" #: src/components/dms/ConvoMenu.tsx:188 #: src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" -msgstr "" +msgstr "Desbloquear cuenta" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Desbloquear Cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "¿Desbloquear Cuenta?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7477,109 +7798,114 @@ msgstr "Dejar de seguir" #~ msgid "Unfollow" #~ msgstr "Dejar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Dejar de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Dejar de seguir a esta cuenta" #: src/view/com/util/post-ctrls/PostCtrls.tsx:197 #~ msgid "Unlike" -#~ msgstr "" +#~ msgstr "No me gusta" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" -msgstr "" +msgstr "No me gusta este feed" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 -msgctxt "video" -msgid "Unmute" -msgstr "" - -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "Demutear" +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "Desmutear" + #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Demutear {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Demutear Cuenta" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" -msgstr "" +msgstr "Demutear todas las publicaciones de {displayTag}" #: src/components/dms/ConvoMenu.tsx:176 msgid "Unmute conversation" -msgstr "" +msgstr "Demutear conversación" #: src/components/dms/ConvoMenu.tsx:140 #~ msgid "Unmute notifications" #~ msgstr "Demutear notificaciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Demutear hilo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" -msgstr "" +msgstr "Desmutear video" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 #~ msgid "Unmuted" -#~ msgstr "" +#~ msgstr "Desmutado" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Desfijar" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" -msgstr "" +msgstr "Desfijar de inicio" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "Desfijar del perfil" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Desfijar lista de moderación" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" -msgstr "" +msgstr "Desfijado de tus feeds" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" -msgstr "" +msgstr "Darse de baja" #: src/screens/List/ListHiddenScreen.tsx:184 #: src/screens/List/ListHiddenScreen.tsx:194 msgid "Unsubscribe from list" -msgstr "" +msgstr "Darse de baja de la lista" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" -msgstr "" +msgstr "Darse de baja de este etiquetador" #: src/screens/List/ListHiddenScreen.tsx:86 msgid "Unsubscribed from list" -msgstr "" +msgstr "Dado de baja de la lista" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" -msgstr "" +msgstr "Tipo de video no soportado: {mimeType}" #: src/lib/moderation/useReportOptions.ts:85 #~ msgid "Unwanted sexual content" -#~ msgstr "" +#~ msgstr "Contenido sexual no deseado" #: src/lib/moderation/useReportOptions.ts:77 #: src/lib/moderation/useReportOptions.ts:90 @@ -7587,85 +7913,102 @@ msgid "Unwanted Sexual Content" msgstr "Contenido sexual no deseado" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Actualizar {displayName} en Listas" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Actualizar {displayName} en Listas" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "Actualizar <0>{displayName} en Listas" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" -msgstr "" +msgstr "Actualizar a {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" -msgstr "" +msgstr "Actualizar el adjunto de la cita falló" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" -msgstr "" +msgstr "Actualizar la visibilidad de la respuesta falló" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Actualizando..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" -msgstr "" +msgstr "Sube una foto en su lugar" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Carga un archivo de texto en:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" -msgstr "" +msgstr "Subir desde la cámara" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" -msgstr "" +msgstr "Subir desde tus archivos" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" +msgstr "Subir desde la biblioteca" + +#: src/lib/api/index.ts:272 +msgid "Uploading images..." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" -msgstr "" +msgstr "Usar un archivo en tu servidor" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Utiliza las contraseñas de app para iniciar sesión en otros clientes de Bluesky sin dar acceso completo a tu cuenta o contraseña." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Usar bsky.social como proveedor" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Utilizar el proveedor predeterminado" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" -msgstr "" +msgstr "Usar navegador integrado" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" -msgstr "" +msgstr "Usar mi navegador predeterminado" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" -msgstr "" +msgstr "Usar recomendados" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" -msgstr "" +msgstr "Usar el panel DNS" #: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." @@ -7678,58 +8021,58 @@ msgstr "Usado por:" #: src/components/moderation/ModerationDetailsDialog.tsx:70 #: src/lib/moderation/useModerationCauseDescription.ts:61 msgid "User Blocked" -msgstr "" +msgstr "Usuario bloqueado" #: src/lib/moderation/useModerationCauseDescription.ts:53 msgid "User Blocked by \"{0}\"" -msgstr "" +msgstr "Usuario bloqueado por \"{0}\"" #: src/components/dms/BlockedByListDialog.tsx:27 msgid "User blocked by list" -msgstr "" +msgstr "Usuario bloqueado por lista" #: src/components/moderation/ModerationDetailsDialog.tsx:56 msgid "User Blocked by List" -msgstr "" +msgstr "Usuario Bloqueado por Lista" #: src/lib/moderation/useModerationCauseDescription.ts:71 msgid "User Blocking You" -msgstr "" +msgstr "Usuario te está bloqueando" #: src/components/moderation/ModerationDetailsDialog.tsx:76 msgid "User Blocks You" -msgstr "" +msgstr "Usuario te bloquea" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" -msgstr "" +msgstr "Lista de usuarios por {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" -msgstr "" +msgstr "Lista de usuarios por <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" -msgstr "" +msgstr "Lista de usuarios por ti" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" -msgstr "" +msgstr "Lista de usuarios creada" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" -msgstr "" +msgstr "Lista de usuarios actualizada" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Listas de usuarios" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Nombre de usuario o dirección de correo electrónico" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Usuarios" @@ -7739,52 +8082,51 @@ msgstr "Usuarios" #: src/components/WhoCanReply.tsx:258 msgid "users followed by <0>@{0}" -msgstr "" +msgstr "usuarios seguidos por <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" -msgstr "" +msgstr "Usuarios que sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Usuarios en \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" -msgstr "" +msgstr "Usuarios que les ha gustado este contenido o perfil" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" -msgstr "" +msgstr "Valor:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" -msgstr "" +msgstr "Se requiere un correo electrónico verificado" #: src/view/com/modals/ChangeHandle.tsx:510 #~ msgid "Verify {0}" -#~ msgstr "" +#~ msgstr "Verificar {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" -msgstr "" +msgstr "Verificar registro DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Verificar el correo electrónico" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "" +msgstr "Ventana de verificación de correo electrónico" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Verificar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Verificar mi correo electrónico" @@ -7793,85 +8135,98 @@ msgstr "Verificar mi correo electrónico" msgid "Verify New Email" msgstr "Verificar el correo electrónico nuevo" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" -msgstr "" +msgstr "Verificar ahora" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" -msgstr "" +msgstr "Verificar archivo de texto" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" -msgstr "" +msgstr "Verifica tu correo electrónico" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" -msgstr "" +msgstr "Versión {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" -msgstr "" +msgstr "Video" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" -msgstr "" +msgstr "El video no se pudo procesar" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Videojuegos" #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 msgid "Video not found." -msgstr "" +msgstr "Video no encontrado." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" +msgstr "Configuración del video" + +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" -msgstr "" +msgstr "Video: {0}" #: src/view/com/composer/videos/state.ts:27 #~ msgid "Videos cannot be larger than 50MB" -#~ msgstr "" +#~ msgstr "Los videos no pueden ser mayores de 50MB" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" -msgstr "" +msgstr "Los videos deben tener menos de 60 segundos de duración" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" -msgstr "" +msgstr "Ver el avatar de {0}" #: src/components/ProfileCard.tsx:110 #: src/view/com/notifications/FeedItem.tsx:273 msgid "View {0}'s profile" -msgstr "" +msgstr "Ver el perfil de {0}" #: src/components/dms/MessagesListHeader.tsx:160 msgid "View {displayName}'s profile" +msgstr "Ver el perfil de {displayName}" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" -msgstr "" +msgstr "Ver el perfil del usuario bloqueado" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" -msgstr "" +msgstr "Ver la entrada del blog para más detalles" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Ver entrada de depuración" #: src/components/ReportDialog/SelectReportOptionView.tsx:139 msgid "View details" -msgstr "" +msgstr "Ver detalles" #: src/components/ReportDialog/SelectReportOptionView.tsx:134 msgid "View details for reporting a copyright violation" @@ -7879,48 +8234,50 @@ msgstr "Ver más detalles sobre cómo reportar una violación de Derechos de Aut #: src/view/com/posts/FeedSlice.tsx:136 msgid "View full thread" -msgstr "" +msgstr "Ver hilo completo" #: src/components/moderation/LabelsOnMe.tsx:47 msgid "View information about these labels" -msgstr "" +msgstr "Ver información sobre estas etiquetas" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" -msgstr "" +msgstr "Ver perfil" #: src/view/com/profile/ProfileSubpageHeader.tsx:127 msgid "View the avatar" msgstr "Ver el avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" -msgstr "" +msgstr "Ver el servicio de etiquetado proporcionado por @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" -msgstr "" +msgstr "Ver usuarios a los que les gusta este feed" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" -msgstr "" +msgstr "Ver tus cuentas bloqueadas" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" -msgstr "" +msgstr "Ver tus feeds y explorar más" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" -msgstr "" +msgstr "Ver tus listas de moderación" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" -msgstr "" +msgstr "Ver tus cuentas silenciadas" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -7935,94 +8292,98 @@ msgstr "Advertir" #: src/lib/moderation/useLabelBehaviorDescription.ts:48 msgid "Warn content" -msgstr "" +msgstr "Advertir contenido" #: src/lib/moderation/useLabelBehaviorDescription.ts:46 msgid "Warn content and filter from feeds" -msgstr "" +msgstr "Advertir contenido y filtrar de los feeds" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." -msgstr "" +msgstr "No pudimos encontrar resultados para ese hashtag." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" -msgstr "" +msgstr "No pudimos cargar esta conversación" #: src/screens/SignupQueued.tsx:139 msgid "We estimate {estimatedTime} until your account is ready." -msgstr "" +msgstr "Estimamos {estimatedTime} hasta que tu cuenta esté lista." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." -msgstr "" +msgstr "Hemos enviado otro correo electrónico de verificación a <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperemos que la pases bien. Recuerda, Bluesky es:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." -msgstr "" +msgstr "Se acabaron los posts de tus seguidos. Aquí está lo último de <0/>." #: src/components/dialogs/MutedWords.tsx:203 #~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#~ msgstr "" +#~ msgstr "Recomendamos evitar palabras comunes que aparecen en muchos posts, ya que puede resultar en que no se muestren posts." #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 #~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "Recomendamos nuesto feed \"Discover\":" +#~ msgstr "Recomendamos nuestro feed \"Discover\":" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "" +msgstr "No pudimos determinar si tienes permiso para subir videos. Por favor, intenta de nuevo." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." -msgstr "" +msgstr "No pudimos cargar tus preferencias de fecha de nacimiento. Por favor, intenta de nuevo." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." -msgstr "" +msgstr "No pudimos cargar tus etiquetadores configurados en este momento." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "" +msgstr "No pudimos conectarnos. Por favor, intenta de nuevo para continuar configurando tu cuenta. Si sigue fallando, puedes omitir este proceso." #: src/screens/SignupQueued.tsx:143 msgid "We will let you know when your account is ready." -msgstr "" +msgstr "Te informaremos cuando tu cuenta esté lista." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." -msgstr "" +msgstr "Usaremos esto para ayudar a personalizar tu experiencia." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" -msgstr "" +msgstr "Estamos teniendo problemas de red, intenta de nuevo" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "Estamos introduciendo una nueva fuente de tema, junto con un tamaño de fuente ajustable." + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "¡Es nuestro placer tenerte aquí!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." -msgstr "" +msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por favor contacta al creador de la lista, @{handleOrDid}." #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "" +msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este momento. Por favor, intenta de nuevo." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lo sentimos, pero no se ha podido completar tu búsqueda. Intenta de nuevo en unos minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "¡Lo sentimos! El post al que estás respondiendo ha sido eliminado." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Lo sentimos. No encontramos la página que buscabas." @@ -8030,48 +8391,48 @@ msgstr "Lo sentimos. No encontramos la página que buscabas." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Lo sentimos. Solo puedes suscribirte a hasta 10 etiquetadores, y has alcanzado el límite." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "" +msgstr "¡Lo sentimos! Solo puedes suscribirte a veinte etiquetadores, y has alcanzado tu límite de veinte." #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "¡Bienvenido de nuevo!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "¡Bienvenido, amigo!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "¿Cuáles son tus intereses?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "¿Cómo quieres llamar a tu paquete de inicio?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "¿Qué hay de nuevo?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "¿En qué idioma está este post?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "¿Qué idiomas te gustaría ver en tus feeds?" #: src/components/WhoCanReply.tsx:179 msgid "Who can interact with this post?" -msgstr "" +msgstr "¿Quién puede interactuar con este post?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "¿Quién puede enviarte mensajes?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8079,16 +8440,16 @@ msgstr "Quién puede responder" #: src/components/WhoCanReply.tsx:212 #~ msgid "Who can reply dialog" -#~ msgstr "" +#~ msgstr "Quién puede responder en el diálogo" #: src/components/WhoCanReply.tsx:216 #~ msgid "Who can reply?" -#~ msgstr "" +#~ msgstr "¿Quién puede responder?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" -msgstr "Whoops!" +msgstr "¡Vaya!" #: src/components/ReportDialog/SelectReportOptionView.tsx:44 msgid "Why should this content be reviewed?" @@ -8112,144 +8473,151 @@ msgstr "¿Por qué crees que este post debe ser revisado?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "¿Por qué crees que este paquete de inicio debe ser revisado?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" msgstr "¿Por qué crees que este usuario debe ser revisado?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Ancho" +#~ msgid "Wide" +#~ msgstr "Ancho" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Escribe un mensaje" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Redacta un post" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Redacta una respuesta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Escritores" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Sí" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "Sí, desactivar" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "Sí, eliminar este paquete de inicio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" -msgstr "" +msgstr "Sí, separar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" -msgstr "" +msgstr "Sí, ocultar" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "Sí, reactivar mi cuenta" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Ayer" #: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "" +#~ msgid "Yesterday, {time}" +#~ msgstr "Ayer, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" -msgstr "" +msgstr "tú" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "Tú" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Estás en cola." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." -msgstr "" +msgstr "No tienes permiso para subir videos." #: src/view/com/profile/ProfileFollows.tsx:95 msgid "You are not following anyone." msgstr "No estás siguiendo a nadie." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "Puedes ajustar esto en tus Configuraciones de Apariencia más adelante." + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." -msgstr "" +msgstr "También puedes descubrir nuevos Feeds personalizados para seguir." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "También puedes desactivar temporalmente tu cuenta y reactivarla en cualquier momento." #: src/screens/Onboarding/StepFollowingFeed.tsx:143 #~ msgid "You can change these settings later." #~ msgstr "Puedes cambiar estos ajustes luego." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "Puedes cambiar esto en cualquier momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" +msgstr "Puedes continuar las conversaciones en curso independientemente de la configuración que elijas." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Ahora puedes iniciar sesión con tu nueva contraseña." #: src/screens/Deactivated.tsx:136 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "" +msgstr "Puedes reactivar tu cuenta para continuar iniciando sesión. Tu perfil y posts serán visibles para otros usuarios." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "You do not have any followers." msgstr "No tienes ningún seguidor." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "No sigues a ningún usuario que sigue a @{name}." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "¡Aún no tienes ningún código de invitación! Te enviaremos algunos cuando lleves un poco más de tiempo en Bluesky." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." -msgstr "No tienes ninguna feed fijado." +msgstr "No tienes ningún feed fijado." #: src/view/screens/Feeds.tsx:477 #~ msgid "You don't have any saved feeds!" -#~ msgstr "No tienes ninguna feed guardado" +#~ msgstr "No tienes ningún feed guardado!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." -msgstr "No tienes ningún feed guardado" +msgstr "No tienes ningún feed guardado." #: src/view/com/post-thread/PostThread.tsx:214 msgid "You have blocked the author or you have been blocked by the author." @@ -8257,7 +8625,7 @@ msgstr "Has bloqueado al autor o has sido bloqueado por el autor." #: src/components/dms/MessagesListBlockedFooter.tsx:58 msgid "You have blocked this user" -msgstr "" +msgstr "Has bloqueado a este usuario" #: src/components/moderation/ModerationDetailsDialog.tsx:72 #: src/lib/moderation/useModerationCauseDescription.ts:55 @@ -8265,8 +8633,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "Has bloqueado a este usuario. No puedes ver su contenido." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8289,16 +8657,16 @@ msgstr "Has muteado a esta cuenta." msgid "You have muted this user" msgstr "Has muteado a esta cuenta" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" -msgstr "" +msgstr "No tienes ninguna conversacion. ¡Comienza una!" #: src/view/com/feeds/ProfileFeedgens.tsx:138 msgid "You have no feeds." msgstr "No tienes feeds." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "No tienes listas." @@ -8306,64 +8674,68 @@ msgstr "No tienes listas." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "Aún no tienes ningún mensaje. ¡Comienza una conversación con alguien!" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." -msgstr "" +msgstr "Aún no has bloqueado ninguna cuenta. Para bloquear una cuenta, ve a su perfil y selecciona \"Bloquear cuenta\" en el menú de su cuenta." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Aún no has creado una contraseña de app. Puedes crear una al presionar el botón abajo." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -msgstr "" +msgstr "Aún no has silenciado ninguna cuenta. Para silenciar una cuenta, ve a su perfil y selecciona \"Silenciar cuenta\" en el menú de su cuenta." #: src/components/Lists.tsx:52 msgid "You have reached the end" -msgstr "" +msgstr "Has llegado al final" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." -msgstr "" +msgstr "Has alcanzado temporalmente el límite de subidas de videos. Por favor, intenta de nuevo más tarde." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "¡Aún no has creado un paquete de inicio!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" -msgstr "" +msgstr "Aún no has silenciado ninguna palabra o etiqueta" #: src/components/moderation/ModerationDetailsDialog.tsx:117 #: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "You hid this reply." -msgstr "" +msgstr "Has ocultado esta respuesta." #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "You may appeal non-self labels if you feel they were placed in error." -msgstr "" +msgstr "Puedes apelar etiquetas no propias si sientes que fueron colocadas por error." #: src/components/moderation/LabelsOnMeDialog.tsx:83 msgid "You may appeal these labels if you feel they were placed in error." -msgstr "" +msgstr "Puedes apelar estas etiquetas si sientes que fueron colocadas por error." #: src/screens/StarterPack/Wizard/State.tsx:79 msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" -msgstr "" +msgstr "Sólo puedes añadir hasta {STARTER_PACK_MAX_SIZE} perfiles" #: src/screens/StarterPack/Wizard/State.tsx:97 msgid "You may only add up to 3 feeds" -msgstr "" +msgstr "Sólo puedes añadir hasta 3 feeds" #: src/screens/StarterPack/Wizard/State.tsx:95 #~ msgid "You may only add up to 50 feeds" -#~ msgstr "" +#~ msgstr "Sólo puedes añadir hasta 50 feeds" #: src/screens/StarterPack/Wizard/State.tsx:78 #~ msgid "You may only add up to 50 profiles" -#~ msgstr "" +#~ msgstr "Sólo puedes añadir hasta 50 perfiles" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Tienes que tener 13 años o más para poder crear una cuenta." @@ -8371,70 +8743,73 @@ msgstr "Tienes que tener 13 años o más para poder crear una cuenta." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Tienes que tener 18 años o más para poder activar el contenido adulto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar la imagen." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" -msgstr "" +msgstr "Debes seleccionar al menos un etiquetador para un informe" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Anteriormente desactivaste a @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" -msgstr "" +msgstr "Ya no recibirás notificaciones de este hilo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" -msgstr "" +msgstr "Ahora recibirás notificaciones de este hilo" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Enviamos un código de reseteo a tu correo. Introduce ese código aquí y luego introduce tu nueva contraseña." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "Tú: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" -msgstr "" +msgstr "Tú: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "" +msgstr "Comenzarás a seguir a los usuarios y feeds sugeridos una vez que termines de crear tu cuenta." -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "Comenzarás a seguir a los usuarios sugeridos una vez que termines de crear tu cuenta!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Comenzarás a seguir a estas personas y a {0} más" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" -msgstr "" +msgstr "Comenzarás a seguir a estas personas de inmediato" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "Recibirás un correo electrónico en <0>{0} para verificar que eres tú." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "Te mantendrás actualizado con estos feeds" #: src/screens/Onboarding/StepModeration/index.tsx:60 #~ msgid "You're in control" @@ -8449,30 +8824,30 @@ msgstr "Ya estás en cola" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." -msgstr "" +msgstr "Has iniciado sesión con una contraseña de aplicación. Por favor, inicia sesión con tu contraseña principal para continuar con la desactivación de tu cuenta." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "¡Eso es todo!" #: src/components/moderation/ModerationDetailsDialog.tsx:107 #: src/lib/moderation/useModerationCauseDescription.ts:106 msgid "You've chosen to hide a word or tag within this post." -msgstr "" +msgstr "Has elegido ocultar una palabra o etiqueta dentro de esta publicación." #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Haz llegado al fin de tu feed! Encuentra más cuentas para seguir." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" -msgstr "" +msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" -msgstr "" +msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Tu cuenta" @@ -8480,27 +8855,27 @@ msgstr "Tu cuenta" msgid "Your account has been deleted" msgstr "Tu cuenta ha sido eliminada" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "" +msgstr "Tu cuenta aún no tiene suficiente antigüedad para subir videos. Por favor, inténtalo de nuevo más tarde." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." -msgstr "" +msgstr "Tu repositorio de cuenta, que contiene todos los registros de datos públicos, puede ser descargado como un archivo \"CAR\". Este archivo no incluye archivos multimedia incrustados, como imágenes, ni tus datos privados, que deben ser obtenidos por separado." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Tu fecha de nacimiento" #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 msgid "Your browser does not support the video format. Please try a different browser." -msgstr "" +msgstr "Tu navegador no soporta este formato de video. Por favor intenta con uno diferente" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" -msgstr "" +msgstr "Tus chats han sido deshabilitados" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Tu elección será guardada. Puedes cambiar esto en los ajustes luego." @@ -8508,9 +8883,9 @@ msgstr "Tu elección será guardada. Puedes cambiar esto en los ajustes luego." #~ msgid "Your default feed is \"Following\"" #~ msgstr "Tu feed principal es \"Siguiendo\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Tu correo electrónico parece no ser válido." @@ -8525,7 +8900,7 @@ msgstr "Tu correo electrónico aún no ha sido verificado. Por tu seguridad, rec #: src/state/shell/progress-guide.tsx:156 msgid "Your first like!" -msgstr "" +msgstr "¡Tu primer me gusta!" #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." @@ -8535,7 +8910,7 @@ msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus p msgid "Your full handle will be" msgstr "Tu nombre de usuario completo será" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Tu nombre de usuario completo será <0>@{0}" @@ -8547,15 +8922,15 @@ msgstr "Tus palabras muteadas" msgid "Your password has been changed successfully!" msgstr "Tu contraseña ha sido cambiada exitosamente." -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Post publicado" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tus posts, a qué le das me gusta y a quién bloqueas son públicos. Nadie puede ver a quien muteas." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Tu perfil" @@ -8563,14 +8938,14 @@ msgstr "Tu perfil" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Respuesta publicada" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Tu reporte ha sido enviado al servicio de moderación de Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Tu nombre de usuario" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index d1a3632904..1f31507013 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: @pekka.bsky.social,@jaoler.fi,@rahi.bsky.social\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(ei sähköpostiosoitetta)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" @@ -80,15 +80,15 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -97,19 +97,19 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -123,15 +123,15 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" @@ -139,7 +139,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "" @@ -176,7 +176,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "" @@ -213,22 +213,22 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seurattua" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} lukematonta" @@ -252,12 +252,12 @@ msgstr "" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -266,15 +266,15 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" @@ -282,7 +282,7 @@ msgstr "" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} seurattua" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -290,6 +290,10 @@ msgstr "" msgid "<0>{0} members" msgstr "" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "" @@ -308,18 +312,18 @@ msgstr "" #~ msgstr "<0>Seuraa joitakin<1>suositeltuja<2>käyttäjiä" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Tervetuloa<1>Blueskyhin" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Virheellinen käyttäjätunnus" @@ -327,7 +331,7 @@ msgstr "⚠Virheellinen käyttäjätunnus" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Kaksivaiheisen tunnistautumisen vahvistus" @@ -343,8 +347,8 @@ msgstr "" #~ msgid "A help tooltip" #~ msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Siirry navigointilinkkeihin ja asetuksiin" @@ -352,17 +356,16 @@ msgstr "Siirry navigointilinkkeihin ja asetuksiin" msgid "Access profile and other navigation links" msgstr "Siirry profiiliin ja muihin navigointilinkkeihin" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Saavutettavuus" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Esteettömyysasetukset\"" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Esteettömyysasetukset\"" @@ -370,21 +373,21 @@ msgstr "Esteettömyysasetukset\"" #~ msgid "account" #~ msgstr "käyttäjätili" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Käyttäjätili" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Käyttäjätili estetty" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Käyttäjätili seurannassa" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Käyttäjätili hiljennetty" @@ -405,27 +408,27 @@ msgstr "Käyttäjätilin asetukset" msgid "Account removed from quick access" msgstr "Käyttäjätili poistettu pikalinkeistä" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Käyttäjätilin esto poistettu" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Käyttäjätilin seuranta lopetettu" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Käyttäjätilin hiljennys poistettu" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Lisää" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "" @@ -433,27 +436,29 @@ msgstr "" msgid "Add {displayName} to starter pack" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Lisää sisältövaroitus" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Lisää käyttäjä tähän listaan" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Lisää käyttäjätili" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Lisää ALT-teksti" @@ -461,13 +466,13 @@ msgstr "Lisää ALT-teksti" #~ msgid "Add ALT text" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Lisää sovelluksen salasana" @@ -487,7 +492,7 @@ msgstr "Lisää hiljennetyt sanat ja aihetunnisteet" msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" @@ -495,16 +500,16 @@ msgstr "" msgid "Add the default feed of only people you follow" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Lisää seuraava DNS-merkintä verkkotunnukseesi:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Lisää listoihin" @@ -517,7 +522,7 @@ msgstr "Lisää syötteisiini" #~ msgstr "Lisätty" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Lisätty listaan" @@ -529,22 +534,28 @@ msgstr "Lisätty syötteisiini" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Säädä, kuinka monta tykkäystä vastauksen on saatava näkyäkseen syötteessäsi." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Aikuissisältöä" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Aikuissisältö on estetty" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Edistyneemmät" @@ -552,11 +563,11 @@ msgstr "Edistyneemmät" msgid "Algorithm training complete!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syötteet yhdessä paikassa." @@ -570,53 +581,58 @@ msgstr "" #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Onko sinulla jo koodi?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Kirjautuneena sisään nimellä @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "ALT-teksti" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "ALT-teksti kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Sähköposti on lähetetty osoitteeseen {0}. Siinä on vahvistuskoodi, jonka voit syöttää alla." @@ -624,7 +640,11 @@ msgstr "Sähköposti on lähetetty osoitteeseen {0}. Siinä on vahvistuskoodi, j msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Sähköposti on lähetetty aiempaan osoitteeseesi, {0}. Siinä on vahvistuskoodi, jonka voit syöttää alla." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -632,15 +652,15 @@ msgstr "" #~ msgid "An error occured" #~ msgstr "Tapahtui virhe" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -653,19 +673,19 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" @@ -673,12 +693,12 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -690,40 +710,40 @@ msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Tapahtui virhe, yritä uudelleen." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "ja" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Eläimet" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "Animoitu GIF" @@ -731,15 +751,20 @@ msgstr "Animoitu GIF" msgid "Anti-Social Behavior" msgstr "Epäsosiaalinen käytös" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Sovelluksen kieli" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Sovelluksen salasana poistettu" @@ -751,27 +776,27 @@ msgstr "Sovelluksen salasanan nimet voivat sisältää vain kirjaimia, numeroita msgid "App Password names must be at least 4 characters long." msgstr "Sovelluksen salasanojen nimien on oltava vähintään 4 merkkiä pitkiä." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Sovelluksen salasanan asetukset" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Sovellussalasanat" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Valita" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Valita \"{0}\" -merkinnästä" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -779,23 +804,23 @@ msgstr "" #~ msgid "Appeal submitted." #~ msgstr "Valitus jätetty." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Ulkonäkö" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -808,7 +833,7 @@ msgstr "" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Haluatko varmasti poistaa sovellussalasanan \"{name}\"?" @@ -820,10 +845,14 @@ msgstr "Haluatko varmasti poistaa sovellussalasanan \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -836,11 +865,11 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Haluatko varmasti poistaa {0} syötteistäsi?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Haluatko varmasti hylätä tämän luonnoksen?" @@ -853,11 +882,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Onko viestisi kieli <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Taide" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Taiteellinen tai ei-eroottinen alastomuus." @@ -866,22 +895,22 @@ msgid "At least 3 characters" msgstr "Vähintään kolme merkkiä" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Takaisin" @@ -889,20 +918,20 @@ msgstr "Takaisin" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Perustuen kiinnostukseesi {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Perusasiat" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Syntymäpäivä" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Syntymäpäivä:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Estä" @@ -911,45 +940,45 @@ msgstr "Estä" msgid "Block account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Estä käyttäjä" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Estä käyttäjätili?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Estä käyttäjätilit" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Estä lista" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Estetäänkö nämä käyttäjät?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Estetty" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Estetyt käyttäjät" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Estetyt käyttäjät" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai muuten olla vuorovaikutuksessa kanssasi." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai muuten olla vuorovaikutuksessa kanssasi. Et näe heidän sisältöään ja he eivät näe sinun sisältöäsi." @@ -961,26 +990,30 @@ msgstr "Estetty viesti." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Estäminen ei estä tätä merkitsijää asettamasta merkintöjä tilillesi." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Estäminen on julkista. Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai muuten olla vuorovaikutuksessa kanssasi." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Estäminen ei estä merkintöjen tekemistä tilillesi, mutta se estää kyseistä tiliä vastaamasta ketjuissasi tai muuten vuorovaikuttamasta kanssasi." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blogi" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky on avoin verkko, jossa voit valita palveluntarjoajasi. Räätälöity palveluntarjoajan määritys on nyt saatavilla betavaiheen kehittäjille." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky on avoin verkko, jossa voit valita palveluntarjoajasi. Räätälöity palveluntarjoajan määritys on nyt saatavilla betavaiheen kehittäjille." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -1002,14 +1035,14 @@ msgstr "" #~ msgstr "Bluesky on julkinen." #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky ei näytä profiiliasi ja viestejäsi kirjautumattomille käyttäjille. Toiset sovellukset eivät ehkä noudata tätä asetusta. Tämä ei tee käyttäjätilistäsi yksityistä." @@ -1022,13 +1055,13 @@ msgid "Blur images and filter from feeds" msgstr "Sumenna kuvat ja suodata syötteistä" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Kirjat" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1055,7 +1088,7 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Yritys" @@ -1067,7 +1100,7 @@ msgstr "käyttäjä —" #~ msgid "by {0}" #~ msgstr "käyttäjältä {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "" @@ -1080,14 +1113,26 @@ msgid "by <0/>" msgstr "käyttäjältä <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Luomalla käyttäjätilin hyväksyt {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Luomalla käyttäjätilin hyväksyt {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "sinulta" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Kamera" @@ -1096,33 +1141,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja alaviivoja. Täytyy olla vähintään 4 merkkiä pitkä, mutta enintään 32 merkkiä pitkä." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Peruuta" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1134,19 +1178,19 @@ msgstr "Peruuta" msgid "Cancel account deletion" msgstr "Peruuta käyttäjätilin poisto" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Peruuta käyttäjätunnuksen vaihto" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Peruuta kuvan rajaus" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Peruuta profiilin muokkaus" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Peruuta profiilin muokkaus" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Peruuta uudelleenpostaus" @@ -1155,6 +1199,7 @@ msgid "Cancel reactivation and log out" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Peruuta haku" @@ -1162,14 +1207,14 @@ msgstr "Peruuta haku" msgid "Cancels opening the linked website" msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1178,24 +1223,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Vaihda käyttäjätunnus" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Vaihda käyttäjätunnus" @@ -1203,12 +1252,12 @@ msgstr "Vaihda käyttäjätunnus" msgid "Change my email" msgstr "Vaihda sähköpostiosoitteeni" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Vaihda salasana" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Vaihda salasana" @@ -1220,9 +1269,10 @@ msgstr "Vaihda julkaisun kieleksi {0}" msgid "Change Your Email" msgstr "Vaihda sähköpostiosoitteesi" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "" @@ -1232,14 +1282,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "" @@ -1264,7 +1314,7 @@ msgstr "Tarkista tilani" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Tutustu suositeltuihin käyttäjiin. Seuraa heitä löytääksesi samankaltaisia käyttäjiä." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Tarkista sähköpostistasi kirjautumiskoodi ja syötä se tähän." @@ -1284,23 +1334,27 @@ msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:" #~ msgid "Choose at least {0} more" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Valitse palvelu" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Valitse algoritmit, jotka ohjaavat mukautettuja syötteitäsi." @@ -1322,7 +1376,7 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Valitse pääsyötteet" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Valitse salasanasi" @@ -1334,16 +1388,15 @@ msgstr "Valitse salasanasi" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Tyhjennä kaikki vanhan tietomallin tiedot (käynnistä uudelleen tämän jälkeen)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Tyhjennä kaikki tallennukset" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Tyhjennä kaikki tallennukset (käynnistä uudelleen tämän jälkeen)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Tyhjennä hakukysely" @@ -1351,11 +1404,11 @@ msgstr "Tyhjennä hakukysely" #~ msgid "Clears all legacy storage data" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Tyhjentää kaikki tallennustiedot" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klikkaa tästä" @@ -1375,15 +1428,15 @@ msgstr "" msgid "Click here to open tag menu for {tag}" msgstr "Avaa tästä valikko aihetunnisteelle {tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "" @@ -1395,27 +1448,25 @@ msgstr "Ilmasto" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Sulje" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Sulje aktiivinen ikkuna" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Sulje hälytys" @@ -1423,12 +1474,11 @@ msgstr "Sulje hälytys" msgid "Close bottom drawer" msgstr "Sulje alavalinnat" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Sulje valintaikkuna." -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Sulje GIF-valintaikkuna." @@ -1441,29 +1491,29 @@ msgid "Close image viewer" msgstr "Sulje kuvankatselu" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Sulje alanavigointi" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Sulje tämä valintaikkuna" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Sulkee alanavigaation" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Sulkee salasanan päivitysilmoituksen" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Sulkee editorin ja hylkää luonnoksen" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Sulkee editorin ja hylkää luonnoksen" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1473,41 +1523,49 @@ msgstr "Sulkee kuvan katseluohjelman" msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Pienentää käyttäjäluettelon annetulle ilmoitukselle" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Komedia" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Sarjakuvat" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Yhteisöohjeet" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Suorita käyttöönotto loppuun ja aloita käyttäjätilisi käyttö" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Tee haaste loppuun" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Laadi viestejä, joiden pituus on enintään {MAX_GRAPHEME_LENGTH} merkkiä" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Kirjoita vastaus" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1520,17 +1578,19 @@ msgstr "Kirjoita vastaus" msgid "Configure content filtering setting for category: {name}" msgstr "Määritä sisällönsuodatusasetukset kategorialle: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Vahvista" @@ -1547,30 +1607,35 @@ msgstr "Vahvista sisällön kieliasetukset" msgid "Confirm delete account" msgstr "Vahvista käyttäjätilin poisto" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Vahvista ikäsi:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Vahvista syntymäaikasi" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Vahvistuskoodi" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Yhdistetään..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Ota yhteyttä tukeen" @@ -1582,12 +1647,12 @@ msgstr "Ota yhteyttä tukeen" msgid "Content Blocked" msgstr "Sisältö estetty" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Sisältösuodattimet" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Sisältöjen kielet" @@ -1597,13 +1662,13 @@ msgid "Content Not Available" msgstr "Sisältö ei ole saatavilla" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Sisältövaroitus" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Sisältövaroitukset" @@ -1611,12 +1676,12 @@ msgstr "Sisältövaroitukset" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Jatka" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Jatka käyttäjänä {0} (kirjautunut)" @@ -1624,9 +1689,9 @@ msgstr "Jatka käyttäjänä {0} (kirjautunut)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Jatka seuraavaan vaiheeseen" @@ -1638,7 +1703,7 @@ msgstr "Jatka seuraavaan vaiheeseen" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Jatka seuraavaan vaiheeseen seuraamatta yhtään tiliä" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "" @@ -1651,20 +1716,21 @@ msgstr "Ruoanlaitto" msgid "Copied" msgstr "Kopioitu" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Kopioitu leikepöydälle" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Kopioitu!" @@ -1672,17 +1738,17 @@ msgstr "Kopioitu!" msgid "Copies app password" msgstr "Kopioi sovellussalasanan" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopioi" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Kopioi {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Kopioi koodi" @@ -1694,12 +1760,12 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Kopioi listan linkki" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -1708,17 +1774,17 @@ msgstr "Kopioi julkaisun linkki" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Kopioi viestin teksti" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" @@ -1730,11 +1796,11 @@ msgstr "Tekijänoikeuskäytäntö" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Syötettä ei voitu ladata" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Listaa ei voitu ladata" @@ -1754,34 +1820,39 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Luo uusi käyttäjätili" +#~ msgid "Create a new account" +#~ msgstr "Luo uusi käyttäjätili" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Luo uusi Bluesky-tili" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Luo käyttäjätili" @@ -1790,11 +1861,11 @@ msgstr "Luo käyttäjätili" msgid "Create an account" msgstr "Luo käyttäjätili" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "" @@ -1803,7 +1874,7 @@ msgid "Create App Password" msgstr "Luo sovellussalasana" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Luo uusi käyttäjätili" @@ -1815,51 +1886,47 @@ msgstr "Luo uusi käyttäjätili" msgid "Create report for {0}" msgstr "Luo raportti: {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} luotu" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Kulttuuri" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Mukautettu" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Mukautettu verkkotunnus" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Yhteisön rakentamat mukautetut syötteet tuovat sinulle uusia kokemuksia ja auttavat löytämään mieluisaa sisältöä." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Muokkaa ulkoisten sivustojen mediasisältöjen asetuksia" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Tumma" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Tumma ulkoasu" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" @@ -1867,38 +1934,43 @@ msgstr "" #~ msgid "Dark Theme" #~ msgstr "Tumma teema" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Syntymäaika" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Vianetsintäpaneeli" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Poista" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Poista käyttäjätili" @@ -1910,16 +1982,16 @@ msgstr "Poista käyttäjätili" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Poista sovellussalasana" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Poista sovellussalasana" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -1927,7 +1999,7 @@ msgstr "" msgid "Delete for me" msgstr "" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Poista lista" @@ -1943,33 +2015,33 @@ msgstr "" msgid "Delete my account" msgstr "Poista käyttäjätilini" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Poista käyttäjätilini…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Poista viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Poista tämä lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Poista tämä viesti?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Poistettu" @@ -1977,27 +2049,35 @@ msgstr "Poistettu" msgid "Deleted post." msgstr "Poistettu viesti." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Kuvaus" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -2005,58 +2085,62 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Haluatko sanoa jotain?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Himmeä" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "Älä käynnistä giffejä automaattisesti" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytöstä" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Poista haptiset palautteet käytöstä" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Poistettu käytöstä" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Hylkää" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Hylkää luonnos?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Estä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille" @@ -2073,15 +2157,15 @@ msgstr "Löydä uusia mukautettuja syötteitä" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Löydä uusia syötteitä" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -2089,19 +2173,29 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Näyttönimi" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Näyttönimi" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Näyttönimi" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNS-paneeli" @@ -2109,6 +2203,14 @@ msgstr "DNS-paneeli" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Ei sisällä alastomuutta." @@ -2117,38 +2219,37 @@ msgstr "Ei sisällä alastomuutta." msgid "Doesn't begin or end with a hyphen" msgstr "Ei ala eikä lopu väliviivaan" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Verkkotunnus vahvistettu!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Valmis" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Valmis" @@ -2157,20 +2258,24 @@ msgstr "Valmis" msgid "Done{extraText}" msgstr "Valmis{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Lataa CAR tiedosto" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Raahaa tähän lisätäksesi kuvia" @@ -2182,39 +2287,43 @@ msgstr "Raahaa tähän lisätäksesi kuvia" msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "esim. maija" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "esim. Maija Mallikas" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "esim. Maija Mallikas" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "esim. liisa.fi" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "esim. Taiteilija, koiraharrastaja ja innokas lukija." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "esim. Taiteilija, koiraharrastaja ja innokas lukija." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Esimerkiksi taiteelliset alastonkuvat." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "esim. Loistavat kirjoittajat" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "esim. Roskapostittajat" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "esim. Julkaisijat, jotka osuvat maaliin aina." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." @@ -2222,58 +2331,59 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jokainen koodi toimii vain kerran. Saat lisää kutsukoodeja säännöllisin väliajoin." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Muokkaa" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Muokkaa profiilikuvaa" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Muokkaa kuvaa" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Muokkaa listan tietoja" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Muokkaa moderaatiolistaa" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Muokkaa syötteitä" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Muokkaa profiilia" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Muokkaa profiilia" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "" @@ -2282,13 +2392,15 @@ msgstr "" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Muokkaa profiilia" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Muokkaa profiilia" @@ -2297,11 +2409,11 @@ msgstr "Muokkaa profiilia" #~ msgid "Edit Saved Feeds" #~ msgstr "Muokkaa tallennettuja syötteitä" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Muokkaa käyttäjälistaa" @@ -2309,20 +2421,20 @@ msgstr "Muokkaa käyttäjälistaa" msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Muokkaa näyttönimeäsi" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Muokkaa näyttönimeäsi" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Muokkaa profiilin kuvausta" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Muokkaa profiilin kuvausta" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Koulutus" @@ -2330,7 +2442,7 @@ msgstr "Koulutus" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Sähköposti" @@ -2339,11 +2451,11 @@ msgstr "Sähköposti" msgid "Email 2FA disabled" msgstr "Sähköpostiin perustuva kaksivaiheinen tunnistautuminen poistettu käytöstä" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Sähköpostiosoite" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2360,21 +2472,21 @@ msgstr "Sähköpostiosoite päivitetty" msgid "Email verified" msgstr "Sähköpostiosoite vahvistettu" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Sähköpostiosoite:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Upota viesti" @@ -2382,11 +2494,11 @@ msgstr "Upota viesti" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpätkä ja liitä se verkkosivustosi HTML-koodiin." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Ota käyttöön vain {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Ota aikuissisältö käyttöön" @@ -2399,21 +2511,21 @@ msgstr "Ota aikuissisältö käyttöön" #~ msgid "Enable adult content in your feeds" #~ msgstr "Näytä aikuissisältöä syötteissäsi" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Ota käyttöön ulkoinen media" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Ota mediatoistimet käyttöön kohteille" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" @@ -2421,17 +2533,17 @@ msgstr "" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Ota tämä asetus käyttöön nähdäksesi vastaukset vain seuraamiltasi ihmisiltä." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Ota käyttöön vain tämä lähde" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Käytössä" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Syötteen loppu" @@ -2443,7 +2555,7 @@ msgstr "Syötteen loppu" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2451,7 +2563,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "Anna sovellusalasanalle nimi" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Anna salasana" @@ -2460,6 +2572,10 @@ msgstr "Anna salasana" msgid "Enter a word or tag" msgstr "Kirjoita sana tai aihetunniste" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Syötä vahvistuskoodi" @@ -2468,20 +2584,20 @@ msgstr "Syötä vahvistuskoodi" msgid "Enter the code you received to change your password." msgstr "Anna saamasi koodi vaihtaaksesi salasanasi." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Anna verkkotunnus, jota haluat käyttää" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Anna sähköpostiosoite, jota käytit tilin luomiseen. Lähetämme sinulle \"nollauskoodin\", jotta voit määritellä uuden salasanan." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Syötä syntymäaikasi" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Syötä sähköpostiosoitteesi" @@ -2493,10 +2609,14 @@ msgstr "Syötä uusi sähköpostiosoitteesi yläpuolelle" msgid "Enter your new email address below." msgstr "Syötä uusi sähköpostiosoitteesi alle" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Syötä käyttäjätunnuksesi ja salasanasi" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "" @@ -2505,12 +2625,12 @@ msgstr "" msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Virhe:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Kaikki" @@ -2522,10 +2642,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "" @@ -2545,7 +2663,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2553,11 +2671,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "Keskeyttää tilin poistoprosessin" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Peruuttaa käyttäjätunnuksen vaihtamisen" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Keskeyttää kuvan rajausprosessin" @@ -2577,12 +2695,16 @@ msgstr "Laajenna ALT-teksti" msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennä viesti johon olit vastaamassa" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2602,32 +2724,32 @@ msgstr "Selvästi tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Selvästi seksuaalista kuvamateriaalia." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Vie tietoni" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Vie tietoni" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Ulkoiset mediat" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ulkoiset mediat voivat sallia verkkosivustojen kerätä tietoja sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ennen kuin painat \"toista\"-painiketta." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Ulkoisten mediasoittimien asetukset" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Ulkoisten mediasoittimien asetukset" @@ -2636,12 +2758,12 @@ msgstr "Ulkoisten mediasoittimien asetukset" msgid "Failed to create app password." msgstr "Sovellussalasanan luominen epäonnistui." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Listan luominen epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen." @@ -2649,11 +2771,11 @@ msgstr "Listan luominen epäonnistui. Tarkista internetyhteytesi ja yritä uudel msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Viestin poistaminen epäonnistui, yritä uudelleen" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "" @@ -2662,12 +2784,11 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "GIF-animaatioiden lataaminen epäonnistui" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "" @@ -2689,7 +2810,11 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Kuvan {0} tallennus epäonnistui" @@ -2697,7 +2822,7 @@ msgstr "Kuvan {0} tallennus epäonnistui" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "" @@ -2705,36 +2830,35 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Syöte" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Syöte käyttäjältä {0}" @@ -2748,19 +2872,23 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Palaute" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Syötteet" @@ -2768,7 +2896,7 @@ msgstr "Syötteet" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "Käyttäjät luovat syötteitä sisällön kuratointiin. Valitse joitakin syötteitä, jotka koet mielenkiintoisiksi." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka vaativat vain vähän koodaustaitoja. <0/> lisätietoa varten." @@ -2776,11 +2904,12 @@ msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka v #~ msgid "Feeds can be topical as well!" #~ msgstr "Syötteet voivat olla myös aihepiirikohtaisia!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Tiedoston sisältö" @@ -2792,7 +2921,7 @@ msgstr "" msgid "Filter from feeds" msgstr "Suodata syötteistä" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Viimeistely" @@ -2806,7 +2935,7 @@ msgstr "Etsi seurattavia tilejä" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Etsi viestejä ja käyttäjiä Blueskysta" @@ -2814,15 +2943,15 @@ msgstr "Etsi viestejä ja käyttäjiä Blueskysta" #~ msgid "Finding similar accounts..." #~ msgstr "Etsitään samankaltaisia käyttäjätilejä" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Hienosäädä näkemääsi sisältöä Seuratut-syötteessäsi." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Hienosäädä keskusteluketjuja." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "" @@ -2834,25 +2963,25 @@ msgstr "" msgid "Fitness" msgstr "Kuntoilu" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Joustava" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Käännä vaakasuunnassa" +#~ msgid "Flip horizontal" +#~ msgstr "Käännä vaakasuunnassa" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Käännä pystysuunnassa" +#~ msgid "Flip vertically" +#~ msgstr "Käännä pystysuunnassa" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Seuraa" @@ -2861,12 +2990,12 @@ msgctxt "action" msgid "Follow" msgstr "Seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Seuraa {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "" @@ -2874,13 +3003,13 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Seuraa käyttäjää" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "" @@ -2888,16 +3017,16 @@ msgstr "" #~ msgid "Follow All" #~ msgstr "Seuraa kaikkia" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Seuraa takaisin" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "Seuraa takaisin" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2934,7 +3063,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Seuratut käyttäjät" @@ -2950,49 +3079,49 @@ msgstr "seurasi sinua" msgid "followed you back" msgstr "" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Seuraajat" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Seurataan" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Seurataan {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Seuratut -syötteen asetukset" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Seuratut -syötteen asetukset" @@ -3000,16 +3129,26 @@ msgstr "Seuratut -syötteen asetukset" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Seuraa sinua" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Seuraa sinua" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Ruoka" @@ -3021,20 +3160,25 @@ msgstr "Turvallisuussyistä meidän on lähetettävä vahvistuskoodi sähköpost msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Turvallisuussyistä et näe tätä uudelleen. Jos unohdat tämän salasanan, sinun on luotava uusi." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Unohtunut salasana" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Unohtuiko salasana?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Unohditko?" @@ -3042,34 +3186,34 @@ msgstr "Unohditko?" msgid "Frequently Posts Unwanted Content" msgstr "Julkaisee usein ei-toivottua sisältöä" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Käyttäjältä @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Lähde: <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galleria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3084,7 +3228,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -3092,14 +3236,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "Ilmeisiä lain tai käyttöehtojen rikkomuksia" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Palaa takaisin" @@ -3107,10 +3250,10 @@ msgstr "Palaa takaisin" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Palaa takaisin" @@ -3118,24 +3261,24 @@ msgstr "Palaa takaisin" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Palaa edelliseen vaiheeseen" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Palaa alkuun" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Palaa alkuun" @@ -3144,11 +3287,11 @@ msgstr "Palaa alkuun" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Siirry @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Siirry seuraavaan" @@ -3166,6 +3309,8 @@ msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "" @@ -3173,11 +3318,11 @@ msgstr "" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Käyttäjätunnus" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Haptiikka" @@ -3185,24 +3330,24 @@ msgstr "Haptiikka" msgid "Harassment, trolling, or intolerance" msgstr "Häirintä, trollaus tai suvaitsemattomuus" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Aihetunniste" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Aihetunniste #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Ongelmia?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Ohje" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -3222,22 +3367,22 @@ msgstr "" msgid "Here is your app password." msgstr "Tässä on sovelluksesi salasana." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Piilota" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Piilota" @@ -3247,36 +3392,36 @@ msgstr "Piilota" #~ msgid "Hide post" #~ msgstr "Piilota viesti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Piilota sisältö" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Piilota tämä viesti?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Piilota käyttäjäluettelo" @@ -3300,7 +3445,7 @@ msgstr "Hmm, syötteen palvelin antoi virheellisen vastauksen. Ilmoita asiasta s msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, meillä on vaikeuksia löytää tätä syötettä. Se saattaa olla poistettu." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, vaikuttaa siltä, että tämän datan lataamisessa on ongelmia. Katso lisätietoja alta. Jos ongelma jatkuu, ole hyvä ja ota yhteyttä meihin." @@ -3308,45 +3453,49 @@ msgstr "Hmm, vaikuttaa siltä, että tämän datan lataamisessa on ongelmia. Kat msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, emme pystyneet avaamaan kyseistä moderaatiopalvelua." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Koti" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Hostingyritys" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Kuinka haluat avata tämän linkin?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Minulla on koodi" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Minulla on vahvistuskoodi" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Minulla on oma verkkotunnus" @@ -3360,18 +3509,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Jos ALT-teksti on pitkä, vaihtaa ALT-tekstin laajennetun tilan" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Jos mitään ei ole valittu, sopii kaikenikäisille." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Jos mitään ei ole valittu, sopii kaikenikäisille." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Jos et ole vielä täysi-ikäinen, huoltajasi tai laillisen edustajasi on luettava nämä ehdot puolestasi." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Jos poistat tämän listan, et voi palauttaa sitä." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä." @@ -3387,16 +3536,15 @@ msgstr "" msgid "Illegal and Urgent" msgstr "Laiton ja kiireellinen" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Kuva" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Kuvan ALT-teksti" +#~ msgid "Image alt text" +#~ msgstr "Kuvan ALT-teksti" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3412,7 +3560,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Syötä sähköpostiisi lähetetty koodi salasanan nollaamista varten" @@ -3424,7 +3572,7 @@ msgstr "Syötä vahvistuskoodi käyttäjätilin poistoa varten" msgid "Input name for app password" msgstr "Syötä nimi sovellussalasanaa varten" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Syötä uusi salasana" @@ -3432,7 +3580,7 @@ msgstr "Syötä uusi salasana" msgid "Input password for account deletion" msgstr "Syötä salasana käyttäjätilin poistoa varten" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Syötä sinulle sähköpostitse lähetetty koodi" @@ -3440,15 +3588,15 @@ msgstr "Syötä sinulle sähköpostitse lähetetty koodi" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Syötä salasana, joka liittyy kohteeseen {identifier}" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Syötä käyttäjätunnus tai sähköpostiosoite, jonka käytit rekisteröityessäsi" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Syötä salasanasi" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Syötä haluamasi palveluntarjoaja" @@ -3456,15 +3604,19 @@ msgstr "Syötä haluamasi palveluntarjoaja" msgid "Input your user handle" msgstr "Syötä käyttäjätunnuksesi" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." @@ -3473,12 +3625,12 @@ msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." msgid "Invalid or unsupported post record" msgstr "Virheellinen tai ei tuettu tietue" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Virheellinen käyttäjätunnus tai salasana" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3486,7 +3638,7 @@ msgstr "" msgid "Invite a Friend" msgstr "Kutsu ystävä" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Kutsukoodi" @@ -3514,39 +3666,48 @@ msgstr "" msgid "Invites, but personal" msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Se näyttää viestejä seuraamiltasi ihmisiltä reaaliajassa." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Työpaikat" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Journalismi" @@ -3554,18 +3715,23 @@ msgstr "Journalismi" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Merkinnnyt {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Merkinnät" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -3586,48 +3752,58 @@ msgstr "" msgid "Language selection" msgstr "Kielen valinta" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Kielen asetukset" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Kielen asetukset" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Kielet" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Uusimmat" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Lue lisää" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Lue lisää tästä varoituksesta" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Lue lisää siitä, mikä on julkista Blueskyssa." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Lue lisää." @@ -3648,7 +3824,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Jätä kaikki valitsematta nähdäksesi minkä tahansa kielen." @@ -3664,21 +3840,20 @@ msgstr "jäljellä." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Aloitetaan salasanasi nollaus!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Aloitetaan!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Vaalea" @@ -3695,21 +3870,21 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Tykänneet" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Tykänneet" @@ -3735,7 +3910,7 @@ msgstr "tykkäsi mukautetusta syötteestäsi" msgid "liked your post" msgstr "tykkäsi viestistäsi" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Tykkäykset" @@ -3743,24 +3918,24 @@ msgstr "Tykkäykset" msgid "Likes on this post" msgstr "Tykkäykset tässä viestissä" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Lista" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Listan kuvake" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Lista estetty" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Listan on luonut {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Lista poistettu" @@ -3768,32 +3943,31 @@ msgstr "Lista poistettu" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Lista hiljennetty" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Listan nimi" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Listaa estosta poistetut" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Listaa hiljennyksestä poistetut" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listat" @@ -3813,22 +3987,22 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Lataa uusia viestejä" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Ladataan..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Loki" @@ -3844,19 +4018,27 @@ msgstr "" msgid "Log out" msgstr "Kirjaudu ulos" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Näkyvyys kirjautumattomana" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Kirjaudu tiliin, joka ei ole luettelossa" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Pidä alaspainettuna avataksesi tunnistevalikon tunnisteelle #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Näkyy muodossa XXXXX-XXXXX" @@ -3876,7 +4058,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -3893,30 +4075,35 @@ msgstr "Hallinnoi hiljennettyjä sanoja ja aihetunnisteita" msgid "Mark as read" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Media" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "mainitut käyttäjät" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Mainitut käyttäjät" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Valikko" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -3924,23 +4111,23 @@ msgstr "" msgid "Message from server: {0}" msgstr "Viesti palvelimelta: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" @@ -3957,63 +4144,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderointi" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Moderaation yksityiskohdat" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Moderointilista käyttäjältä {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Moderointilista käyttäjältä <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Sinun moderointilistasi" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Moderointilista luotu" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Moderointilista päivitetty" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderointilistat" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Moderointiasetukset" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Moderointityökalut" @@ -4022,7 +4209,7 @@ msgstr "Moderointityökalut" msgid "Moderator has chosen to set a general warning on the content." msgstr "Ylläpitäjä on asettanut yleisen varoituksen sisällölle." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Lisää" @@ -4030,46 +4217,47 @@ msgstr "Lisää" msgid "More feeds" msgstr "Lisää syötteitä" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Lisää asetuksia" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Eniten tykätyt vastaukset ensin" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Hiljennä" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -msgid "Mute" -msgstr "Hiljennä" - #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "Hiljennä {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Hiljennä käyttäjä" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Hiljennä käyttäjät" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Hiljennä kaikki {displayTag} viestit" @@ -4090,7 +4278,7 @@ msgstr "" msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Hiljennä lista" @@ -4099,7 +4287,7 @@ msgstr "Hiljennä lista" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Hiljennä nämä käyttäjät?" @@ -4127,13 +4315,13 @@ msgstr "Hiljennä tämä sana vain aihetunnisteissa" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Hiljennä keskustelu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Hiljennä sanat ja aihetunnisteet" @@ -4141,16 +4329,16 @@ msgstr "Hiljennä sanat ja aihetunnisteet" #~ msgid "Muted" #~ msgstr "Hiljennetty" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Hiljennetyt käyttäjät" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Hiljennetyt käyttäjätilit" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Hiljennettyjen käyttäjien viestit poistetaan syötteestäsi ja ilmoituksistasi. Hiljennykset ovat täysin yksityisiä." @@ -4158,41 +4346,41 @@ msgstr "Hiljennettyjen käyttäjien viestit poistetaan syötteestäsi ja ilmoitu msgid "Muted by \"{0}\"" msgstr "Hiljentäjä: \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Hiljennetyt sanat ja aihetunnisteet" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Hiljennys on yksityinen. Hiljennetyt käyttäjät voivat edelleen vuorovaikuttaa kanssasi, mutta et näe heidän viestejään tai saa ilmoituksia heiltä." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Syntymäpäiväni" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Omat syötteet" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profiilini" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Tallennetut syötteeni" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Tallennetut syötteeni" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nimi" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Nimi vaaditaan" @@ -4204,28 +4392,32 @@ msgid "Name or Description Violates Community Standards" msgstr "Nimi tai kuvaus rikkoo yhteisön sääntöjä" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Luonto" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Siirtyy seuraavalle näytölle" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Siirtyy profiiliisi" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Tarvitseeko ilmoittaa tekijänoikeusrikkomuksesta?" @@ -4235,34 +4427,38 @@ msgstr "Tarvitseeko ilmoittaa tekijänoikeusrikkomuksesta?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Älä koskaan menetä pääsyä seuraajiisi ja tietoihisi." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Älä koskaan menetä pääsyä seuraajiisi tai tietoihisi." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Uusi" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Uusi" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Uusi moderointilista" @@ -4274,22 +4470,22 @@ msgstr "Uusi salasana" msgid "New Password" msgstr "Uusi salasana" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Uusi viesti" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Uusi viesti" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Uusi viesti" @@ -4298,30 +4494,30 @@ msgstr "Uusi viesti" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Uusi käyttäjälista" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Uutiset" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4336,35 +4532,39 @@ msgstr "Seuraava" msgid "Next image" msgstr "Seuraava kuva" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Ei" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Ei kuvausta" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Ei löydetty esillä olevia GIF-kuvia. Tenor-palvelussa saattaa olla ongelma." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" @@ -4372,11 +4572,11 @@ msgstr "Et enää seuraa käyttäjää {0}" msgid "No longer than 253 characters" msgstr "Ei pidempi kuin 253 merkkiä." -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4384,10 +4584,8 @@ msgstr "" msgid "No notifications yet!" msgstr "Ei vielä ilmoituksia!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4395,16 +4593,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Ei tuloksia" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4412,19 +4618,18 @@ msgstr "" msgid "No results found" msgstr "Tuloksia ei löydetty" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Ei tuloksia haulle {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Ei tuloksia hakusanalle \"{search}\"." @@ -4432,12 +4637,12 @@ msgstr "Ei tuloksia hakusanalle \"{search}\"." #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Ei kiitos" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Ei kukaan" @@ -4445,12 +4650,21 @@ msgstr "Ei kukaan" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielä tykännyt tästä. Ehkä sinun pitäisi olla ensimmäinen!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4462,8 +4676,8 @@ msgstr "Ei-seksuaalinen alastomuus" #~ msgid "Not Applicable." #~ msgstr "Ei sovellettavissa." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Ei löytynyt" @@ -4472,49 +4686,48 @@ msgstr "Ei löytynyt" msgid "Not right now" msgstr "Ei juuri nyt" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa vain sisältösi näkyvyyttä Bluesky-sovelluksessa ja -sivustolla, eikä muut sovellukset ehkä kunnioita tässä asetuksissaan. Sisältösi voi silti näkyä uloskirjautuneille käyttäjille muissa sovelluksissa ja verkkosivustoilla." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Ilmoitukset" @@ -4522,11 +4735,12 @@ msgstr "Ilmoitukset" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Alastomuus" @@ -4542,29 +4756,28 @@ msgstr "" msgid "Off" msgstr "Pois" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Voi ei!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Voi ei! Jokin meni pieleen." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Selvä" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Vanhimmat vastaukset ensin" @@ -4576,11 +4789,11 @@ msgstr "Vanhimmat vastaukset ensin" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" @@ -4588,11 +4801,11 @@ msgstr "Käyttöönoton nollaus" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "" @@ -4608,7 +4821,11 @@ msgstr "Vain {0} voi vastata." msgid "Only contains letters, numbers, and hyphens" msgstr "Sisältää vain kirjaimia, numeroita ja väliviivoja" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4617,42 +4834,46 @@ msgid "Oops, something went wrong!" msgstr "Hups, nyt meni jotain väärin!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Hups!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Avaa" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Avaa emoji-valitsin" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Avaa syötteen asetusvalikko" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Avaa linkit sovelluksen sisäisellä selaimella" @@ -4660,7 +4881,7 @@ msgstr "Avaa linkit sovelluksen sisäisellä selaimella" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset" @@ -4668,20 +4889,20 @@ msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset" msgid "Open navigation" msgstr "Avaa navigointi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Avaa storybook-sivu" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Avaa järjestelmäloki" @@ -4689,15 +4910,19 @@ msgstr "Avaa järjestelmäloki" msgid "Opens {numItems} options" msgstr "Avaa {numItems} asetusta" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Avaa esteettömyysasetukset" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Avaa debug lisätiedot" @@ -4705,41 +4930,41 @@ msgstr "Avaa debug lisätiedot" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Avaa laajennetun listan tämän ilmoituksen käyttäjistä" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Avaa laitteen kameran" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Avaa editorin" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Avaa mukautettavat kielen asetukset" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Avaa laitteen valokuvat" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Avaa ulkoiset upotusasetukset" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Avaa toiminto kirjautumiseksi olemassa olevaan Bluesky-tiliisi." @@ -4751,39 +4976,39 @@ msgstr "Avaa GIF-valinnan valintaikkunan." msgid "Opens list of invite codes" msgstr "Avaa kutsukoodien luettelon" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Avaa asetukset oman verkkotunnuksen käyttöönottoon" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Avaa moderointiasetukset" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Avaa salasanan palautuslomakkeen" @@ -4792,15 +5017,15 @@ msgstr "Avaa salasanan palautuslomakkeen" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Avaa näkymän tallennettujen syötteiden muokkaamiseen" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Avaa näkymän kaikkiin tallennettuihin syötteisiin" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Avaa sovelluksen salasanojen asetukset" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Avaa Seuratut-syötteen asetukset" @@ -4812,25 +5037,25 @@ msgstr "Avaa linkitetyn verkkosivun" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Avaa storybook-sivun" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Avaa järjestelmän lokisivun" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Avaa keskusteluasetukset" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -4838,8 +5063,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Asetus {0}/{numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Voit tarvittaessa antaa lisätietoja alla:" @@ -4847,7 +5072,7 @@ msgstr "Voit tarvittaessa antaa lisätietoja alla:" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Tai yhdistä nämä asetukset:" @@ -4860,14 +5085,15 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Joku toinen" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Toinen tili" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "" @@ -4875,21 +5101,21 @@ msgstr "" msgid "Other..." msgstr "Muu..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Sivua ei löytynyt" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Sivua ei löytynyt" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4899,42 +5125,42 @@ msgstr "Salasana" msgid "Password Changed" msgstr "Salasana vaihdettu" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Salasana päivitetty" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Salasana päivitetty!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Pysäytä" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Henkilöt" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Henkilöt, joita @{0} seuraa" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Henkilöt, jotka seuraavat käyttäjää @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Käyttöoikeus valokuviin tarvitaan." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Lupa valokuviin evättiin. Anna lupa järjestelmäasetuksissa." @@ -4943,42 +5169,51 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Lemmikit" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Kiinnitä etusivulle" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Kiinnitä etusivulle" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Kiinnitetyt syötteet" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Käynnistä" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Toista {0}" @@ -4987,21 +5222,21 @@ msgstr "Toista {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Toista tai pysäytä GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Toista video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Toistaa GIFin" @@ -5010,7 +5245,7 @@ msgid "Please choose your handle." msgstr "Valitse käyttäjätunnuksesi." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Valitse salasanasi." @@ -5035,11 +5270,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Ole hyvä ja syötä oikea sana, aihetunniste tai lause hiljennettäväksi." #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Anna sähköpostiosoitteesi." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -5047,16 +5282,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Anna myös salasanasi:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -5065,20 +5300,21 @@ msgid "Please Verify Your Email" msgstr "Vahvista sähköpostiosoitteesi" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Odota, että linkkikortti latautuu kokonaan" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Odota, että linkkikortti latautuu kokonaan" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politiikka" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Lähetä" @@ -5092,17 +5328,21 @@ msgstr "Viesti" msgid "Post by {0}" msgstr "Lähettäjä {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Lähettäjä @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Viesti poistettu" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Viesti piilotettu" @@ -5117,7 +5357,7 @@ msgstr "Viesti piilotettu hiljennetyn sanan takia" msgid "Post Hidden by You" msgstr "Sinun hiljentämä viesti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -5125,7 +5365,7 @@ msgstr "" msgid "Post language" msgstr "Lähetyskieli" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Lähetyskielet" @@ -5134,12 +5374,20 @@ msgstr "Lähetyskielet" msgid "Post not found" msgstr "Viestiä ei löydy" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "viestit" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Viestit" @@ -5163,7 +5411,7 @@ msgstr "Mahdollisesti harhaanjohtava linkki" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5173,8 +5421,8 @@ msgstr "Klikkaa vaihtaaksesi palveluntarjoajaa" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Paina uudelleen jatkaaksesi" @@ -5191,79 +5439,83 @@ msgstr "" msgid "Previous image" msgstr "Edellinen kuva" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Ensisijainen kieli" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Aseta seurattavat tärkeysjärjestykseen" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Yksityisyys" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Yksityisyydensuojakäytäntö" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Käsitellään..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "profiili" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profiili" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profiili päivitetty" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Suojaa käyttäjätilisi vahvistamalla sähköpostiosoitteesi." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Julkinen" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Julkinen, jaettava käyttäjäluettelo hiljennettyjen tai estettyjen käyttäjien massamäärityksiä varten." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Julkinen, jaettava lista, joka voi ohjata syötteitä." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Julkaise viesti" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Julkaise viesti" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Julkaise vastaus" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Julkaise vastaus" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5281,8 +5533,8 @@ msgstr "" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5298,32 +5550,32 @@ msgstr "Lainaa viestiä" #~ msgid "Quote Post" #~ msgstr "Lainaa viestiä" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5331,16 +5583,16 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Satunnainen (tunnetaan myös nimellä \"Lähettäjän ruletti\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Suhdeluvut" +#~ msgid "Ratios" +#~ msgstr "Suhdeluvut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5348,19 +5600,21 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "" @@ -5368,7 +5622,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Viimeaikaiset haut" @@ -5380,26 +5634,25 @@ msgstr "Viimeaikaiset haut" #~ msgid "Recommended Users" #~ msgstr "Suositellut käyttäjät" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5413,11 +5666,11 @@ msgstr "" msgid "Remove account" msgstr "Poista käyttäjätili" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Poista avatar" @@ -5425,7 +5678,7 @@ msgstr "Poista avatar" msgid "Remove Banner" msgstr "Poista banneri" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5441,13 +5694,14 @@ msgstr "Poista syöte?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Poista syötteistäni" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Poista syötteistäni?" @@ -5460,7 +5714,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Poista kuva" @@ -5472,24 +5726,24 @@ msgstr "Poista kuva" msgid "Remove mute word from your list" msgstr "Poista hiljennetty sana listaltasi" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Poista uudelleenjulkaisu" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5497,16 +5751,16 @@ msgstr "" msgid "Remove this feed from your saved feeds" msgstr "Poista tämä syöte seurannasta" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Poistettu listalta" @@ -5520,8 +5774,8 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Poistettu syötteistäsi" @@ -5529,13 +5783,13 @@ msgstr "Poistettu syötteistäsi" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Poistaa {0} oletuskuvakkeen" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5546,7 +5800,7 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Vastaukset" @@ -5566,7 +5820,7 @@ msgstr "" #~ msgid "Replies to this thread are disabled" #~ msgstr "Tähän keskusteluun vastaaminen on estetty" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Vastaa" @@ -5585,41 +5839,41 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Vastaa käyttäjälle <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -5634,8 +5888,8 @@ msgstr "" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Ilmianna käyttäjätili" @@ -5645,16 +5899,16 @@ msgstr "Ilmianna käyttäjätili" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Ilmianna syöte" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Ilmianna luettelo" @@ -5662,13 +5916,13 @@ msgstr "Ilmianna luettelo" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Ilmianna viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -5684,8 +5938,8 @@ msgstr "Ilmianna tämä syöte" msgid "Report this list" msgstr "Ilmianna tämä lista" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -5702,9 +5956,9 @@ msgstr "" msgid "Report this user" msgstr "Ilmianna tämä käyttäjä" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Uudelleenjulkaise" @@ -5714,28 +5968,28 @@ msgstr "Uudelleenjulkaise" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Uudelleenjulkaise tai lainaa viestiä" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Uudelleenjulkaissut" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "{0} uudelleenjulkaisi" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Uudelleenjulkaissut <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -5757,7 +6011,7 @@ msgstr "Pyydä muutosta" msgid "Request Code" msgstr "Pyydä koodia" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Edellytä ALT-tekstiä ennen viestin julkaisua" @@ -5765,20 +6019,26 @@ msgstr "Edellytä ALT-tekstiä ennen viestin julkaisua" msgid "Require email code to log into your account" msgstr "Edellytä sähköpostikoodia kirjautumisessa" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Vaaditaan tälle instanssille" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Lähetä sähköposti uudelleen" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -5790,29 +6050,29 @@ msgstr "Nollauskoodi" msgid "Reset Code" msgstr "Nollauskoodi" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Nollaa käyttöönoton tila" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Nollaa salasana" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Nollaa asetusten tila" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Nollaa käyttöönoton tilan" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Nollaa asetusten tilan" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Yrittää uudelleen kirjautumista" @@ -5821,16 +6081,16 @@ msgstr "Yrittää uudelleen kirjautumista" msgid "Retries the last action, which errored out" msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5844,51 +6104,62 @@ msgstr "Yritä uudelleen" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Palaa edelliselle sivulle" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Palaa etusivulle" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Tallenna" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Tallenna" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Tallenna vaihtoehtoinen ALT-teksti" +#~ msgid "Save alt text" +#~ msgstr "Tallenna vaihtoehtoinen ALT-teksti" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Tallenna syntymäpäivä" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Tallenna muutokset" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Tallenna muutokset" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Tallenna käyttäjätunnuksen muutos" @@ -5897,24 +6168,24 @@ msgstr "Tallenna käyttäjätunnuksen muutos" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Tallenna kuvan rajaus" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Tallenna syötteisiini" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Tallennetut syötteet" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" @@ -5922,71 +6193,68 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "Tallennettu kuvagalleriaasi." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Tallennettu syötteisiisi" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Tallentaa kaikki muutokset profiiliisi" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Tallentaa kaikki muutokset profiiliisi" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Tallentaa käyttäjätunnuksen muutoksen muotoon {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Tallentaa kuvan rajausasetukset" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Tiede" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Vieritä alkuun" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Haku" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Haku hakusanalla \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Hae kaikki @{authorHandle}:n julkaisut, joissa on aihetunniste {displayTag}." +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Hae kaikki @{authorHandle}:n julkaisut, joissa on aihetunniste {displayTag}." -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Etsi kaikki viestit aihetunnisteella {displayTag}." +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Etsi kaikki viestit aihetunnisteella {displayTag}." -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5998,18 +6266,16 @@ msgstr "" msgid "Search for users" msgstr "Hae käyttäjiä" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Hae GIF-animaatioita" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Hae Tenorista" @@ -6025,15 +6291,15 @@ msgstr "Näytä {truncatedTag}-viestit" msgid "See {truncatedTag} posts by user" msgstr "Näytä käyttäjän {truncatedTag} viestit" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Näytä <0>{displayTag} viestit" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Näytä tämän käyttäjän <0>{displayTag} viestit" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" @@ -6042,11 +6308,11 @@ msgstr "" #~ msgid "See profile" #~ msgstr "Katso profiilia" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Katso tämä opas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6058,7 +6324,7 @@ msgstr "Valitse {item}" msgid "Select a color" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Valitse käyttäjätili" @@ -6070,7 +6336,7 @@ msgstr "" msgid "Select an emoji" msgstr "" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Valitse olemassa olevalta tililtä" @@ -6078,7 +6344,7 @@ msgstr "Valitse olemassa olevalta tililtä" msgid "Select GIF" msgstr "Valitse GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Valitse GIF \"{0}\"" @@ -6086,15 +6352,15 @@ msgstr "Valitse GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Valitse kielet" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Valitse moderaattori" @@ -6106,7 +6372,7 @@ msgstr "Valitse vaihtoehto {i} / {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "Valitse alla olevista tileistä jotain seurattavaksi" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6114,11 +6380,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Valitse palvelu, joka hostaa tietojasi." @@ -6126,7 +6392,7 @@ msgstr "Valitse palvelu, joka hostaa tietojasi." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Valitse ajankohtaisia syötteitä alla olevasta listasta" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6138,23 +6404,23 @@ msgstr "" #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Valitse, mitä haluat nähdä (tai olla näkemättä) ja me huolehdimme lopusta." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Valitse, mitä kieliä haluat tilattujen syötteidesi sisältävän. Jos mitään ei ole valittu, kaikki kielet näytetään." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Valitse sovelluksen käyttöliittymän kieli." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Aseta syntymäaikasi" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Valitse käännösten kieli syötteessäsi." @@ -6170,6 +6436,14 @@ msgstr "Valitse käännösten kieli syötteessäsi." msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6184,37 +6458,37 @@ msgctxt "action" msgid "Send Email" msgstr "Lähetä sähköposti" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Lähetä palautetta" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Lähetä raportti" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Lähetä vahvistussähköposti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6222,35 +6496,35 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "Lähettää sähköpostin tilin poistamiseen tarvittavan vahvistuskoodin" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Palvelimen osoite" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Aseta syntymäaika" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Aseta uusi salasana" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki lainaukset syötteestäsi. Uudelleenjulkaisut näkyvät silti." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki vastaukset syötteestäsi." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki uudelleenjulkaisut syötteestäsi." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Aseta tämä asetus \"Kyllä\" tilaan näyttääksesi vastaukset ketjumaisessa näkymässä. Tämä on kokeellinen ominaisuus." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Aseta tämä asetus \"Kyllä\"-tilaan nähdäksesi esimerkkejä tallennetuista syötteistäsi seuraamissasi syötteessäsi. Tämä on kokeellinen ominaisuus." @@ -6258,7 +6532,7 @@ msgstr "Aseta tämä asetus \"Kyllä\"-tilaan nähdäksesi esimerkkejä tallenne msgid "Set up your account" msgstr "Luo käyttäjätili" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Asettaa Bluesky-käyttäjätunnuksen" @@ -6282,31 +6556,30 @@ msgstr "Asettaa Bluesky-käyttäjätunnuksen" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "Asettaa tumman teeman himmeäksi teemaksi" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Asettaa sähköpostin salasanan palautusta varten" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Asettaa kuvan kuvasuhteen neliöksi" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Asettaa kuvan kuvasuhteen neliöksi" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Asettaa kuvan kuvasuhteen korkeaksi" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Asettaa kuvan kuvasuhteen korkeaksi" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Asettaa kuvan kuvasuhteen leveäksi" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Asettaa kuvan kuvasuhteen leveäksi" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Asetukset" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Erotiikka tai muu aikuisviihde." @@ -6314,20 +6587,19 @@ msgstr "Erotiikka tai muu aikuisviihde." msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Jaa" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Jaa" @@ -6340,28 +6612,28 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Jaa syöte" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6379,7 +6651,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6391,7 +6663,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6399,23 +6671,27 @@ msgstr "" msgid "Shares the linked website" msgstr "Jakaa linkitetyn verkkosivun" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Näytä" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "Näytä kaikki vastaukset" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Näytä silti" @@ -6437,8 +6713,8 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -6446,14 +6722,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Näytä lisää" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -6461,11 +6737,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Näytä viestit omista syötteistäni" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Näytä lainatut viestit" @@ -6481,11 +6757,11 @@ msgstr "Näytä lainatut viestit" #~ msgid "Show re-posts in Following feed" #~ msgstr "Näytä uudelleenjulkaistut viestit seurattavissa" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Näytä vastaukset" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Näytä seurattujen henkilöiden vastaukset ennen muita vastauksia." @@ -6501,12 +6777,12 @@ msgstr "Näytä seurattujen henkilöiden vastaukset ennen muita vastauksia." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Näytä vastaukset, joissa on vähintään {value} {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Näytä uudelleenjulkaisut" @@ -6514,7 +6790,7 @@ msgstr "Näytä uudelleenjulkaisut" #~ msgid "Show reposts in Following" #~ msgstr "Näytä uudelleenjulkaisut seurattavissa" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Näytä sisältö" @@ -6532,35 +6808,34 @@ msgid "Show warning and filter from feeds" msgstr "Näytä varoitus ja suodata syötteistä" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Näyttää viestit käyttäjältä {0} syötteessäsi" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Näyttää viestit käyttäjältä {0} syötteessäsi" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Kirjaudu sisään" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Kirjaudu sisään nimellä {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Kirjaudu sisään nimellä..." @@ -6572,42 +6847,41 @@ msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!" msgid "Sign into Bluesky or create a new account" msgstr "Kirjaudu Blueskyhin tai luo uusi käyttäjätili" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Kirjaudu ulos" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Rekisteröidy" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Rekisteröidy tai kirjaudu sisään liittyäksesi keskusteluun" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Rekisteröidy tai kirjaudu sisään liittyäksesi keskusteluun" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Sisäänkirjautuminen vaaditaan" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Kirjautunut sisään nimellä" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}" @@ -6615,8 +6889,8 @@ msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -6624,17 +6898,22 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Ohita" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Ohita tämä vaihe" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Ohjelmistokehitys" @@ -6650,7 +6929,7 @@ msgstr "" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -6659,41 +6938,41 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Jotain meni pieleen, yritä uudelleen" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Lajittele vastaukset" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Lajittele saman viestin vastaukset seuraavasti:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Lähde:" +msgid "Source:" +msgstr "Lähde:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6705,49 +6984,53 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Urheilu" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Neliö" +#~ msgid "Square" +#~ msgstr "Neliö" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -6755,7 +7038,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Tilasivu" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" @@ -6763,27 +7046,27 @@ msgstr "" #~ msgid "Step" #~ msgstr "Askel" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Tallennustila tyhjennetty, sinun on käynnistettävä sovellus uudelleen." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Lähetä" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Tilaa" @@ -6791,7 +7074,7 @@ msgstr "Tilaa" msgid "Subscribe to @{0} to use these labels:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "" @@ -6800,14 +7083,18 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Tilaa {0}-syöte" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Tilaa tämä lista" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" @@ -6820,18 +7107,19 @@ msgstr "" msgid "Suggested for you" msgstr "Suositeltua sinulle" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Viittaava" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Tuki" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Vaihda käyttäjätiliä" @@ -6839,20 +7127,21 @@ msgstr "Vaihda käyttäjätiliä" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Vaihda käyttäjään {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Vaihtaa sisäänkirjautuneen käyttäjän tilin" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Järjestelmä" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Järjestelmäloki" @@ -6860,7 +7149,7 @@ msgstr "Järjestelmäloki" #~ msgid "tag" #~ msgstr "aihetunniste" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Aihetunnistevalikko: {displayTag}" @@ -6869,22 +7158,22 @@ msgid "Tags only" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Pitkä" +#~ msgid "Tall" +#~ msgstr "Pitkä" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -6906,7 +7195,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Teknologia" @@ -6914,23 +7203,27 @@ msgstr "Teknologia" msgid "Tell a joke!" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Ehdot" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Käyttöehdot" @@ -6949,25 +7242,33 @@ msgstr "" msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Tekstikenttä" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Kiitos. Raporttisi on lähetetty." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Se sisältää seuraavaa:" @@ -6975,21 +7276,21 @@ msgstr "Se sisältää seuraavaa:" msgid "That handle is already taken." msgstr "Tuo käyttätunnus on jo käytössä." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Käyttäjä voi olla vuorovaikutuksessa kanssasi, kun poistat eston." @@ -7002,15 +7303,15 @@ msgstr "Käyttäjä voi olla vuorovaikutuksessa kanssasi, kun poistat eston." msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Yhteisöohjeet on siirretty kohtaan <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>" @@ -7023,7 +7324,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7048,30 +7349,35 @@ msgstr "Seuraavat vaiheet auttavat mukauttamaan Bluesky-kokemustasi." msgid "The post may have been deleted." msgstr "Viesti saattaa olla poistettu." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Tukilomake on siirretty. Jos tarvitset apua, käy osoitteessa <0/> tai vieraile {HELP_DESK_URL} ottaaksesi meihin yhteyttä." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Käyttöehdot on siirretty kohtaan" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "On monia syötteitä kokeiltavaksi:" @@ -7080,23 +7386,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Emme saaneet yhteyttä palvelimeen, tarkista internetyhteytesi ja yritä uudelleen." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Emme saaneet yhteyttä palvelimeen, tarkista internetyhteytesi ja yritä uudelleen." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Syötteen poistossa on ongelmia. Tarkista internetyhteytesi ja yritä uudelleen." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Syötteen poistossa on ongelmia. Tarkista internetyhteytesi ja yritä uudelleen." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Syötteiden päivittämisessä on ongelmia, tarkista internetyhteytesi ja yritä uudelleen." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Syötteiden päivittämisessä on ongelmia, tarkista internetyhteytesi ja yritä uudelleen." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." @@ -7104,15 +7409,18 @@ msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Yhteydenotto palvelimeen epäonnistui" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7122,21 +7430,25 @@ msgstr "Yhteydenotto palvelimeen epäonnistui" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ongelma ilmoitusten hakemisessa. Napauta tästä yrittääksesi uudelleen." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ongelma viestien hakemisessa. Napauta tästä yrittääksesi uudelleen." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Ongelma listan hakemisessa. Napauta tästä yrittääksesi uudelleen." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Ongelma listojesi hakemisessa. Napauta tästä yrittääksesi uudelleen." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internet-yhteytesi." @@ -7144,21 +7456,27 @@ msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internet-yhteytesi." #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Ongelma asetuksiesi synkronoinnissa palvelimelle" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Sovellussalasanojen hakemisessa tapahtui virhe" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Ilmeni ongelma! {0}" @@ -7166,16 +7484,15 @@ msgstr "Ilmeni ongelma! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Ilmeni joku ongelma. Tarkista internet-yhteys ja yritä uudelleen." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Sovelluksessa ilmeni odottamaton ongelma. Kerro meille, jos tämä tapahtui sinulle!" @@ -7187,11 +7504,11 @@ msgstr "Blueskyyn on tullut paljon uusia käyttäjiä! Aktivoimme tilisi niin pi #~ msgid "These are popular accounts you might like:" #~ msgstr "Nämä ovat suosittuja tilejä, joista saatat pitää:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Tämä {screenDescription} on liputettu:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Tämä käyttäjätili on pyytänyt, että käyttät kirjautuvat sisään nähdäkseen profiilinsa." @@ -7203,15 +7520,15 @@ msgstr "" #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" @@ -7227,7 +7544,7 @@ msgstr "Moderaattorit ovat piilottaneet tämän sisällön." msgid "This content has received a general warning from moderators." msgstr "Tämä sisältö on saanut yleisen varoituksen moderaattoreilta." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Tämä sisältö on hostattu palvelussa {0}. Haluatko sallia ulkoisen median?" @@ -7240,11 +7557,11 @@ msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estä msgid "This content is not viewable without a Bluesky account." msgstr "Tätä sisältöä ei voi katsoa ilman Bluesky-tiliä." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -7263,8 +7580,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7272,7 +7589,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Tätä tietoa ei jaeta muiden käyttäjien kanssa." @@ -7284,11 +7601,11 @@ msgstr "Tämä on tärkeää, jos sinun tarvitsee vaihtaa sähköpostiosoitteesi #~ msgid "This label was applied by {0}." #~ msgstr "Merkinnän lisäsi {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" @@ -7296,7 +7613,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7312,7 +7629,7 @@ msgstr "Tämä linkki vie sinut tälle verkkosivustolle:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Tämä lista on tyhjä!" @@ -7324,16 +7641,16 @@ msgstr "" msgid "This name is already in use" msgstr "Tämä nimi on jo käytössä" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Tämä viesti on poistettu." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Tämä julkaisu on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -7341,15 +7658,15 @@ msgstr "" #~ msgid "This post will be hidden from feeds." #~ msgstr "Tämä julkaisu piilotetaan syötteistä." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Tämä profiili on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7357,7 +7674,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "Tämä palvelu ei ole toimittanut käyttöehtoja tai tietosuojakäytäntöä." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "" @@ -7410,16 +7727,16 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Keskusteluketjun asetukset" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Keskusteluketjun asetukset" @@ -7427,15 +7744,15 @@ msgstr "Keskusteluketjun asetukset" #~ msgid "Thread settings updated" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Ketjumainen näkymä" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Keskusteluketjujen asetukset" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Jos haluat poistaa sähköpostiin perustuvan kaksivaiheisen tunnistautumisen käytöstä, vahvista pääsysi sähköpostiosoitteeseen." @@ -7443,18 +7760,22 @@ msgstr "Jos haluat poistaa sähköpostiin perustuvan kaksivaiheisen tunnistautum msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Kenelle haluaisit lähettää tämän raportin?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "Vaihda hiljennysvaihtoehtojen välillä." @@ -7463,25 +7784,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Vaihda pudotusvalikko" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Vaihda ottaaksesi käyttöön tai poistaaksesi käytöstä aikuisille tarkoitettu sisältö." -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Muutokset" +#~ msgid "Transformations" +#~ msgstr "Muutokset" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Käännä" @@ -7490,40 +7811,40 @@ msgctxt "action" msgid "Try again" msgstr "Yritä uudelleen" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Kaksivaiheinen tunnistautuminen" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Tyyppi:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Poista listan esto" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Poista listan hiljennys" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -7531,14 +7852,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Poista esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Poista esto" @@ -7548,17 +7869,17 @@ msgstr "Poista esto" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Poista käyttäjätilin esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Poista esto?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7573,12 +7894,12 @@ msgstr "Lopeta seuraaminen" #~ msgid "Unfollow" #~ msgstr "Älä seuraa" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Lopeta seuraaminen {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Lopeta käyttäjätilin seuraaminen" @@ -7586,31 +7907,31 @@ msgstr "Lopeta käyttäjätilin seuraaminen" #~ msgid "Unlike" #~ msgstr "En tykkää" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Poista tykkäys tästä syötteestä" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Poista hiljennys" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Poista hiljennys" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Poista hiljennys {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Poista käyttäjätilin hiljennys" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Poista hiljennys kaikista {displayTag}-julkaisuista" @@ -7622,12 +7943,12 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Poista keskusteluketjun hiljennys" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" @@ -7635,24 +7956,29 @@ msgstr "" #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Poista kiinnitys" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Poista kiinnitys etusivulta" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Poista moderointilistan kiinnitys" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Peruuta tilaus" @@ -7661,7 +7987,7 @@ msgstr "Peruuta tilaus" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "" @@ -7669,7 +7995,7 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -7683,75 +8009,92 @@ msgid "Unwanted Sexual Content" msgstr "Ei-toivottu seksuaalinen sisältö" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Päivitä {displayName} listoissa" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Päivitä {displayName} listoissa" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Päivitä {handle}\"" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Päivitetään..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Lataa tekstitiedosto kohteeseen:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Lataa kamerasta" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Lataa tiedostoista" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Lataa kirjastosta" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Käytä palvelimellasi olevaa tiedostoa" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Käytä sovellussalasanoja kirjautuaksesi muihin Bluesky-sovelluksiin antamatta niille täyttä hallintaa tilillesi tai salasanallesi." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Käytä bsky.socialia palveluntarjoajana." -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Käytä oletustoimittajaa" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Käytä sovelluksen sisäistä selainta" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Käytä oletusselaintani" @@ -7759,7 +8102,7 @@ msgstr "Käytä oletusselaintani" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "" @@ -7796,36 +8139,36 @@ msgstr "Käyttäjä on estänyt sinut" msgid "User Blocks You" msgstr "Käyttäjä on estänyt sinut" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Käyttäjälistan on tehnyt {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Käyttäjälistan on tehnyt <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Käyttäjälistasi" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Käyttäjälista luotu" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Käyttäjälista päivitetty" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Käyttäjälistat" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Käyttäjätunnus tai sähköpostiosoite" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Käyttäjät" @@ -7837,26 +8180,24 @@ msgstr "Käyttäjät" msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Käyttäjät listassa \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Käyttäjät, jotka ovat pitäneet tästä sisällöstä tai profiilista" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Arvo:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" @@ -7864,23 +8205,24 @@ msgstr "" #~ msgid "Verify {0}" #~ msgstr "Vahvista {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Varmista sähköposti" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Vahvista sähköpostini" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Vahvista sähköpostini" @@ -7889,14 +8231,15 @@ msgstr "Vahvista sähköpostini" msgid "Verify New Email" msgstr "Vahvista uusi sähköposti" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Vahvista sähköpostisi" @@ -7905,21 +8248,21 @@ msgstr "Vahvista sähköpostisi" #~ msgid "Version {0}" #~ msgstr "Versio {0}" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Videopelit" @@ -7927,11 +8270,15 @@ msgstr "Videopelit" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -7939,12 +8286,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Katso {0}:n avatar" @@ -7957,15 +8304,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Katso vianmääritystietue" @@ -7985,11 +8340,13 @@ msgstr "Katso koko keskusteluketju" msgid "View information about these labels" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Katso profiilia" @@ -7997,28 +8354,28 @@ msgstr "Katso profiilia" msgid "View the avatar" msgstr "Katso avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Katso, kuka tykkää tästä syötteestä" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8041,11 +8398,11 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Emme löytäneet tuloksia tuolla aihetunnisteella." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8053,11 +8410,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Arvioimme, että tilisi valmistumiseen on {estimatedTime} aikaa." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Toivomme sinulle ihania hetkiä. Muista, että Bluesky on:" @@ -8073,19 +8430,19 @@ msgstr "Emme enää löytäneet viestejä seurattavilta. Tässä on uusin tekij #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Suosittelemme \"Tutustu\"-syötettämme:" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilisi määritystä. Jos ongelma jatkuu, voit ohittaa tämän vaiheen." @@ -8093,19 +8450,23 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis msgid "We will let you know when your account is ready." msgstr "Ilmoitamme sinulle, kun käyttäjätilisi on valmis." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Käytämme tätä mukauttaaksemme kokemustasi." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Olemme innoissamme, että liityt joukkoomme!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Pahoittelemme, emme saaneet avattua tätä listaa. Jos ongelma jatkuu, ota yhteyttä listan tekijään: @{handleOrDid}." @@ -8113,16 +8474,16 @@ msgstr "Pahoittelemme, emme saaneet avattua tätä listaa. Jos ongelma jatkuu, o msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pahoittelemme, emme pystyneet lataamaan hiljennettyjä sanojasi tällä hetkellä. Yritä uudelleen." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Pahoittelemme, hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Pahoittelut! Emme löydä etsimääsi sivua." @@ -8130,7 +8491,7 @@ msgstr "Pahoittelut! Emme löydä etsimääsi sivua." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8146,7 +8507,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Mitkä ovat kiinnostuksenkohteesi?" @@ -8154,17 +8515,17 @@ msgstr "Mitkä ovat kiinnostuksenkohteesi?" msgid "What do you want to call your starter pack?" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Mitä kuuluu?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Mitä kieliä tässä viestissä käytetään?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Mitä kieliä haluaisit nähdä algoritmisissä syötteissä?" @@ -8174,8 +8535,8 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8190,7 +8551,7 @@ msgstr "Kuka voi vastata" #~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8223,35 +8584,35 @@ msgid "Why should this user be reviewed?" msgstr "Miksi tämä käyttäjä tulisi arvioida?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Leveä" +#~ msgid "Wide" +#~ msgstr "Leveä" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Kirjoita viesti" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Kirjoita vastauksesi" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Kirjoittajat" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Kyllä" @@ -8260,15 +8621,15 @@ msgstr "Kyllä" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8276,11 +8637,14 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" + #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8293,7 +8657,7 @@ msgstr "" msgid "You are in line." msgstr "Olet jonossa." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8301,6 +8665,10 @@ msgstr "" msgid "You are not following anyone." msgstr "Et seuraa ketään." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8315,15 +8683,15 @@ msgstr "" #~ msgstr "Voit muuttaa näitä asetuksia myöhemmin." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Voit nyt kirjautua sisään uudella salasanallasi." @@ -8335,7 +8703,7 @@ msgstr "" msgid "You do not have any followers." msgstr "Sinulla ei ole kyhtään seuraajaa." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -8343,7 +8711,7 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Sinulla ei ole vielä kutsukoodia! Lähetämme sinulle sellaisen, kun olet ollut Bluesky-palvelussa hieman pidempään." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Sinulla ei ole kiinnitettyjä syötteitä." @@ -8351,7 +8719,7 @@ msgstr "Sinulla ei ole kiinnitettyjä syötteitä." #~ msgid "You don't have any saved feeds!" #~ msgstr "Sinulla ei ole tallennettuja syötteitä!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Sinulla ei ole tallennettuja syötteitä." @@ -8369,8 +8737,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "Olet estänyt tämän käyttäjän. Et voi nähdä hänen sisältöä." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8393,7 +8761,7 @@ msgstr "Olet hiljentänyt tämän käyttäjätilin." msgid "You have muted this user" msgstr "Olet hiljentänyt tämän käyttäjän" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -8401,8 +8769,8 @@ msgstr "" msgid "You have no feeds." msgstr "Sinulla ei ole syötteitä." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Sinulla ei ole listoja." @@ -8410,15 +8778,15 @@ msgstr "Sinulla ei ole listoja." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Et ole vielä estänyt yhtään käyttäjää. Estääksesi käyttäjän, siirry heidän profiiliinsa ja valitse \"Estä käyttäjä\"-vaihtoehto valikosta." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Et ole vielä luonut yhtään sovelluksen salasanaa. Voit luoda sellaisen painamalla alla olevaa painiketta." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Et ole hiljentänyt vielä yhtään käyttäjää. Hiljentääksesi käyttäjän, mene hänen profiiliin ja valitse \"Hiljennä käyttäjä\" valikosta." @@ -8426,11 +8794,11 @@ msgstr "Et ole hiljentänyt vielä yhtään käyttäjää. Hiljentääksesi käy msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -8467,7 +8835,11 @@ msgstr "" #~ msgid "You may only add up to 50 profiles" #~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Sinun on oltava vähintään 13-vuotias rekisteröityäksesi." @@ -8475,7 +8847,7 @@ msgstr "Sinun on oltava vähintään 13-vuotias rekisteröityäksesi." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Sinun on oltava vähintään 18-vuotias katsoaksesi aikuissisältöä" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -8483,12 +8855,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "" @@ -8496,47 +8867,51 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Et enää saa ilmoituksia tästä keskustelusta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Saat nyt ilmoituksia tästä keskustelusta" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Saat sähköpostin \"nollauskoodin\". Syötä koodi tähän ja syötä sitten uusi salasanasi." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "" @@ -8555,7 +8930,7 @@ msgstr "Olet jonossa" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Olet valmis aloittamaan!" @@ -8568,15 +8943,15 @@ msgstr "Olet halunnut piilottaa sanan tai aihetunnisteen tässä viestissä" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Olet saavuttanut syötteesi lopun! Etsi lisää käyttäjiä seurattavaksi." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Käyttäjätilisi" @@ -8584,15 +8959,15 @@ msgstr "Käyttäjätilisi" msgid "Your account has been deleted" msgstr "Käyttäjätilisi on poistettu" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Käyttäjätilisi arkisto, joka sisältää kaikki julkiset tietueet, voidaan ladata \"CAR\"-tiedostona. Tämä tiedosto ei sisällä upotettuja mediaelementtejä, kuten kuvia, tai yksityisiä tietojasi, jotka on haettava erikseen." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Syntymäaikasi" @@ -8600,11 +8975,11 @@ msgstr "Syntymäaikasi" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Valintasi tallennetaan, mutta sitä voit muuttaa myöhemmin asetuksissa." @@ -8612,9 +8987,9 @@ msgstr "Valintasi tallennetaan, mutta sitä voit muuttaa myöhemmin asetuksissa. #~ msgid "Your default feed is \"Following\"" #~ msgstr "Oletussyötteesi on \"Following\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Sähköpostiosoitteesi näyttää olevan virheellinen." @@ -8639,7 +9014,7 @@ msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi, msgid "Your full handle will be" msgstr "Käyttäjätunnuksesi tulee olemaan" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Käyttäjätunnuksesi tulee olemaan <0>@{0}" @@ -8651,15 +9026,15 @@ msgstr "Hiljentämäsi sanat" msgid "Your password has been changed successfully!" msgstr "Salasanasi on vaihdettu onnistuneesti!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Viestisi on julkaistu" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Hiljennykset ovat yksityisiä." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Profiilisi" @@ -8667,14 +9042,14 @@ msgstr "Profiilisi" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Vastauksesi on julkaistu" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Käyttäjätunnuksesi" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index cc7bff75d4..011f53b97a 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(contient du contenu intégré)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(pas d’e-mail)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} autre} other {{formattedCount} autres}}" @@ -50,7 +50,7 @@ msgstr "{0, plural, one {# minute} other {# minutes}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mois} other {# mois}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# repost} other {# reposts}}" @@ -68,15 +68,15 @@ msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {abonnement} other {abonnements}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}" @@ -85,19 +85,19 @@ msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citation} other {citations}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Répondre (# réponse)} other {Répondre (# réponses)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Déliker (# like)} other {Déliker (# likes)}}" @@ -111,19 +111,19 @@ msgstr "{0} <0>dans <1>les mots-clés" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>dans <1>le texte et les mots-clés" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0} sur {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -160,12 +160,12 @@ msgstr "{0}mo" msgid "{0}s" msgstr "{0}s" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Liké par # compte} other {Liké par # comptes}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Kit de démarrage de {displayName}" @@ -177,22 +177,22 @@ msgstr "{estimatedTimeHrs, plural, one {heure} other {heures}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} abonnements" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} ne peut être contacté par message" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Liké par # compte} other {Liké par # comptes}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non lus" @@ -204,29 +204,29 @@ msgstr "{profileName} a rejoint Bluesky il y a {0}" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName} a rejoint Bluesky en utilisant un kit de démarrage il y a {0}" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} font partie de votre kit de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} et<1> <2>{1} faites partie de votre pack de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} fait partie de votre kit de démarrage" @@ -234,15 +234,19 @@ msgstr "<0>{0} fait partie de votre kit de démarrage" msgid "<0>{0} members" msgstr "<0>{0} membres" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Pas applicable. Cet avertissement est seulement disponible pour les posts qui ont des médias qui leur sont attachés." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Pas applicable. Cet avertissement est seulement disponible pour les posts qui ont des médias qui leur sont attachés." + +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Vous et<1> <2>{0} faites partie de votre pack de démarrage" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Pseudo invalide" @@ -250,7 +254,7 @@ msgstr "⚠Pseudo invalide" msgid "24 hours" msgstr "24 heures" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Confirmation 2FA" @@ -262,8 +266,8 @@ msgstr "30 jours" msgid "7 days" msgstr "7 jours" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Accède aux liens de navigation et aux paramètres" @@ -271,35 +275,34 @@ msgstr "Accède aux liens de navigation et aux paramètres" msgid "Access profile and other navigation links" msgstr "Accède au profil et aux autres liens de navigation" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Accessibilité" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Compte bloqué" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Compte suivi" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Compte masqué" @@ -320,27 +323,27 @@ msgstr "Options de compte" msgid "Account removed from quick access" msgstr "Compte supprimé de l’accès rapide" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Compte débloqué" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Compte désabonné" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Compte réaffiché" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Ajouter" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Ajouter {0} autres pour continuer" @@ -348,37 +351,39 @@ msgstr "Ajouter {0} autres pour continuer" msgid "Add {displayName} to starter pack" msgstr "Ajouter {displayName} au kit de démarrage" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Ajouter un avertissement sur le contenu" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Ajouter un compte à cette liste" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Ajouter un compte" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Ajouter un texte alt" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "Ajouter un texte alt (facultatif)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Ajouter un mot de passe d’application" @@ -394,7 +399,7 @@ msgstr "Ajouter des mots et des mots-clés masqués" msgid "Add recommended feeds" msgstr "Ajouter les fils d’actu recommandés" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Ajoutez des fils d’actu à votre kit de démarrage !" @@ -402,16 +407,16 @@ msgstr "Ajoutez des fils d’actu à votre kit de démarrage !" msgid "Add the default feed of only people you follow" msgstr "Ajouter le fil d’actu par défaut avec seulement les comptes que vous suivez" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Ajouter ce fil à vos fils d’actu" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Ajouter aux listes" @@ -420,7 +425,7 @@ msgid "Add to my feeds" msgstr "Ajouter à mes fils d’actu" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Ajouté à la liste" @@ -428,22 +433,28 @@ msgstr "Ajouté à la liste" msgid "Added to my feeds" msgstr "Ajouté à mes fils d’actu" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Contenu pour adultes" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Le contenu pour adultes est désactivé." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Avancé" @@ -451,11 +462,11 @@ msgstr "Avancé" msgid "Algorithm training complete!" msgstr "Entraînement de l’algorithme terminé !" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Tous les comptes ont été suivis !" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit." @@ -464,53 +475,58 @@ msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit." msgid "Allow access to your direct messages" msgstr "Autoriser l’accès à vos messages privés" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Autoriser les nouveaux messages de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Autoriser les réponses de :" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "Permet d’accéder à vos messages privés" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Avez-vous déjà un code ?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Déjà connecté·e en tant que @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Texte alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Texte alt" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation que vous pouvez saisir ici." @@ -518,19 +534,23 @@ msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation qu msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Un e-mail a été envoyé à votre ancienne adresse, {0}. Il comprend un code de confirmation que vous pouvez saisir ici." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Une erreur s’est produite" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Une erreur s’est produite" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "Une erreur s’est produite lors de la compression de la vidéo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?" @@ -543,24 +563,24 @@ msgid "An error occurred while loading the video. Please try again." msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "Une erreur s’est produite lors de l’enregistrement de l’image !" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "Une erreur s’est produite lors de l’enregistrement de l’image !" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "Une erreur s’est produite lors de la sélection de la vidéo" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "Une erreur s’est produite lors de l’envoi de la vidéo." @@ -572,40 +592,40 @@ msgstr "Un problème qui ne fait pas partie de ces options" msgid "An issue occurred starting the chat" msgstr "Un problème est survenu au démarrage de la discussion" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Un problème est survenu lors de l’ouverture de la discussion" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Un problème est survenu, veuillez réessayer." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "une erreur inconnue s’est produite" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "un étiqueteur inconnu" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "et" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Animaux" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF animé" @@ -613,15 +633,20 @@ msgstr "GIF animé" msgid "Anti-Social Behavior" msgstr "Comportement antisocial" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Tout le monde peut interagir" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Langue de l’application" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Mot de passe d’application supprimé" @@ -633,47 +658,47 @@ msgstr "Les noms de mots de passe d’application ne peuvent contenir que des le msgid "App Password names must be at least 4 characters long." msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 caractères." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Paramètres de mot de passe d’application" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Mots de passe d’application" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Faire appel" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Faire appel de l’étiquette « {0} »" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appel soumis" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Faire appel de cette décision" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Affichage" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Paramètres d’affichage" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Paramètres d’affichage" @@ -682,7 +707,7 @@ msgstr "Paramètres d’affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe de l’application « {name} » ?" @@ -690,10 +715,14 @@ msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe de l’application msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour l’autre personne." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne." @@ -702,11 +731,11 @@ msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Êtes-vous sûr de vouloir rejeter ce brouillon ?" @@ -719,11 +748,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Écrivez-vous en <0>{0} ?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Art" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Nudité artistique ou non érotique." @@ -732,39 +761,39 @@ msgid "At least 3 characters" msgstr "Au moins 3 caractères" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Arrière" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Principes de base" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Date de naissance" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Date de naissance :" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Bloquer" @@ -773,45 +802,45 @@ msgstr "Bloquer" msgid "Block account" msgstr "Bloquer le compte" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Bloquer ce compte" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Bloquer ce compte ?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Bloquer ces comptes" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Liste de blocage" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Bloquer ces comptes ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Bloqué" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Comptes bloqués" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vôtre." @@ -823,40 +852,44 @@ msgstr "Post bloqué." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Le blocage n’empêche pas cet étiqueteur de placer des étiquettes sur votre compte." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Le blocage est public. Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Le blocage n’empêchera pas les étiquettes d’être appliquées à votre compte, mais il empêchera ce compte de répondre à vos discussions ou d’interagir avec vous." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. L’auto-hébergement est désormais disponible en version bêta pour les développeurs." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. L’auto-hébergement est désormais disponible en version bêta pour les développeurs." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Bluesky est meilleur entre ami·e·s !" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "Nous sommes désormais plus de 10 millions sur Bluesky, et j’étais n°{0} !" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "Nous sommes désormais plus de 10 millions sur Bluesky, et j’étais n°{0} !" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte." @@ -869,13 +902,13 @@ msgid "Blur images and filter from feeds" msgstr "Flouter les images et les filtrer des fils d’actu" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Livres" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "Soyez-en fier !" +#~ msgid "Brag a little!" +#~ msgstr "Soyez-en fier !" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -902,7 +935,7 @@ msgstr "Parcourir d’autres suggestions sur la page « Explore »" msgid "Browse other feeds" msgstr "Parcourir d’autres fils d’actu" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Affaires" @@ -910,7 +943,7 @@ msgstr "Affaires" msgid "by —" msgstr "par —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Par {0}" @@ -919,14 +952,26 @@ msgid "by <0/>" msgstr "par <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "En créant un compte, vous acceptez les {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "En créant un compte, vous acceptez les {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "par vous" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Caméra" @@ -935,33 +980,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets et des tirets bas. La longueur doit être d’au moins 4 caractères, mais pas plus de 32." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Annuler" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +1017,19 @@ msgstr "Annuler" msgid "Cancel account deletion" msgstr "Annuler la suppression de compte" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Annuler le changement de pseudo" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Annuler le recadrage de l’image" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Annuler la modification du profil" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Annuler la modification du profil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Annuler la citation" @@ -994,6 +1038,7 @@ msgid "Cancel reactivation and log out" msgstr "Annuler la réactivation et se déconnecter" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Annuler la recherche" @@ -1001,14 +1046,14 @@ msgstr "Annuler la recherche" msgid "Cancels opening the linked website" msgstr "Annule l’ouverture du site web lié" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "Impossible d’interagir avec un compte bloqué" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "Sous-titres (.vtt)" @@ -1017,24 +1062,28 @@ msgid "Captions & alt text" msgstr "Sous-titres et texte alt" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "Célébrons les {0} comptes" +#~ msgid "Celebrating {0} users" +#~ msgstr "Célébrons les {0} comptes" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Modifier le pseudo" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Modifier le pseudo" @@ -1042,12 +1091,12 @@ msgstr "Modifier le pseudo" msgid "Change my email" msgstr "Modifier mon e-mail" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Modifier le mot de passe" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Modifier le mot de passe" @@ -1059,9 +1108,10 @@ msgstr "Modifier la langue de post en {0}" msgid "Change Your Email" msgstr "Modifier votre e-mail" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Discussions" @@ -1071,14 +1121,14 @@ msgstr "Discussion masquée" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Paramètres de discussion" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Paramètres de discussion" @@ -1091,7 +1141,7 @@ msgstr "Discussion réaffichée" msgid "Check my status" msgstr "Vérifier mon statut" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Vérifiez votre boîte e-mail pour un code de connexion et saisissez-le ici." @@ -1099,23 +1149,27 @@ msgstr "Vérifiez votre boîte e-mail pour un code de connexion et saisissez-le msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail contenant un code de confirmation à saisir ci-dessous :" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Choisissez des fils d’actu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Choisir pour moi" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Choisissez des personnes" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Choisir un service" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalisés." @@ -1123,28 +1177,27 @@ msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalis msgid "Choose this color as your avatar" msgstr "Choisir cette couleur comme avatar" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Effacer toutes les données de stockage" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les données de stockage (redémarrer ensuite)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Effacer la recherche" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Efface toutes les données de stockage" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "cliquez ici" @@ -1160,15 +1213,15 @@ msgstr "Cliquez ici pour plus d’informations." msgid "Click here to open tag menu for {tag}" msgstr "Cliquez ici pour ouvrir le menu de mot-clé pour {tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Cliquez pour désactiver les citations de ce post." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Cliquez pour activer les citations de ce post." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Cliquer pour réessayer l’envoi échoué du message" @@ -1180,27 +1233,25 @@ msgstr "Climat" msgid "Clip 🐴 clop 🐴" msgstr "Cataclop 🐴 cataclop 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fermer" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Fermer le dialogue actif" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Fermer l’alerte" @@ -1208,12 +1259,11 @@ msgstr "Fermer l’alerte" msgid "Close bottom drawer" msgstr "Fermer le tiroir du bas" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Fermer le dialogue" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Fermer le dialogue des GIFs" @@ -1226,29 +1276,29 @@ msgid "Close image viewer" msgstr "Fermer la visionneuse d’images" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Fermer la modale" +#~ msgid "Close modal" +#~ msgstr "Fermer la modale" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Fermer le pied de page de navigation" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Fermer ce dialogue" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Ferme la barre de navigation du bas" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Ferme la notification de mise à jour du mot de passe" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Ferme la fenêtre de rédaction et supprime le brouillon" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Ferme la fenêtre de rédaction et supprime le brouillon" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1258,56 +1308,66 @@ msgstr "Ferme la visionneuse pour l’image d’en-tête" msgid "Collapse list of users" msgstr "Fermer la liste des comptes" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Comédie" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Bandes dessinées" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Directives communautaires" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Terminez le didacticiel et commencez à utiliser votre compte" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Compléter le défi" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Permet d’écrire des posts de {MAX_GRAPHEME_LENGTH} caractères maximum" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Rédiger une réponse" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Configure les paramètres de filtrage de contenu pour la catégorie : {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Configuré dans <0>les paramètres de modération." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Confirmer" @@ -1324,30 +1384,35 @@ msgstr "Confirmer les paramètres de langue" msgid "Confirm delete account" msgstr "Confirmer la suppression du compte" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Confirmez votre âge :" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Confirme votre date de naissance" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Code de confirmation" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Connexion…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Contacter le support" @@ -1355,12 +1420,12 @@ msgstr "Contacter le support" msgid "Content Blocked" msgstr "Contenu bloqué" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Filtres de contenu" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Langues du contenu" @@ -1370,13 +1435,13 @@ msgid "Content Not Available" msgstr "Contenu non disponible" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Avertissement sur le contenu" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Avertissements sur le contenu" @@ -1384,12 +1449,12 @@ msgstr "Avertissements sur le contenu" msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Continuer" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Continuer comme {0} (actuellement connecté)" @@ -1397,13 +1462,13 @@ msgstr "Continuer comme {0} (actuellement connecté)" msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Passer à l’étape suivante" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Conversation supprimée" @@ -1416,20 +1481,21 @@ msgstr "Cuisine" msgid "Copied" msgstr "Copié" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Copié dans le presse-papier" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Copié !" @@ -1437,17 +1503,17 @@ msgstr "Copié !" msgid "Copies app password" msgstr "Copie le mot de passe d’application" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copier" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Copier {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Copier ce code" @@ -1459,12 +1525,12 @@ msgstr "Copier le lien" msgid "Copy Link" msgstr "Copier le lien" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -1473,17 +1539,17 @@ msgstr "Copier le lien vers le post" msgid "Copy message text" msgstr "Copier le texte du message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Copier le texte du post" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Copier le code QR" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" @@ -1491,11 +1557,11 @@ msgstr "Politique sur les droits d’auteur" msgid "Could not leave chat" msgstr "Impossible de partir de la discussion" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Impossible de charger le fil d’actu" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Impossible de charger la liste" @@ -1507,34 +1573,39 @@ msgstr "Impossible de masquer la discussion" msgid "Could not process your video" msgstr "Impossible de traiter votre vidéo" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Créer" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Créer un nouveau compte" +#~ msgid "Create a new account" +#~ msgstr "Créer un nouveau compte" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Créer un compte Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Créer un code QR pour un kit de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Créer un kit de démarrage pour moi" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Créer un compte" @@ -1543,11 +1614,11 @@ msgstr "Créer un compte" msgid "Create an account" msgstr "Créer un compte" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Créer plutôt un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Créer un autre" @@ -1556,7 +1627,7 @@ msgid "Create App Password" msgstr "Créer un mot de passe d’application" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Créer un nouveau compte" @@ -1564,86 +1635,87 @@ msgstr "Créer un nouveau compte" msgid "Create report for {0}" msgstr "Créer un rapport pour {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} créé" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Culture" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Personnalisé" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Domaine personnalisé" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Les fils d’actu personnalisés élaborés par la communauté vous font vivre de nouvelles expériences et vous aident à trouver le contenu que vous aimez." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Personnaliser les médias provenant de sites externes." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Personnalisez les comptes qui peuvent interagir avec ce post." -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Sombre" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Mode sombre" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Thème sombre" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Date de naissance" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Désactiver le compte" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Désactiver mon compte" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Déboguer la modération" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Panneau de débug" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Supprimer" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Supprimer le compte" @@ -1651,16 +1723,16 @@ msgstr "Supprimer le compte" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Suppression du compte <0>« <1>{0}<2> »" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Supprimer le mot de passe de l’appli" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Supprimer le mot de passe de l’appli ?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Supprimer la déclaration d’ouverture aux discussions" @@ -1668,7 +1740,7 @@ msgstr "Supprimer la déclaration d’ouverture aux discussions" msgid "Delete for me" msgstr "Supprimer pour moi" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Supprimer la liste" @@ -1684,33 +1756,33 @@ msgstr "Supprimer le message pour moi" msgid "Delete my account" msgstr "Supprimer mon compte" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Supprimer mon compte…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Supprimer le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Supprimer le kit de démarrage" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Supprimer le kit de démarrage ?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Supprimer cette liste ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Supprimer ce post ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Supprimé" @@ -1718,27 +1790,35 @@ msgstr "Supprimé" msgid "Deleted post." msgstr "Post supprimé." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Supprime l’enregistrement de déclaration de discussion" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Description" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Texte alt descriptif" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Détacher la citation" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "Détacher la citation ?" @@ -1746,54 +1826,58 @@ msgstr "Détacher la citation ?" msgid "Dialog: adjust who can interact with this post" msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Vous vouliez dire quelque chose ?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Atténué" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Les messages privés sont arrivés !" +#~ msgid "Direct messages are here!" +#~ msgstr "Les messages privés sont arrivés !" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "Désactiver la lecture automatique des vidéos et des GIFs" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Désactiver le 2FA par e-mail" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Désactiver le retour haptique" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Désactiver les sous-titres" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Désactivé" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Abandonner" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Abandonner le brouillon ?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Empêcher les applis de montrer mon compte aux personnes non connectées" @@ -1806,11 +1890,15 @@ msgstr "Découvrir des fils d’actu personnalisés" msgid "Discover new feeds" msgstr "Découvrir de nouveaux fils d’actu" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" -#: src/view/com/composer/Composer.tsx:1107 +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Ignorer l’erreur" @@ -1818,19 +1906,29 @@ msgstr "Ignorer l’erreur" msgid "Dismiss getting started guide" msgstr "Annuler le guide de démarrage" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Afficher des badges de texte alt plus grands" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Afficher le nom" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Afficher le nom" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Afficher le nom" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Panneau DNS" @@ -1838,6 +1936,14 @@ msgstr "Panneau DNS" msgid "Do not apply this mute word to users you follow" msgstr "Ne pas appliquer ce mot masqué aux comptes que vous suivez" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Ne comprend pas de nudité." @@ -1846,38 +1952,37 @@ msgstr "Ne comprend pas de nudité." msgid "Doesn't begin or end with a hyphen" msgstr "Ne commence pas ou ne se termine pas par un trait d’union" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Valeur du domaine" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Domaine vérifié !" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Terminé" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Terminer" @@ -1886,20 +1991,24 @@ msgstr "Terminer" msgid "Done{extraText}" msgstr "Terminé{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Télécharger Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Télécharger le fichier CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "Télécharger l’image" +#~ msgid "Download image" +#~ msgstr "Télécharger l’image" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Déposer pour ajouter des images" @@ -1907,39 +2016,43 @@ msgstr "Déposer pour ajouter des images" msgid "Duration:" msgstr "Durée :" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "ex. alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "ex. Alice Dupont" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "ex. Alice Dupont" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "ex. alice.fr" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "ex. Artiste, amoureuse des chiens et lectrice passionnée." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "ex. Artiste, amoureuse des chiens et lectrice passionnée." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Ex. nus artistiques." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "ex. Les meilleurs comptes" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "ex. Spammeurs" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "ex. Ces comptes qui ne ratent jamais leur coup." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "ex. Les comptes qui répondent toujours avec des pubs." @@ -1947,58 +2060,59 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Modifier" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Modifier" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Modifier l’avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Modifier les fils d’actu" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Modifier l’image" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Modifier les paramètres d’interaction" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Modifier les infos de la liste" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Modifier mon profil" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Modifier mon profil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Modifier les personnes" @@ -2007,21 +2121,23 @@ msgstr "Modifier les personnes" msgid "Edit post interaction settings" msgstr "Modifier les paramètres d’interaction du post" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Modifier le profil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Modifier le profil" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Modifier le kit de démarrage" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Modifier la liste de comptes" @@ -2029,24 +2145,24 @@ msgstr "Modifier la liste de comptes" msgid "Edit who can reply" msgstr "Modifier qui peut répondre" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Modifier votre nom d’affichage" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Modifier votre nom d’affichage" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Modifier votre description de profil" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Modifier votre description de profil" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Éducation" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-mail" @@ -2055,11 +2171,11 @@ msgstr "E-mail" msgid "Email 2FA disabled" msgstr "2FA par e-mail désactivé" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Adresse e-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "E-mail renvoyé" @@ -2076,21 +2192,21 @@ msgstr "Adresse e-mail mise à jour" msgid "Email verified" msgstr "Adresse e-mail vérifiée" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "Adresse e-mail vérifiée" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "E-mail :" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Code HTML à intégrer" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Intégrer le post" @@ -2098,47 +2214,47 @@ msgstr "Intégrer le post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait suivant et de le coller dans le code HTML de votre site web." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Activer {0} uniquement" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Activer le contenu pour adultes" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Activer les médias externes" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Activer les lecteurs médias pour" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Activer les notifications prioritaires" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Activer les sous-titres" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Active cette source uniquement" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Activé" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Fin du fil d’actu" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "Assurez-vous d’avoir sélectionné une langue pour chaque fichier de sous-titres." @@ -2146,7 +2262,7 @@ msgstr "Assurez-vous d’avoir sélectionné une langue pour chaque fichier de s msgid "Enter a name for this App Password" msgstr "Entrer un nom pour ce mot de passe d’application" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Saisir un mot de passe" @@ -2155,6 +2271,10 @@ msgstr "Saisir un mot de passe" msgid "Enter a word or tag" msgstr "Saisir un mot ou un mot-clé" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Entrer un code de confirmation" @@ -2163,20 +2283,20 @@ msgstr "Entrer un code de confirmation" msgid "Enter the code you received to change your password." msgstr "Saisissez le code que vous avez reçu pour modifier votre mot de passe." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Entrez le domaine que vous voulez utiliser" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Saisissez l’e-mail que vous avez utilisé pour créer votre compte. Nous vous enverrons un « code de réinitialisation » afin changer votre mot de passe." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Saisissez votre date de naissance" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Entrez votre e-mail" @@ -2188,10 +2308,14 @@ msgstr "Entrez votre nouvel e-mail ci-dessus" msgid "Enter your new email address below." msgstr "Entrez votre nouvelle e-mail ci-dessous." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Entrez votre pseudo et votre mot de passe" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Échec lors de la sauvegarde du fichier" @@ -2200,12 +2324,12 @@ msgstr "Échec lors de la sauvegarde du fichier" msgid "Error receiving captcha response." msgstr "Erreur de réception de la réponse captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Erreur :" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Tout le monde" @@ -2217,10 +2341,8 @@ msgstr "Tout le monde peut répondre" msgid "Everybody can reply to this post." msgstr "Tout le monde peut répondre à ce post." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Tout le monde" @@ -2240,7 +2362,7 @@ msgstr "Exclure les comptes que vous suivez" msgid "Excludes users you follow" msgstr "Exclut les comptes que vous suivez" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "Quitter le plein écran" @@ -2248,11 +2370,11 @@ msgstr "Quitter le plein écran" msgid "Exits account deletion process" msgstr "Sort du processus de suppression du compte" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Sort du processus de changement de pseudo" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Sort du processus de recadrage de l’image" @@ -2272,12 +2394,16 @@ msgstr "Développer le texte alt" msgid "Expand list of users" msgstr "Développer la liste des comptes" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Développe ou réduit le post complet auquel vous répondez" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "Expérimental : lorsque cette préférence est activée, vous ne recevrez que les notifications de réponse et de citation des comptes que vous suivez. Nous continuerons à ajouter d’autres contrôles au fil du temps." @@ -2297,32 +2423,32 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Exporter mes données" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Exporter mes données" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Média externe" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Les médias externes peuvent permettre à des sites web de collecter des informations sur vous et votre appareil. Aucune information n’est envoyée ou demandée tant que vous n’appuyez pas sur le bouton de lecture." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Préférences sur les médias externes" @@ -2331,12 +2457,12 @@ msgstr "Préférences sur les médias externes" msgid "Failed to create app password." msgstr "Échec de la création du mot de passe d’application." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Échec de la création du kit de démarrage" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Échec de la création de la liste. Vérifiez votre connexion Internet et réessayez." @@ -2344,11 +2470,11 @@ msgstr "Échec de la création de la liste. Vérifiez votre connexion Internet e msgid "Failed to delete message" msgstr "Échec de la suppression du message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" @@ -2357,12 +2483,11 @@ msgstr "Échec de la suppression du kit de démarrage" msgid "Failed to load feeds preferences" msgstr "Échec du chargement des fils d’actu" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Échec du chargement des GIFs" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Échec du chargement de l’historique" @@ -2375,7 +2500,11 @@ msgstr "Échec du chargement des fils d’actu suggerés" msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Échec de l’enregistrement de l’image : {0}" @@ -2383,40 +2512,39 @@ msgstr "Échec de l’enregistrement de l’image : {0}" msgid "Failed to save notification preferences, please try again" msgstr "Échec de l’enregistrement des préférences de notification, veuillez réessayer" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Échec de l’envoi" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Échec de l’envoi de l’appel, veuillez réessayer." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Échec de la mise à jour des fils d’actu" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Échec de la mise à jour des paramètres" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "Échec de l’envoi de la vidéo" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Fil d’actu" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Fil d’actu par {0}" @@ -2426,31 +2554,36 @@ msgid "Feed toggle" msgstr "Ajouter/enlever le fil d’actu" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Fils d’actu" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations." -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Fils d’actu mis à jour !" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Contenu du fichier" @@ -2462,7 +2595,7 @@ msgstr "Fichier sauvegardé avec succès !" msgid "Filter from feeds" msgstr "Filtrer des fils d’actu" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Finalisation" @@ -2472,19 +2605,19 @@ msgstr "Finalisation" msgid "Find accounts to follow" msgstr "Trouver des comptes à suivre" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Trouver des posts et comptes sur Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Affine le contenu affiché sur votre fil d’actu « Following »." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Affine les fils de discussion." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Terminer" @@ -2492,25 +2625,25 @@ msgstr "Terminer" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Flexible" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Miroir horizontal" +#~ msgid "Flip horizontal" +#~ msgstr "Miroir horizontal" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Miroir vertical" +#~ msgid "Flip vertically" +#~ msgstr "Miroir vertical" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Suivre" @@ -2519,12 +2652,12 @@ msgctxt "action" msgid "Follow" msgstr "Suivre" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Suivre {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Suivre {name}" @@ -2532,23 +2665,23 @@ msgstr "Suivre {name}" msgid "Follow 7 accounts" msgstr "Suivre 7 comptes" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Suivre le compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Suivre tous" -#: src/view/com/profile/FollowButton.tsx:79 -msgctxt "action" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "Suivre en retour" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" msgid "Follow Back" msgstr "Suivre en retour" @@ -2572,7 +2705,7 @@ msgstr "Suivi par <0>{0} et <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Comptes suivis" @@ -2584,62 +2717,72 @@ msgstr "vous suit" msgid "followed you back" msgstr "vous a suivi" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Abonné·e·s" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Abonné·e·s que vous connaissez" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Suivi" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Suit {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Suit {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Préférences du fil d’actu « Following »" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Préférences du fil d’actu « Following »" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vous suit" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Vous suit" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Nourriture" @@ -2651,20 +2794,25 @@ msgstr "Pour des raisons de sécurité, nous devrons envoyer un code de confirma msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Pour des raisons de sécurité, vous ne pourrez plus afficher ceci. Si vous perdez ce mot de passe, vous devrez en générer un autre." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Pour toujours" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Mot de passe oublié" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Mot de passe oublié ?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Oublié ?" @@ -2672,34 +2820,34 @@ msgstr "Oublié ?" msgid "Frequently Posts Unwanted Content" msgstr "Publication fréquente de contenu indésirable" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Tiré de <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "Plein écran" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galerie" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Obtenir de l’aide" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "C’est parti" +#~ msgid "Get started" +#~ msgstr "C’est parti" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -2714,7 +2862,7 @@ msgstr "Pour commencer" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Donner à votre profil un visage" @@ -2722,14 +2870,13 @@ msgstr "Donner à votre profil un visage" msgid "Glaring violations of law or terms of service" msgstr "Violations flagrantes de la loi ou des conditions d’utilisation" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Retour" @@ -2737,39 +2884,39 @@ msgstr "Retour" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Retour" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Retour à l’étape précédente" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Retour à l’étape précédente" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Accéder à l’accueil" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Accéder à l’accueil" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Aller à la conversation avec {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Aller à la suite" @@ -2783,6 +2930,8 @@ msgid "Go to user's profile" msgstr "Voir le profil du compte" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Médias crus" @@ -2790,11 +2939,11 @@ msgstr "Médias crus" msgid "Half way there!" msgstr "On y est presque !" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Pseudo" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Haptiques" @@ -2802,24 +2951,24 @@ msgstr "Haptiques" msgid "Harassment, trolling, or intolerance" msgstr "Harcèlement, trolling ou intolérance" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Mot-clé" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Mot-clé : #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Un souci ?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Aide" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une image ou en créant un avatar." @@ -2827,56 +2976,56 @@ msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une i msgid "Here is your app password." msgstr "Voici le mot de passe de votre appli." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Liste cachée" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Cacher" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Cacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Cacher ce post pour moi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Cacher cette réponse pour tout le monde" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Cacher cette réponse pour moi" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Cacher ce contenu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Cacher ce post ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "Cacher cette réponse ?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Cacher la liste des comptes" @@ -2900,7 +3049,7 @@ msgstr "Hmm, le serveur de fils d’actu ne répond pas. Veuillez informer la pe msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, nous n’arrivons pas à trouver ce fil d’actu. Il a peut-être été supprimé." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. Voir ci-dessous pour plus de détails. Si le problème persiste, veuillez nous contacter." @@ -2908,45 +3057,49 @@ msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, nous n’avons pas pu charger ce service de modération." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Accueil" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Hébergeur :" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Hébergeur" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Comment ouvrir ce lien ?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "J’ai un code" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "J’ai un code de confirmation" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "J’ai mon propre domaine" @@ -2960,18 +3113,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Si le texte alt est trop long, change son mode d’affichage" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Si rien n’est sélectionné, il n’y a pas de restriction d’âge." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Si rien n’est sélectionné, il n’y a pas de restriction d’âge." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Si vous n’êtes pas encore un adulte selon les lois de votre pays, vos parents ou votre tuteur légal doivent lire ces conditions en votre nom." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer." @@ -2987,16 +3140,15 @@ msgstr "Si vous essayez de changer de pseudo ou d’adresse e-mail, faites-le av msgid "Illegal and Urgent" msgstr "Illégal et urgent" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Image" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Texte alt de l’image" +#~ msgid "Image alt text" +#~ msgstr "Texte alt de l’image" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "Image enregistrée dans votre photothèque !" @@ -3012,7 +3164,7 @@ msgstr "Usurpation d’identité, désinformation ou fausses déclarations" msgid "Inappropriate messages or explicit links" msgstr "Messages inappropriés ou liens explicites" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Entrez le code envoyé à votre e-mail pour réinitialiser le mot de passe" @@ -3024,7 +3176,7 @@ msgstr "Entrez le code de confirmation pour supprimer le compte" msgid "Input name for app password" msgstr "Entrez le nom du mot de passe de l’appli" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Entrez le nouveau mot de passe" @@ -3032,19 +3184,19 @@ msgstr "Entrez le nouveau mot de passe" msgid "Input password for account deletion" msgstr "Entrez le mot de passe pour la suppression du compte" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Entrez le code qui vous a été envoyé par e-mail" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Entrez le pseudo ou l’adresse e-mail que vous avez utilisé lors de l’inscription" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Entrez votre mot de passe" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Entrez votre hébergeur préféré" @@ -3052,15 +3204,19 @@ msgstr "Entrez votre hébergeur préféré" msgid "Input your user handle" msgstr "Entrez votre pseudo" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Interaction limitée" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Et voici les Messages Privés" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Et voici les Messages Privés" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Code de confirmation 2FA invalide." @@ -3069,12 +3225,12 @@ msgstr "Code de confirmation 2FA invalide." msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Pseudo ou mot de passe incorrect" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "Code de vérification invalide" @@ -3082,7 +3238,7 @@ msgstr "Code de vérification invalide" msgid "Invite a Friend" msgstr "Inviter un ami" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Code d’invitation" @@ -3110,50 +3266,64 @@ msgstr "Invitez vos ami·e·s à suivre vos fils d’actu et vos personnes préf msgid "Invites, but personal" msgstr "Invitations, mais personnelles" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "ID de job : {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Emplois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Rejoignez Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Participez à la conversation" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "Inscrit·e le {0}" +#~ msgid "Joined {0}" +#~ msgstr "Inscrit·e le {0}" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Journalisme" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Étiqueté par {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Étiqueté par l’auteur·ice." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Étiquettes" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les étiquettes sont des annotations sur les comptes et le contenu. Elles peuvent être utilisées pour masquer, avertir et catégoriser le réseau." @@ -3170,48 +3340,58 @@ msgstr "Étiquettes sur votre contenu" msgid "Language selection" msgstr "Sélection de la langue" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Préférences de langue" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Paramètres linguistiques" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Langues" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Dernier" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "En savoir plus" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "En savoir plus sur Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "En savoir plus sur la modération appliquée à ce contenu." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "En savoir plus sur ce qui est public sur Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "En savoir plus." @@ -3232,7 +3412,7 @@ msgstr "Partir de la discussion" msgid "Leave conversation" msgstr "Partir de la conversation" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Si vous ne cochez rien, toutes les langues s’afficheront." @@ -3244,21 +3424,20 @@ msgstr "Quitter Bluesky" msgid "left to go." msgstr "devant vous dans la file." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Laissez-moi choisir" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Réinitialisez votre mot de passe !" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Allons-y !" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Clair" @@ -3271,21 +3450,21 @@ msgstr "Liker 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Liker 10 posts pour former le fil d’actu « Discover »" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Liker ce fil d’actu" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Liké par" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Liké par" @@ -3297,7 +3476,7 @@ msgstr "liké votre fil d’actu personnalisé" msgid "liked your post" msgstr "liké votre post" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Likes" @@ -3305,24 +3484,24 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes sur ce post" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Liste" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Liste des avatars" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Liste bloquée" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Liste par {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Liste supprimée" @@ -3330,32 +3509,31 @@ msgstr "Liste supprimée" msgid "List has been hidden" msgstr "La liste a été cachée" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Liste cachée" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Liste masquée" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nom de liste" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Liste débloquée" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Liste réaffichée" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listes" @@ -3375,22 +3553,22 @@ msgstr "Charger d’autres fils d’actu suggérés" msgid "Load more suggested follows" msgstr "Charger d’autres suggestions de suivis" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Charger les nouvelles notifications" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Charger les nouveaux posts" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Chargement…" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Journaux" @@ -3406,19 +3584,27 @@ msgstr "Se connecter ou s’inscrire" msgid "Log out" msgstr "Déconnexion" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilité déconnectée" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Se connecter à un compte qui n’est pas listé" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Appuyer longtemps pour ouvrir le menu de mot-clé pour #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "De la forme XXXXX-XXXXX" @@ -3434,7 +3620,7 @@ msgstr "On dirait que vous avez désépinglé tous vos fils d’actu. Mais pas d msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "On dirait que vous n’avez plus de fil d’actu « Following ». <0>Cliquez ici pour en rajouter un." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "En faire un pour moi" @@ -3451,30 +3637,35 @@ msgstr "Gérer les mots et les mots-clés masqués" msgid "Mark as read" msgstr "Marqué comme lu" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Média" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "comptes mentionnés" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Comptes mentionnés" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menu" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Envoyer un message à {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Message supprimé" @@ -3482,23 +3673,23 @@ msgstr "Message supprimé" msgid "Message from server: {0}" msgstr "Message du serveur : {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Champ d’écriture du message" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Le message est trop long" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Paramètres des messages" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Messages" @@ -3511,63 +3702,63 @@ msgid "Misleading Post" msgstr "Post trompeur" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Mode" +#~ msgid "Mode" +#~ msgstr "Mode" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Modération" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Détails de la modération" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Liste de modération par {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Liste de modération par <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Liste de modération par vous" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Liste de modération créée" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Liste de modération mise à jour" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listes de modération" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "paramètres de modération" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Paramètres de modération" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "États de modération" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Outils de modération" @@ -3576,7 +3767,7 @@ msgstr "Outils de modération" msgid "Moderator has chosen to set a general warning on the content." msgstr "La modération a choisi d’ajouter un avertissement général sur le contenu." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Plus" @@ -3584,46 +3775,47 @@ msgstr "Plus" msgid "More feeds" msgstr "Plus de fils d’actu" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Plus d’options" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Réponses les plus likées en premier" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Cinéma" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Musique" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:166 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Masquer" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "Désactiver le son" -#: src/components/TagMenu/index.tsx:263 -msgid "Mute" -msgstr "Masquer" - #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "Masquer {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Masquer le compte" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Masquer les comptes" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Masquer tous les posts {displayTag}" @@ -3636,11 +3828,11 @@ msgstr "Masquer la conversation" msgid "Mute in:" msgstr "Masquer dans :" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Masquer la liste" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Masquer ces comptes ?" @@ -3668,30 +3860,30 @@ msgstr "Masquer ce mot dans les mots-clés uniquement" msgid "Mute this word until you unmute it" msgstr "Masquer ce mot jusqu’à ce que vous le réaffichiez" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Masquer les mots et les mots-clés" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -msgid "Muted" -msgstr "Son désactivé" +#~ msgid "Muted" +#~ msgstr "Son désactivé" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Comptes masqués" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu et de vos notifications. Cette option est totalement privée." @@ -3699,41 +3891,41 @@ msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu msgid "Muted by \"{0}\"" msgstr "Masqué par « {0} »" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Les mots et les mots-clés masqués" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir avec vous, mais vous ne verrez pas leurs posts et ne recevrez pas de notifications de leur part." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Ma date de naissance" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Mes fils d’actu" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mon profil" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Mes fils d’actu enregistrés" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Mes fils d’actu enregistrés" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nom" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Le nom est requis" @@ -3745,60 +3937,68 @@ msgid "Name or Description Violates Community Standards" msgstr "Nom ou description qui viole les normes communautaires" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Nature" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "Navigue vers {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Navigue vers le kit de démarrage" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Navigue vers le kit de démarrage" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navigue vers le prochain écran" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Navigue vers votre profil" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Besoin de signaler une violation des droits d’auteur ?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Ne perdez jamais l’accès à vos abonné·e·s ou à vos données." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Peu importe, créez un pseudo pour moi" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Nouveau" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Nouveau" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Nouvelle discussion" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Nouveaux messages" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Nouvelle liste de modération" @@ -3810,22 +4010,22 @@ msgstr "Nouveau mot de passe" msgid "New Password" msgstr "Nouveau mot de passe" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Nouveau post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Nouveau post" @@ -3834,30 +4034,30 @@ msgstr "Nouveau post" msgid "New user info dialog" msgstr "Dialogue d’information sur un nouveau compte" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Nouvelle liste de comptes" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Actualités" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3867,30 +4067,29 @@ msgstr "Suivant" msgid "Next image" msgstr "Image suivante" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Non" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Aucune description" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Pas de panneau DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose." @@ -3899,8 +4098,8 @@ msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose. msgid "No likes yet" msgstr "Pas encore de likes" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -3908,11 +4107,11 @@ msgstr "Ne suit plus {0}" msgid "No longer than 253 characters" msgstr "Pas plus de 253 caractères" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Pas encore de messages" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Plus aucune conversation à afficher" @@ -3920,10 +4119,8 @@ msgstr "Plus aucune conversation à afficher" msgid "No notifications yet!" msgstr "Pas encore de notifications !" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Personne" @@ -3931,7 +4128,7 @@ msgstr "Personne" msgid "No one but the author can quote this post." msgstr "Personne d’autre que l’auteur·ice ne peut citer ce post." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Pas encore de posts." @@ -3943,12 +4140,12 @@ msgstr "Pas encore de citations" msgid "No reposts yet" msgstr "Pas encore de reposts" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Aucun résultat" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Aucun résultat" @@ -3956,33 +4153,32 @@ msgstr "Aucun résultat" msgid "No results found" msgstr "Aucun résultat trouvé" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Aucun résultat trouvé pour « {query} »" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Aucun résultat trouvé pour {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Pas de résultats pour « {search} »." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Non merci" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Personne" #: src/components/LikedByList.tsx:80 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikesDialog.tsx:97 #: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Personne n’a encore liké. Peut-être devriez-vous ouvrir la voie !" @@ -3995,7 +4191,7 @@ msgstr "Personne n’a encore cité. Peut-être devriez-vous ouvrir la voie !" msgid "Nobody has reposted this yet. Maybe you should be the first!" msgstr "Personne n’a encore republié. Peut-être devriez-vous ouvrir la voie !" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre." @@ -4003,8 +4199,8 @@ msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre. msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Introuvable" @@ -4013,49 +4209,48 @@ msgstr "Introuvable" msgid "Not right now" msgstr "Pas maintenant" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Note sur le partage" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limite uniquement la visibilité de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramètre. Votre contenu peut toujours être montré aux personnes non connectées par d’autres applications et sites Web." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Rien ici" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Filtres de notification" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Paramètres de notification" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Paramètres de notification" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Sons de notification" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notifications" @@ -4063,11 +4258,12 @@ msgstr "Notifications" msgid "now" msgstr "maintenant" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Maintenant" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Nudité" @@ -4079,45 +4275,44 @@ msgstr "Nudité ou contenu adulte non identifié comme tel" msgid "Off" msgstr "Éteint" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh non !" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Oh non ! Il y a eu un problème." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "Oh non ! Nous n’avons pas réussi à générer une image à partager. Rassurez-vous, nous sommes heureux que vous soyez là 🦋" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "Oh non ! Nous n’avons pas réussi à générer une image à partager. Rassurez-vous, nous sommes heureux que vous soyez là 🦋" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "OK" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Plus anciennes réponses en premier" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "sur<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Seuls les fichiers .jpg et .png sont acceptés" @@ -4129,7 +4324,11 @@ msgstr "Seul {0} peut répondre." msgid "Only contains letters, numbers, and hyphens" msgstr "Ne contient que des lettres, des chiffres et des traits d’union" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" @@ -4138,42 +4337,46 @@ msgid "Oops, something went wrong!" msgstr "Oups, quelque chose n’a pas marché !" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Oups !" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Ouvert" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Ouvre le menu de raccourci du profil de {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Ouvre le créateur d’avatar" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Ouvrir les options de conversation" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Ouvrir des liens avec le navigateur interne à l’appli" @@ -4181,7 +4384,7 @@ msgstr "Ouvrir des liens avec le navigateur interne à l’appli" msgid "Open message options" msgstr "Ouvrir les options de message" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Ouvrir les paramètres des mots masqués et mots-clés" @@ -4189,20 +4392,20 @@ msgstr "Ouvrir les paramètres des mots masqués et mots-clés" msgid "Open navigation" msgstr "Navigation ouverte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Ouvrir la page Storybook" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Ouvrir le journal du système" @@ -4210,53 +4413,57 @@ msgstr "Ouvrir le journal du système" msgid "Opens {numItems} options" msgstr "Ouvre {numItems} options" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Ouvre une boîte de dialogue permettant de choisir qui peut répondre à ce fil de discussion" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Ouvre les paramètres d’accessibilité" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Ouvre des détails supplémentaires pour une entrée de débug" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Ouvre les paramètres d’affichage" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Ouvre l’appareil photo de l’appareil" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Ouvre les paramètres de discussion" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Ouvre le rédacteur" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Ouvre les paramètres linguistiques configurables" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Ouvre la galerie de photos de l’appareil" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Ouvre les paramètres d’intégration externe" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Ouvre le flux de création d’un nouveau compte Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Ouvre le flux pour vous connecter à votre compte Bluesky existant" @@ -4268,51 +4475,51 @@ msgstr "Ouvre la sélection de GIF" msgid "Opens list of invite codes" msgstr "Ouvre la liste des codes d’invitation" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Ouvre la fenêtre modale pour confirmer la désactivation du compte" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Ouvre la fenêtre modale pour confirmer la suppression du compte. Requiert un code e-mail." -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Ouvre une fenêtre modale pour changer le mot de passe de Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Ouvre une fenêtre modale pour choisir un nouveau pseudo Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Ouvre une fenêtre modale pour télécharger les données du compte Bluesky (dépôt)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Ouvre une fenêtre modale pour utiliser un domaine personnalisé" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Ouvre les paramètres de modération" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Ouvre le formulaire de réinitialisation du mot de passe" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Ouvre l’écran avec tous les fils d’actu enregistrés" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Ouvre les paramètres du mot de passe de l’application" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Ouvre les préférences du fil d’actu « Following »" @@ -4320,25 +4527,25 @@ msgstr "Ouvre les préférences du fil d’actu « Following »" msgid "Opens the linked website" msgstr "Ouvre le site web lié" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Ouvre la page de l’historique" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Ouvre la page du journal système" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Ouvre les préférences relatives aux fils de discussion" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Ouvre ce profil" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Ouvre le sélecteur de vidéos" @@ -4346,8 +4553,8 @@ msgstr "Ouvre le sélecteur de vidéos" msgid "Option {0} of {numItems}" msgstr "Option {0} sur {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :" @@ -4355,7 +4562,7 @@ msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :" msgid "Options:" msgstr "Options :" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Ou une combinaison de ces options :" @@ -4368,14 +4575,15 @@ msgid "Or, log into one of your other accounts." msgstr "Ou connectez-vous à l’un de vos autres comptes." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Autre" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Autre compte" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Autres comptes" @@ -4383,21 +4591,21 @@ msgstr "Autres comptes" msgid "Other..." msgstr "Autre…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Notre modération a examiné les signalements qu’elle a reçu et a décidé de désactiver votre accès aux discussions sur Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Page introuvable" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Page introuvable" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4407,42 +4615,42 @@ msgstr "Mot de passe" msgid "Password Changed" msgstr "Mot de passe modifié" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Mise à jour du mot de passe" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Mot de passe mis à jour !" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Mettre en pause" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Mettre en pause la vidéo" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Personnes" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Permission d’accès à la pellicule requise." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Permission d’accès à la pellicule refusée. Veuillez l’activer dans les paramètres de votre système." @@ -4451,60 +4659,69 @@ msgid "Person toggle" msgstr "Ajouter/enlever per les personnes" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Animaux domestiques" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Photographie" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Images destinées aux adultes." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Ajouter à l’accueil" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Ajouter à l’accueil" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Fils épinglés" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Épinglé à vos fils d’actu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Lire" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Lire {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Lire ou mettre en pause le GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Lire la vidéo" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Lire la vidéo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Lit le GIF" @@ -4513,7 +4730,7 @@ msgid "Please choose your handle." msgstr "Veuillez choisir votre pseudo." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." @@ -4538,11 +4755,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Veuillez entrer un mot, un mot-clé ou une phrase valide à masquer" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Veuillez saisir votre code d’invitation." @@ -4550,16 +4767,16 @@ msgstr "Veuillez saisir votre code d’invitation." msgid "Please enter your password as well:" msgstr "Veuillez également entrer votre mot de passe :" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Veuillez expliquer pourquoi vous pensez que cette étiquette a été appliquée à tort par {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Veuillez expliquer pourquoi vous pensez que vos discussions ont été désactivées de manière indûe" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Veuillez vous identifier comme @{0}" @@ -4568,20 +4785,21 @@ msgid "Please Verify Your Email" msgstr "Veuillez vérifier votre e-mail" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Veuillez patienter le temps que votre carte de lien soit chargée" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Veuillez patienter le temps que votre carte de lien soit chargée" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politique" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Poster" @@ -4595,17 +4813,21 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Post supprimé" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Post caché" @@ -4620,7 +4842,7 @@ msgstr "Post caché par mot masqué" msgid "Post Hidden by You" msgstr "Post caché par vous" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Paramètres d’interaction du post" @@ -4628,7 +4850,7 @@ msgstr "Paramètres d’interaction du post" msgid "Post language" msgstr "Langue du post" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Langues du post" @@ -4637,12 +4859,20 @@ msgstr "Langues du post" msgid "Post not found" msgstr "Post introuvable" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "posts" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Posts" @@ -4662,7 +4892,7 @@ msgstr "Lien potentiellement trompeur" msgid "Preference saved" msgstr "Préférence enregistrée" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Appuyer pour tenter une reconnection" @@ -4672,8 +4902,8 @@ msgstr "Appuyer pour changer d’hébergeur" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Appuyer pour réessayer" @@ -4685,79 +4915,83 @@ msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez msgid "Previous image" msgstr "Image précédente" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Langue principale" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Définissez des priorités de vos suivis" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Notifications prioritaires" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Vie privée" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Charte de confidentialité" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Discuter en privé avec d’autres comptes." +#~ msgid "Privately chat with other users." +#~ msgstr "Discuter en privé avec d’autres comptes." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Traitement…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profil mis à jour" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Protégez votre compte en vérifiant votre e-mail." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Public" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Les listes publiques et partageables qui peuvent alimenter les fils d’actu." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Publier le post" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Publier le post" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Publier la réponse" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Publier la réponse" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4771,39 +5005,39 @@ msgstr "Code QR a été téléchargé !" msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "Citer le post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "La citation a été ré-attachée" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "La citation a été détachée avec succès" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "Citations désactivées" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "Citations activées" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Paramètres des citations" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Citations" @@ -4811,16 +5045,16 @@ msgstr "Citations" msgid "Quotes of this post" msgstr "Citations de ce post" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aléatoire" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Ratios" +#~ msgid "Ratios" +#~ msgstr "Ratios" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Réattacher la citation" @@ -4828,46 +5062,47 @@ msgstr "Réattacher la citation" msgid "Reactivate your account" msgstr "Réactiver votre compte" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Lire le blog de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Lire la politique de confidentialité de Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Lire les conditions d’utilisation de Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Raison :" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Recherches récentes" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Se reconnecter" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Rafraîchir les notifications" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Rafraîchir les conversations" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4881,11 +5116,11 @@ msgstr "Supprimer {displayName} du kit de démarrage" msgid "Remove account" msgstr "Supprimer compte" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "Supprimer la pièce jointe" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Supprimer l’avatar" @@ -4893,7 +5128,7 @@ msgstr "Supprimer l’avatar" msgid "Remove Banner" msgstr "Supprimer l’image d’en-tête" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Supprimer l’intégration" @@ -4909,13 +5144,14 @@ msgstr "Supprimer le fil d’actu ?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Supprimer de mes fils d’actu ?" @@ -4928,7 +5164,7 @@ msgstr "Supprimer de l’accès rapide ?" msgid "Remove from saved feeds" msgstr "Supprimer des fils d’actu enregistrés" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Supprimer l’image" @@ -4936,24 +5172,24 @@ msgstr "Supprimer l’image" msgid "Remove mute word from your list" msgstr "Supprimer le mot masqué de votre liste" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Supprimer le profil" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Supprimer le profil de l’historique de recherche" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Supprimer la citation" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Supprimer le repost" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "Supprimer le fichier de sous-titres" @@ -4961,16 +5197,16 @@ msgstr "Supprimer le fichier de sous-titres" msgid "Remove this feed from your saved feeds" msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrés" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Supprimé par l’auteur·ice" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Supprimé par vous" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Supprimé de la liste" @@ -4984,25 +5220,25 @@ msgid "Removed from saved feeds" msgstr "Supprimé de vos fils d’actu enregistrés" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Supprimé de vos fils d’actu" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "Supprime le post cité" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "Supprime la pièce jointe" +#~ msgid "Removes the attachment" +#~ msgstr "Supprime la pièce jointe" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Remplacer par Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Réponses" @@ -5014,7 +5250,7 @@ msgstr "Les réponses sont désactivées" msgid "Replies to this post are disabled." msgstr "Les réponses à ce post sont désactivées." -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Répondre" @@ -5029,41 +5265,41 @@ msgstr "Réponse cachée par l’auteur·ice du fil de discussion" msgid "Reply Hidden by You" msgstr "Réponse cachée par vous" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "Paramètres de réponse" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de discussion" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Réponse à <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Réponse à un post bloqué" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "Réponse à un post" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Réponse à vous" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "Visibilité de la réponse mise à jour" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "La réponse a été cachée avec succès" @@ -5073,8 +5309,8 @@ msgstr "La réponse a été cachée avec succès" msgid "Report" msgstr "Signaler" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Signaler le compte" @@ -5084,16 +5320,16 @@ msgstr "Signaler le compte" msgid "Report conversation" msgstr "Signaler la conversation" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Fenêtre de dialogue de signalement" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Signaler le fil d’actu" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Signaler la liste" @@ -5101,13 +5337,13 @@ msgstr "Signaler la liste" msgid "Report message" msgstr "Signaler le message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Signaler le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Signaler le kit de démarrage" @@ -5123,8 +5359,8 @@ msgstr "Signaler ce fil d’actu" msgid "Report this list" msgstr "Signaler cette liste" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Signaler ce message" @@ -5141,9 +5377,9 @@ msgstr "Signaler ce kit de démarrage" msgid "Report this user" msgstr "Signaler ce compte" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Republier" @@ -5153,28 +5389,28 @@ msgstr "Republier" msgid "Repost" msgstr "Republier" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Republier ou citer" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Republié par" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Republié par {0}" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Republié par <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Republié par vous" @@ -5196,7 +5432,7 @@ msgstr "Demande de modification" msgid "Request Code" msgstr "Demander un code" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Nécessiter un texte alt avant de publier" @@ -5204,20 +5440,26 @@ msgstr "Nécessiter un texte alt avant de publier" msgid "Require email code to log into your account" msgstr "Nécessiter un code par e-mail pour se connecter au compte" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Obligatoire pour cet hébergeur" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Renvoyer l’e-mail" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "Renvoyer l’e-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "Renvoyer l’e-mail de vérification" @@ -5229,29 +5471,29 @@ msgstr "Réinitialiser le code" msgid "Reset Code" msgstr "Code de réinitialisation" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Réinitialisation du didacticiel" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Réinitialiser mot de passe" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Réinitialiser l’état des préférences" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Réinitialise l’état d’accueil" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Réinitialise l’état des préférences" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Réessaye la connection" @@ -5260,16 +5502,16 @@ msgstr "Réessaye la connection" msgid "Retries the last action, which errored out" msgstr "Réessaye la dernière action, qui a échoué" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5279,51 +5521,62 @@ msgstr "Réessayer" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Retourne à la page précédente" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Retour à la page d’accueil" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Retour à la page précédente" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Enregistrer" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Enregistrer" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Enregistrer le texte alt" +#~ msgid "Save alt text" +#~ msgstr "Enregistrer le texte alt" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Enregistrer la date de naissance" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Enregistrer les modifications" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Enregistrer les modifications" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Enregistrer le changement de pseudo" @@ -5332,92 +5585,89 @@ msgstr "Enregistrer le changement de pseudo" msgid "Save image" msgstr "Enregistrer l’image" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Enregistrer le recadrage de l’image" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Enregistrer le code QR" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "Enregistré dans votre photothèque" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Enregistré à mes fils d’actu" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Enregistre toutes les modifications apportées à votre profil" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Enregistre toutes les modifications apportées à votre profil" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Enregistre le changement de pseudo en {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Enregistre les paramètres de recadrage de l’image" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Dites bonjour !" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Science" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Remonter en haut" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Recherche" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Recherche de « {query} »" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Recherche de « {searchText} »" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Rechercher tous les posts de @{authorHandle} avec le mot-clé {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Rechercher tous les posts de @{authorHandle} avec le mot-clé {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Rechercher tous les posts avec le mot-clé {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Rechercher tous les posts avec le mot-clé {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." @@ -5425,18 +5675,16 @@ msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres per msgid "Search for users" msgstr "Rechercher des comptes" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Rechercher des GIFs" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Rechercher dans les profils" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Rechercher dans Tenor" @@ -5452,23 +5700,23 @@ msgstr "Voir les posts {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Voir les posts {truncatedTag} de ce compte" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Voir les posts <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Voir les posts <0>{displayTag} de ce compte" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Voir les offres d’emploi chez Bluesky" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Voir ce guide" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "Curseur de recherche" @@ -5480,7 +5728,7 @@ msgstr "Sélectionner {item}" msgid "Select a color" msgstr "Sélectionner une couleur" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Sélectionner un compte" @@ -5492,7 +5740,7 @@ msgstr "Sélectionner un avatar" msgid "Select an emoji" msgstr "Sélectionner un emoji" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Sélectionner un compte existant" @@ -5500,7 +5748,7 @@ msgstr "Sélectionner un compte existant" msgid "Select GIF" msgstr "Sélectionner le GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Sélectionner le GIF « {0} »" @@ -5508,15 +5756,15 @@ msgstr "Sélectionner le GIF « {0} »" msgid "Select how long to mute this word for." msgstr "Sélectionnez la durée pendant laquelle vous souhaitez masquer ce mot." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "Sélectionner la langue…" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Sélectionner les langues" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Sélectionner une modération" @@ -5524,7 +5772,7 @@ msgstr "Sélectionner une modération" msgid "Select option {i} of {numItems}" msgstr "Sélectionne l’option {i} sur {numItems}" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "Sélectionnez le fichier de sous-titres (.vtt)" @@ -5532,15 +5780,15 @@ msgstr "Sélectionnez le fichier de sous-titres (.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "Sélectionner l’emoji {emojiName} comme avatar" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Sélectionnez le(s) service(s) de modération destinataires du signalement" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Sélectionnez le service qui héberge vos données." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Sélectionner une vidéo" @@ -5548,23 +5796,23 @@ msgstr "Sélectionner une vidéo" msgid "Select what content this mute word should apply to." msgstr "Sélectionnez le contenu pour lequel ce mot masqué doit s’appliquer." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Sélectionnez les langues que vous souhaitez voir figurer dans les fils d’actu que vous suivez. Si aucune langue n’est sélectionnée, toutes les langues seront affichées." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Sélectionnez votre langue par défaut pour les textes de l’application." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Sélectionnez votre date de naissance" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu." @@ -5572,6 +5820,14 @@ msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu msgid "Send a neat website!" msgstr "Envoyez un site chouette !" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -5586,37 +5842,37 @@ msgctxt "action" msgid "Send Email" msgstr "Envoyer l’e-mail" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Envoyer des commentaires" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Envoyer le message" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Envoyer le post à…" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Envoyer le rapport" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Envoyer le rapport à {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Envoyer l’e-mail de vérification" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Envoyer par message privé" @@ -5624,35 +5880,35 @@ msgstr "Envoyer par message privé" msgid "Sends email with confirmation code for account deletion" msgstr "Envoie un e-mail avec le code de confirmation pour la suppression du compte" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Adresse du serveur" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Entrez votre date de naissance" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Définir un nouveau mot de passe" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Choisissez « Non » pour cacher toutes les citations sur votre fils d’actu. Les reposts seront toujours visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Choisissez « Non » pour cacher toutes les réponses dans votre fils d’actu." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Choisissez « Non » pour cacher toutes les reposts de votre fils d’actu." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Choisissez « Oui » pour afficher les réponses dans un fil de discussion. C’est une fonctionnalité expérimentale." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Choisissez « Oui » pour afficher des échantillons de vos fils d’actu enregistrés dans votre fil d’actu « Following ». C’est une fonctionnalité expérimentale." @@ -5660,35 +5916,34 @@ msgstr "Choisissez « Oui » pour afficher des échantillons de vos fils d’a msgid "Set up your account" msgstr "Créez votre compte" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Définit le pseudo Bluesky" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Définit l’e-mail pour la réinitialisation du mot de passe" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Définit le rapport d’aspect de l’image comme étant carré" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Définit le rapport d’aspect de l’image comme étant carré" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Définit le rapport d’aspect de l’image comme portrait" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Définit le rapport d’aspect de l’image comme portrait" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Définit le rapport d’aspect de l’image comme paysage" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Définit le rapport d’aspect de l’image comme paysage" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Paramètres" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Activité sexuelle ou nudité érotique." @@ -5696,20 +5951,19 @@ msgstr "Activité sexuelle ou nudité érotique." msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Partager" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Partager" @@ -5722,28 +5976,28 @@ msgstr "Partagez une histoire sympa !" msgid "Share a fun fact!" msgstr "Partagez une anecdote insolite !" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Partager quand même" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Partager le fil d’actu" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "Partager l’image ailleurs" +#~ msgid "Share image externally" +#~ msgstr "Partager l’image ailleurs" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "Partager l’image dans un post" +#~ msgid "Share image in post" +#~ msgstr "Partager l’image dans un post" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Partager le lien" @@ -5761,7 +6015,7 @@ msgstr "Dialogue pour le partage d’un lien" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" @@ -5773,7 +6027,7 @@ msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre commu msgid "Share your favorite feed!" msgstr "Partagez votre fil d’actu favori !" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Testeur de préférences partagées" @@ -5781,19 +6035,23 @@ msgstr "Testeur de préférences partagées" msgid "Shares the linked website" msgstr "Partage le site web lié" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Afficher" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Voir le texte alt" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Afficher quand même" @@ -5811,8 +6069,8 @@ msgstr "Afficher les badges et filtrer des fils d’actu" msgid "Show hidden replies" msgstr "Afficher les réponses cachées" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "En montrer moins comme ça" @@ -5820,14 +6078,14 @@ msgstr "En montrer moins comme ça" msgid "Show list anyway" msgstr "Afficher quand même la liste" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Voir plus" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "En montrer plus comme ça" @@ -5835,32 +6093,32 @@ msgstr "En montrer plus comme ça" msgid "Show muted replies" msgstr "Afficher les réponses masquées" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Afficher les posts de mes fils d’actu" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Afficher les citations" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Afficher les réponses" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Afficher les réponses des personnes que vous suivez avant toutes les autres réponses." -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Afficher la réponse pour tout le monde" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Afficher les reposts" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Afficher le contenu" @@ -5874,35 +6132,34 @@ msgid "Show warning and filter from feeds" msgstr "Afficher l’avertissement et filtrer des fils d’actu" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Affiche les posts de {0} dans votre fil d’actu" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Affiche les posts de {0} dans votre fil d’actu" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Connexion" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Se connecter en tant que {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Se connecter en tant que…" @@ -5914,42 +6171,41 @@ msgstr "Connectez-vous ou créez votre compte pour participer à la conversation msgid "Sign into Bluesky or create a new account" msgstr "Connectez-vous à Bluesky ou créez un nouveau compte" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Déconnexion" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "Se déconnecter de tous les comptes" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "S’inscrire" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "S’inscrire ou se connecter pour participer à la conversation" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "S’inscrire ou se connecter pour participer à la conversation" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Connexion requise" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Connecté en tant que" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Connecté en tant que @{0}" @@ -5957,8 +6213,8 @@ msgstr "Connecté en tant que @{0}" msgid "signed up with your starter pack" msgstr "s’est inscrit·e avec votre kit de démarrage" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "S’inscrire sans kit de démarrage" @@ -5966,17 +6222,22 @@ msgstr "S’inscrire sans kit de démarrage" msgid "Similar accounts" msgstr "Comptes similaires" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Ignorer" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Passer cette étape" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Développement de logiciels" @@ -5988,7 +6249,7 @@ msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" msgid "Some people can reply" msgstr "Quelques comptes peuvent répondre" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Quelque chose n’a pas marché" @@ -5997,33 +6258,37 @@ msgstr "Quelque chose n’a pas marché" msgid "Something went wrong, please try again" msgstr "Quelque chose n’a pas marché, veuillez réessayer" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Quelque chose n’a pas marché, veuillez réessayer." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Quelque chose n’a pas marché !" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Trier les réponses" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Trier les réponses au même post par :" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Source : <0>{sourceName}" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Source : <0>{sourceName}" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6035,73 +6300,77 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam ; mentions ou réponses excessives" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Sports" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Carré" +#~ msgid "Square" +#~ msgstr "Carré" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Démarrer une nouvelle discussion" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Démarrer une discussion avec {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Démarrer les discussions" +#~ msgid "Start chatting" +#~ msgstr "Démarrer les discussions" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Kit de démarrage" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Kit de démarrage par {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Le kit de démarrage n’est pas valide" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Kits de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d’actu et vos personnes préférées avec vos ami·e·s." -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "État du service" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Étape {0} sur {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacé, vous devez redémarrer l’application maintenant." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Historique" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Envoyer" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "S’abonner" @@ -6109,18 +6378,22 @@ msgstr "S’abonner" msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "S’abonner à l’étiqueteur" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "S’abonner à cet étiqueteur" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "S’abonner à cette liste" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Comptes suggérés" @@ -6129,39 +6402,41 @@ msgstr "Comptes suggérés" msgid "Suggested for you" msgstr "Suggérés pour vous" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Suggestif" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Soutien" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Changer de compte" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Basculer sur {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Bascule le compte auquel vous êtes connectés vers" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Système" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Journal système" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Menu de mot-clé : {displayTag}" @@ -6170,22 +6445,22 @@ msgid "Tags only" msgstr "Mots-clés seulement" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Grand" +#~ msgid "Tall" +#~ msgstr "Grand" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Tapper pour annuler" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "Taper pour accéder au plein écran" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "Taper pour lire ou mettre en pause" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "Taper pour désactiver ou rétablir le son" @@ -6203,7 +6478,7 @@ msgid "Teach our algorithm what you like" msgstr "Apprendre à notre algorithme ce que vous aimez" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Technologie" @@ -6211,23 +6486,27 @@ msgstr "Technologie" msgid "Tell a joke!" msgstr "Racontez une blague !" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Dites-nous en un peu plus" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "Dix millions" +#~ msgid "Ten Million" +#~ msgstr "Dix millions" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Conditions générales" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Conditions d’utilisation" @@ -6242,25 +6521,33 @@ msgstr "Termes utilisés qui violent les normes de la communauté" msgid "Text & tags" msgstr "Texte et mots-clés" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Champ de saisie de texte" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Nous vous remercions. Votre rapport a été envoyé." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "Merci d’avoir été l’une des 10 premières millions de personnes à s’inscrire à Bluesky." +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "Merci d’avoir été l’une des 10 premières millions de personnes à s’inscrire à Bluesky." #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "Merci, vous avez vérifié avec succès votre adresse e-mail." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "Merci, vous avez vérifié avec succès votre adresse e-mail." -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Qui contient les éléments suivants :" @@ -6268,21 +6555,21 @@ msgstr "Qui contient les éléments suivants :" msgid "That handle is already taken." msgstr "Ce pseudo est déjà occupé." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "Ce kit de démarrage n’a pas pu être trouvé." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "Et voilà, c’est tout !" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous après le déblocage." @@ -6291,15 +6578,15 @@ msgstr "Ce compte pourra interagir avec vous après le déblocage." msgid "The author of this thread has hidden this reply." msgstr "L’auteur·ice de ce fil de discussion a masqué cette réponse." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "L’application web Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" @@ -6312,7 +6599,7 @@ msgstr "Le fil d’actu « Discover »" msgid "The Discover feed now knows what you like" msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesky maintenant et nous reprendrons là où vous en étiez." @@ -6337,63 +6624,70 @@ msgstr "Les étapes suivantes vous aideront à personnaliser votre expérience a msgid "The post may have been deleted." msgstr "Ce post a peut-être été supprimé." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "La vidéo sélectionnée a une taille supérieure à 50 Mo." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Le formulaire d’assistance a été déplacé. Si vous avez besoin d’aide, veuillez <0/> ou rendez-vous sur {HELP_DESK_URL} pour nous contacter." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Nos conditions d’utilisation ont été déplacées vers" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "Le code de vérification que vous avez fourni n’est pas valide. Veuillez vous assurer que vous avez utilisé le bon lien de vérification ou demandez-en un nouveau." +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "Il n’y a pas de limite de temps pour la désactivation du compte, revenez quand vous voulez." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Il y a eu un problème de connexion au serveur, veuillez vérifier votre connexion Internet et réessayez." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Il y a eu un problème de connexion au serveur, veuillez vérifier votre connexion Internet et réessayez." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Il y a eu un problème lors de la suppression du fil, veuillez vérifier votre connexion Internet et réessayez." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Il y a eu un problème lors de la suppression du fil, veuillez vérifier votre connexion Internet et réessayez." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Il y a eu un problème lors de la mise à jour de vos fils d’actu, veuillez vérifier votre connexion Internet et réessayez." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Il y a eu un problème lors de la mise à jour de vos fils d’actu, veuillez vérifier votre connexion Internet et réessayez." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Il y a eu un problème de connexion à Tenor." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Il y a eu un problème de connexion au serveur" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6403,39 +6697,49 @@ msgstr "Il y a eu un problème de connexion à votre serveur" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération de la liste. Appuyez ici pour réessayer." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération de vos listes. Appuyez ici pour réessayer." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Il y a eu un problème lors de l’envoi de votre rapport. Veuillez vérifier votre connexion internet." -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Il y a eu un problème lors de la récupération de vos mots de passe d’application" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Il y a eu un problème ! {0}" @@ -6443,16 +6747,15 @@ msgstr "Il y a eu un problème ! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Il y a eu un problème. Veuillez vérifier votre connexion Internet et réessayez." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Un problème inattendu s’est produit dans l’application. N’hésitez pas à nous faire savoir si cela vous est arrivé !" @@ -6460,11 +6763,11 @@ msgstr "Un problème inattendu s’est produit dans l’application. N’hésite msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Il y a eu un afflux de nouveaux personnes sur Bluesky ! Nous activerons ton compte dès que possible." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Ce {screenDescription} a été signalé :" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil." @@ -6472,15 +6775,15 @@ msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil. msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "Ce compte est bloqué par un ou plusieurs de vos listes de modération. Pour le débloquer, veuillez visiter les listes directement et en retirer ce compte." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Cet appel sera envoyé à <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Cet appel sera envoyé au service de modération de Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Cette discussion a été déconnectée" @@ -6492,7 +6795,7 @@ msgstr "Ce contenu a été masqué par la modération." msgid "This content has received a general warning from moderators." msgstr "Ce contenu a reçu un avertissement général de la part de la modération." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Ce contenu est hébergé par {0}. Voulez-vous activer les médias externes ?" @@ -6505,11 +6808,11 @@ msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bl msgid "This content is not viewable without a Bluesky account." msgstr "Ce contenu n’est pas visible sans un compte Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Cette conversation concerne un compte supprimé ou désactivé. Appuyez pour obtenir des options." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Cette fonctionnalité est en version bêta. Vous pouvez en savoir plus sur les exportations de dépôts dans <0>ce blogpost." @@ -6522,8 +6825,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Ce fil d’actu est vide." @@ -6531,7 +6834,7 @@ msgstr "Ce fil d’actu est vide." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ce fil d’actu n’est plus disponible. Nous vous montrons <0>Discover à la place." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Ces informations ne sont pas partagées avec d’autres personnes." @@ -6539,15 +6842,15 @@ msgstr "Ces informations ne sont pas partagées avec d’autres personnes." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Ceci est important au cas où vous auriez besoin de changer d’e-mail ou de réinitialiser votre mot de passe." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Cette étiquette a été apposée par <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Cette étiquette a été apposée par l’auteur·ice." -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Cette étiquette a été apposée par vous." @@ -6563,7 +6866,7 @@ msgstr "Ce lien vous conduit au site Web suivant :" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Cette liste – créée par <0>{0} – contient des violations possibles des directives communautaires de Bluesky dans son nom ou sa description." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Cette liste est vide !" @@ -6575,28 +6878,28 @@ msgstr "Ce service de modération n’est pas disponible. Voir ci-dessous pour p msgid "This name is already in use" msgstr "Ce nom est déjà utilisé" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Ce post a été supprimé." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Ce post n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ce post sera masqué des fils d’actu et des fils de discussion. C’est irréversible." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "L’auteur·ice de ce post a désactivé les citations." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Ce profil n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Cette réponse sera classée dans une section cachée au bas de votre fil de discussion et masquera les notifications pour les réponses suivantes – à la fois pour vous-même et pour les autres." @@ -6604,7 +6907,7 @@ msgstr "Cette réponse sera classée dans une section cachée au bas de votre fi msgid "This service has not provided terms of service or a privacy policy." msgstr "Ce service n’a pas fourni de conditions d’utilisation ni de politique de confidentialité." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Cela devrait créer un enregistrement de domaine à :" @@ -6649,28 +6952,28 @@ msgstr "Cela supprimera « {0} » de vos mots masqués. Vous pourrez toujours msgid "This will remove @{0} from the quick access list." msgstr "Cela supprimera @{0} de la liste d’accès rapide." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Cela retirera votre post de cette citation pour tout le monde, et le remplacera par un espace vide." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Préférences des fils de discussion" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Préférences des fils de discussion" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Pour désactiver le 2FA par e-mail, veuillez vérifier votre accès à l’adresse e-mail." @@ -6678,41 +6981,45 @@ msgstr "Pour désactiver le 2FA par e-mail, veuillez vérifier votre accès à l msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Pour signaler une conversation, veuillez signaler un de ses messages via l’écran de conversation. Cela permettra à la modération de comprendre le contexte du problème." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Pour envoyer des vidéos sur Bluesky, vous devez d’abord vérifier votre e-mail." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "À qui souhaitez-vous envoyer ce rapport ?" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + #: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "Ensemble, nous reconstruisons le web social. Nous sommes ravis que vous soyez parmi nous." +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "Ensemble, nous reconstruisons le web social. Nous sommes ravis que vous soyez parmi nous." #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "Activer le menu déroulant" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Activer ou désactiver le contenu pour adultes" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Meilleur" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Transformations" +#~ msgid "Transformations" +#~ msgstr "Transformations" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Traduire" @@ -6721,40 +7028,40 @@ msgctxt "action" msgid "Try again" msgstr "Réessayer" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Écrivez votre message ici" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Type :" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Débloquer la liste" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Réafficher cette liste" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexion Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Impossible de supprimer" @@ -6762,14 +7069,14 @@ msgstr "Impossible de supprimer" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Débloquer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Débloquer" @@ -6779,17 +7086,17 @@ msgstr "Débloquer" msgid "Unblock account" msgstr "Débloquer le compte" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Débloquer le compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Débloquer le compte ?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6800,40 +7107,40 @@ msgctxt "action" msgid "Unfollow" msgstr "Se désabonner" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Se désabonner de {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Se désabonner du compte" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Déliker ce fil d’actu" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:165 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Réafficher" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "Rétablir le son" -#: src/components/TagMenu/index.tsx:263 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Réafficher" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Réafficher {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Réafficher ce compte" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Réafficher tous les posts {displayTag}" @@ -6841,37 +7148,42 @@ msgstr "Réafficher tous les posts {displayTag}" msgid "Unmute conversation" msgstr "Réafficher la conversation" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Rétablir le son de la vidéo" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -msgid "Unmuted" -msgstr "Son rétabli" +#~ msgid "Unmuted" +#~ msgstr "Son rétabli" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Désépingler" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Désépingler de l’accueil" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Supprimer la liste de modération" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Désépinglé de vos fils d’actu" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Se désabonner" @@ -6880,7 +7192,7 @@ msgstr "Se désabonner" msgid "Unsubscribe from list" msgstr "Se désabonner de la liste" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Se désabonner de cet étiqueteur" @@ -6888,7 +7200,7 @@ msgstr "Se désabonner de cet étiqueteur" msgid "Unsubscribed from list" msgstr "Désabonné de la liste" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "Type de vidéo non pris en charge : {mimeType}" @@ -6898,75 +7210,92 @@ msgid "Unwanted Sexual Content" msgstr "Contenu sexuel non désiré" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Mise à jour de {displayName} dans les listes" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Mise à jour de {displayName} dans les listes" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Mettre à jour pour {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "La mise à jour de l’attachement de la citation a échoué" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "La mise à jour de la visibilité de la réponse a échoué" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Mise à jour…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Envoyer plutôt une photo" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Envoyer un fichier texte vers :" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Envoyer à partir de l’appareil photo" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Envoyer à partir de fichiers" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Envoyer à partir de la photothèque" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Utiliser un fichier sur votre serveur" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Utilisez les mots de passe de l’appli pour se connecter à d’autres clients Bluesky sans donner un accès complet à votre compte ou à votre mot de passe." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Utiliser bsky.social comme hébergeur" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Utiliser le fournisseur par défaut" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Utiliser le navigateur interne à l’appli" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Utiliser mon navigateur par défaut" @@ -6974,7 +7303,7 @@ msgstr "Utiliser mon navigateur par défaut" msgid "Use recommended" msgstr "Utiliser les recommandés" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Utiliser le panneau DNS" @@ -7011,36 +7340,36 @@ msgstr "Compte qui vous bloque" msgid "User Blocks You" msgstr "Compte qui vous bloque" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Liste de compte de {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Liste de compte par <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Liste de compte par vous" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Liste de compte créée" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Liste de compte mise à jour" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Listes de comptes" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Pseudo ou e-mail" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Comptes" @@ -7048,46 +7377,45 @@ msgstr "Comptes" msgid "users followed by <0>@{0}" msgstr "comptes suivis par <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Comptes que je suis" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Comptes dans « {0} »" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Comptes qui ont liké ce contenu ou ce profil" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Valeur :" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "Vérification de l’adresse e-mail requise" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Vérifier l’enregistrement DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Confirmer l’e-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Boîte de dialogue de vérification de l’adresse e-mail" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Confirmer mon e-mail" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Confirmer mon e-mail" @@ -7096,33 +7424,34 @@ msgstr "Confirmer mon e-mail" msgid "Verify New Email" msgstr "Confirmer le nouvel e-mail" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "Vérifier maintenant" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Vérifier le fichier texte" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Vérifiez votre e-mail" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Version {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "Vidéo" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "Le traitement de la vidéo a échoué" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Jeux vidéo" @@ -7130,20 +7459,24 @@ msgstr "Jeux vidéo" msgid "Video not found." msgstr "Vidéo non trouvée." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "Paramètres vidéo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "Vidéo : {0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "Les vidéos doivent durer moins de 60 secondes" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" @@ -7156,15 +7489,23 @@ msgstr "Voir le profil de {0}" msgid "View {displayName}'s profile" msgstr "Voir le profil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Voir le profil du compte bloqué" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Voir l’article de blog pour plus de détails" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Afficher l’entrée de débogage" @@ -7184,11 +7525,13 @@ msgstr "Voir le fil de discussion entier" msgid "View information about these labels" msgstr "Voir les informations sur ces étiquettes" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Voir le profil" @@ -7196,28 +7539,28 @@ msgstr "Voir le profil" msgid "View the avatar" msgstr "Afficher l’avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Voir le service d’étiquetage fourni par @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Voir les comptes qui a liké ce fil d’actu" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Consulter vos comptes bloqués" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Consultez vos fils d’actu et explorez-en plus" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Consulter vos listes de modération" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Consulter vos comptes masqués" @@ -7240,11 +7583,11 @@ msgstr "Avertir du contenu" msgid "Warn content and filter from feeds" msgstr "Avertir du contenu et filtrer des fils d’actu" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Nous ne pouvons pas charger cette conversation" @@ -7252,11 +7595,11 @@ msgstr "Nous ne pouvons pas charger cette conversation" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Nous estimons que votre compte sera prêt dans {estimatedTime}." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Nous avons envoyé un autre e-mail de vérification à <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas que Bluesky est :" @@ -7264,19 +7607,19 @@ msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas qu msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Nous n’avons plus de posts provenant des comptes que vous suivez. Voici le dernier de <0/>." -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer des vidéos. Veuillez réessayer." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Nous n’avons pas pu charger vos préférences en matière de date de naissance. Veuillez réessayer." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Nous n’avons pas pu charger vos étiqueteurs configurés pour le moment." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer à configurer votre compte. Si l’échec persiste, vous pouvez sauter cette étape." @@ -7284,19 +7627,23 @@ msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer msgid "We will let you know when your account is ready." msgstr "Nous vous informerons lorsque votre compte sera prêt." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Nous utiliserons ces informations pour personnaliser votre expérience." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. Si cela persiste, veuillez contacter l’origine de la liste, @{handleOrDid}." @@ -7304,20 +7651,20 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. S msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqués pour le moment. Veuillez réessayer." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Nous sommes désolés, mais votre recherche a été annulée. Veuillez réessayer dans quelques minutes." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt." @@ -7329,7 +7676,7 @@ msgstr "Bienvenue !" msgid "Welcome, friend!" msgstr "Bienvenue et enchanté !" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Quels sont vos centres d’intérêt ?" @@ -7337,17 +7684,17 @@ msgstr "Quels sont vos centres d’intérêt ?" msgid "What do you want to call your starter pack?" msgstr "Quel est le nom de votre kit de démarrage ?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Quoi de neuf ?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Quelles sont les langues utilisées dans ce post ?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quelles langues aimeriez-vous voir apparaître dans vos fils d’actu algorithmiques ?" @@ -7357,15 +7704,15 @@ msgstr "Qui peut interagir avec ce post ?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Qui peut discuter avec vous ?" +#~ msgid "Who can message you?" +#~ msgstr "Qui peut discuter avec vous ?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "Qui peut répondre ?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Oups !" @@ -7398,35 +7745,35 @@ msgid "Why should this user be reviewed?" msgstr "Pourquoi ce compte doit-il être examiné ?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Large" +#~ msgid "Wide" +#~ msgstr "Large" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Écrire un message" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Rédiger un post" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Rédigez votre réponse" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Écrivain·e·s" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Oui" @@ -7435,15 +7782,15 @@ msgstr "Oui" msgid "Yes, deactivate" msgstr "Oui, désactiver" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Oui, détacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Oui, cacher" @@ -7451,11 +7798,14 @@ msgstr "Oui, cacher" msgid "Yes, reactivate my account" msgstr "Oui, réactiver mon compte" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Hier, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Hier, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "vous" @@ -7468,7 +7818,7 @@ msgstr "Vous" msgid "You are in line." msgstr "Vous êtes dans la file d’attente." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "Vous n’êtes pas autorisé à envoyer des vidéos." @@ -7476,6 +7826,10 @@ msgstr "Vous n’êtes pas autorisé à envoyer des vidéos." msgid "You are not following anyone." msgstr "Vous ne suivez personne." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -7486,15 +7840,15 @@ msgid "You can also temporarily deactivate your account instead, and reactivate msgstr "Vous pouvez également désactiver temporairement votre compte et le réactiver quand vous voulez." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Vous pouvez changer cela à tout moment." +#~ msgid "You can change this at any time." +#~ msgstr "Vous pouvez changer cela à tout moment." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Vous pouvez poursuivre les conversations en cours quel que soit le paramètre que vous choisissez." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." @@ -7506,7 +7860,7 @@ msgstr "Vous pouvez réactiver votre compte pour continuer à vous connecter. Vo msgid "You do not have any followers." msgstr "Vous n’avez pas d’abonné·e·s." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Vous ne suivez aucun des comptes qui suivent @{name}." @@ -7514,11 +7868,11 @@ msgstr "Vous ne suivez aucun des comptes qui suivent @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Vous n’avez encore aucun code d’invitation ! Nous vous en enverrons lorsque vous serez sur Bluesky depuis un peu plus longtemps." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Vous n’avez encore aucun fil d’actu épinglé." -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Vous n’avez encore aucun fil d’actu enregistré." @@ -7536,8 +7890,8 @@ msgstr "Vous avez bloqué ce compte" msgid "You have blocked this user. You cannot view their content." msgstr "Vous avez bloqué ce compte. Vous ne pouvez pas voir son contenu." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -7560,7 +7914,7 @@ msgstr "Vous avez masqué ce compte." msgid "You have muted this user" msgstr "Vous avez masqué ce compte" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Vous n’avez pas encore de conversations. Démarrez en une !" @@ -7568,20 +7922,20 @@ msgstr "Vous n’avez pas encore de conversations. Démarrez en une !" msgid "You have no feeds." msgstr "Vous n’avez aucun fil d’actu." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Vous n’avez aucune liste." -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Vous n’avez pas encore bloqué de comptes. Pour bloquer un compte, allez sur son profil et sélectionnez « Bloquer le compte » dans le menu de son compte." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Vous n’avez encore créé aucun mot de passe pour l’appli. Vous pouvez en créer un en cliquant sur le bouton suivant." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez sur son profil et sélectionnez « Masquer le compte » dans le menu de son compte." @@ -7589,11 +7943,11 @@ msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez msgid "You have reached the end" msgstr "Vous avez atteint la fin" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vous avez temporairement atteint la limite d’envoi de vidéos. Veuillez réessayer plus tard." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Vous n’avez pas encore créé de kit de démarrage !" @@ -7622,11 +7976,15 @@ msgstr "Vous ne pouvez ajouter que {STARTER_PACK_MAX_SIZE} profils au maximum" msgid "You may only add up to 3 feeds" msgstr "Vous ne pouvez ajouter que 3 fils d’actu au maximum" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Vous devez avoir 13 ans ou plus pour vous inscrire." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." @@ -7634,12 +7992,11 @@ msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit d msgid "You must grant access to your photo library to save a QR code" msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer l’image." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Vous devez sélectionner au moins un étiqueteur pour un rapport" @@ -7647,47 +8004,51 @@ msgstr "Vous devez sélectionner au moins un étiqueteur pour un rapport" msgid "You previously deactivated @{0}." msgstr "Vous avez précédemment désactivé @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez désormais des notifications pour ce fil de discussion" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Vous recevrez un e-mail contenant un « code de réinitialisation ». Saisissez ce code ici, puis votre nouveau mot de passe." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Vous : {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Vous : {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Vous : {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Vous suivrez ces personnes et {0} autres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" @@ -7702,7 +8063,7 @@ msgstr "Vous êtes dans la file d’attente" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Vous êtes connecté·e avec un mot de passe d’application. Veuillez vous connecter avec votre mot de passe principal pour continuer à désactiver votre compte." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Vous êtes prêt à partir !" @@ -7715,15 +8076,15 @@ msgstr "Vous avez choisi de masquer un mot ou un mot-clé dans ce post." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d’octets)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Votre compte" @@ -7731,15 +8092,15 @@ msgstr "Votre compte" msgid "Your account has been deleted" msgstr "Votre compte a été supprimé" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Votre compte n’est pas encore assez ancien pour envoyer des vidéos. Veuillez réessayer plus tard." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Le dépôt de votre compte, qui contient toutes les données publiques, peut être téléchargé sous la forme d’un fichier « CAR ». Ce fichier n’inclut pas les éléments multimédias, tels que les images, ni vos données privées, qui doivent être récupérées séparément." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Votre date de naissance" @@ -7747,17 +8108,17 @@ msgstr "Votre date de naissance" msgid "Your browser does not support the video format. Please try a different browser." msgstr "Votre navigateur ne prend pas en charge le format vidéo. Veuillez essayer un autre navigateur." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Vos discussions ont été désactivées" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Votre choix sera enregistré, mais vous pourrez le modifier ultérieurement dans les paramètres." -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Votre e-mail semble être invalide." @@ -7782,7 +8143,7 @@ msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes msgid "Your full handle will be" msgstr "Votre nom complet sera" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Votre pseudo complet sera <0>@{0}" @@ -7794,15 +8155,15 @@ msgstr "Vos mots masqués" msgid "Your password has been changed successfully!" msgstr "Votre mot de passe a été modifié avec succès !" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Votre post a été publié" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Vos posts, les likes et les blocages sont publics. Les silences (comptes masqués) sont privés." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Votre profil" @@ -7810,14 +8171,14 @@ msgstr "Votre profil" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Votre profil, vos posts, vos fils d’actu et vos listes ne seront plus visibles par d’autres personnes sur Bluesky. Vous pouvez réactiver votre compte à tout moment en vous connectant." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Votre réponse a été publiée" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Votre rapport sera envoyé au Service de Modération de Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Votre pseudo" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 994ddfeacc..f56e83393a 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? 3 : 4\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(tá ábhar leabaithe ann)" @@ -20,7 +20,8 @@ msgstr "(tá ábhar leabaithe ann)" msgid "(no email)" msgstr "(gan ríomhphost)" -#: src/view/com/notifications/FeedItem.tsx:232 src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:232 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {duine amháin eile} two {beirt eile} few {{formattedCount} dhuine eile} many {{formattedCount} nduine eile} other {{formattedCount} duine eile}}" @@ -32,10 +33,20 @@ msgstr "{0, plural, one {lá amháin} two {# lá} few {# lá} many {# lá} other msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uair an chloig} two {# uair an chloig} few {# uair an chloig} many {# n-uair an chloig} other {# uair an chloig}}" +#: src/components/moderation/LabelsOnMe.tsx:55 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" +#~ msgstr "{0, plural, one {Cuireadh # lipéad amháin ar an gcuntas seo} two {Cuireadh # lipéad ar an gcuntas seo} few {Cuireadh # lipéad ar an gcuntas seo} many {Cuireadh # lipéad ar an gcuntas seo} other {Cuireadh # lipéad ar an gcuntas seo}}" + #: src/components/moderation/LabelsOnMe.tsx:54 msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" msgstr "{0, plural, one {Cuireadh lipéad amháin ar an gcuntas seo} two {Cuireadh # lipéad ar an gcuntas seo} few {Cuireadh # lipéad ar an gcuntas seo} many {Cuireadh # lipéad ar an gcuntas seo} other {Cuireadh # lipéad ar an gcuntas seo}}" +#: src/components/moderation/LabelsOnMe.tsx:61 +#, fuzzy +#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" +#~ msgstr "{0, plural, one {Cuireadh # lipéad amháin ar an ábhar seo} two {Cuireadh # lipéad ar an ábhar seo} few {Cuireadh # lipéad ar an ábhar seo} many {Cuireadh # lipéad ar an ábhar seo} other {Cuireadh # lipéad ar an ábhar seo}}" + #: src/components/moderation/LabelsOnMe.tsx:60 msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" msgstr "{0, plural, one {Cuireadh lipéad amháin ar an ábhar seo} two {Cuireadh # lipéad ar an ábhar seo} few {Cuireadh # lipéad ar an ábhar seo} many {Cuireadh # lipéad ar an ábhar seo} other {Cuireadh # lipéad ar an ábhar seo}}" @@ -48,7 +59,7 @@ msgstr "{0, plural, one {# nóiméad} two {# nóiméad} few {# nóiméad} many { msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {mí amháin} two {# mhí} few {# mhí} many {# mí} other {# mí}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}}" @@ -56,23 +67,31 @@ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostái msgid "{0, plural, one {# second} other {# seconds}}" msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many {# soicind} other {# soicind}}" -#: src/components/ProfileHoverCard/index.web.tsx:398 src/screens/Profile/Header/Metrics.tsx:23 +#: src/components/KnownFollowers.tsx:179 +#, fuzzy +#~ msgid "{0, plural, one {and # other} other {and # others}}" +#~ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}}" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}" -#: src/components/ProfileHoverCard/index.web.tsx:402 src/screens/Profile/Header/Metrics.tsx:27 +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Mol (# mholadh)} two {Mol (# mholadh)} few {Mol (# mholadh)} many {Mol (# moladh)} other {Mol (# moladh)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" -#: src/components/FeedCard.tsx:210 src/view/com/feeds/FeedSourceCard.tsx:300 +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}" @@ -80,19 +99,19 @@ msgstr "{0, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsá msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {phostáil} two {phostáil} few {phostáil} many {bpostáil} other {postáil}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {athfhriotal} two {athfhriotal} few {athfhriotal} many {athfhriotal} other {athfhriotal}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Freagair (# fhreagra)} two {Freagair (# fhreagra)} few {Freagair (# fhreagra)} many {Freagair (# bhfreagra)} other {Freagair (# freagra)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Dímhol (# mholadh)} two {Dímhol (# mholadh)} few {Dímhol (# mholadh)} many {Dímhol (# moladh)} other {Dímhol (# moladh)}}" @@ -106,19 +125,24 @@ msgstr "{0} <0>i <1>gclibeanna" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>dtéacs agus i gclibeanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "Chláraigh {0} an tseachtain seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0} as {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "D'úsáid {0} duine an pacáiste fáilte seo!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/screens/ProfileList.tsx:286 +#, fuzzy +#~ msgid "{0} your feeds" +#~ msgstr "Sábháilte le mo chuid fothaí" + +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "abhatár {0}" @@ -155,11 +179,32 @@ msgstr "{0}mí" msgid "{0}s" msgstr "{0}s" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}" -#: src/lib/generate-starterpack.ts:108 src/screens/StarterPack/Wizard/index.tsx:174 +#: src/lib/hooks/useTimeAgo.ts:69 +#~ msgid "{diff, plural, one {day} other {days}}" +#~ msgstr "{diff, plural, one {lá} two {lá} few {lá} many {lá} other {lá}}" + +#: src/lib/hooks/useTimeAgo.ts:64 +#~ msgid "{diff, plural, one {hour} other {hours}}" +#~ msgstr "{diff, plural, one {uair} two {uair} few {uair} many {n-uair} other {uair}}" + +#: src/lib/hooks/useTimeAgo.ts:59 +#~ msgid "{diff, plural, one {minute} other {minutes}}" +#~ msgstr "{diff, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" + +#: src/lib/hooks/useTimeAgo.ts:75 +#~ msgid "{diff, plural, one {month} other {months}}" +#~ msgstr "{diff, plural, one {mhí} two {mhí} few {mhí} many {mí} other {mí}}" + +#: src/lib/hooks/useTimeAgo.ts:54 +#~ msgid "{diffSeconds, plural, one {second} other {seconds}}" +#~ msgstr "{diffSeconds, plural, one {soicind} two {shoicind} few {shoicind} many {soicind} other {soicind}}" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Pacáiste Fáilte {displayName}" @@ -171,19 +216,22 @@ msgstr "{estimatedTimeHrs, plural, one {uair} two {uair} few {uair} many {uair} msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 src/screens/Profile/Header/Metrics.tsx:50 +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} á leanúint" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "Ní féidir TD a chur chuig {handle}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} gan léamh" @@ -195,29 +243,51 @@ msgstr "Chláraigh {profileName} le Bluesky {0} ó shin" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "Chláraigh {profileName} le Bluesky le pacáiste fáilte {0} ó shin" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/view/screens/PreferencesFollowingFeed.tsx:67 +#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" +#~ msgstr "{value, plural, =0 {Taispeáin gach freagra} one {Taispeáin freagraí a bhfuil ar a laghad moladh amháin acu} two {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} few {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} many {Taispeáin freagraí a bhfuil ar a laghad # moladh acu} other {Taispeáin freagraí a bhfuil ar a laghad # moladh acu}}" + +#: src/components/WhoCanReply.tsx:296 +#~ msgid "<0/> members" +#~ msgstr "<0/> ball" + +#: src/screens/StarterPack/Wizard/index.tsx:485 +#, fuzzy +#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ msgstr "Cuireadh <0>{0} agus<1> <2>{1} i do phacáiste fáilte" + +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {fotha amháin eile} two {# fhotha eile} few {# fhotha eile} many {# bhfotha eile} other {# fotha eile}} i do phacáiste fáilte" -#: src/view/shell/Drawer.tsx:109 +#: src/screens/StarterPack/Wizard/index.tsx:497 +#, fuzzy +#~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" +#~ msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte" + +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "Cuireadh <0>{0} agus<1> <2>{1} i do phacáiste fáilte" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/view/shell/Drawer.tsx:96 +#~ msgid "<0>{0} following" +#~ msgstr "<0>{0} á leanúint" + +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "Cuireadh <0>{0} i do phacáiste fáilte" @@ -225,15 +295,39 @@ msgstr "Cuireadh <0>{0} i do phacáiste fáilte" msgid "<0>{0} members" msgstr "<0>{0} ball" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Neamhbhainteach. Níl an rabhadh seo ar fáil ach le haghaidh postálacha a bhfuil meáin ceangailte leo." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/components/ProfileHoverCard/index.web.tsx:437 +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "<0>{following} <1>{pluralizedFollowers}" + +#: src/components/ProfileHoverCard/index.web.tsx:NaN +#~ msgid "<0>{following} <1>following" +#~ msgstr "<0>{following} <1>á leanúint" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "<0>Roghnaigh do chuid<1>Fothaí<2>Molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "<0>Lean cúpla<1>Úsáideoirí<2>Molta" + +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Neamhbhainteach. Níl an rabhadh seo ar fáil ach le haghaidh postálacha a bhfuil meáin ceangailte leo." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "<0>Fáilte go<1>Bluesky" + +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "Cuireadh <0>tusa agus<1> <2>{0} i do phacáiste fáilte" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Leasainm Neamhbhailí" @@ -241,7 +335,7 @@ msgstr "⚠Leasainm Neamhbhailí" msgid "24 hours" msgstr "24 uair an chloig" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Dearbhú 2FA" @@ -253,7 +347,12 @@ msgstr "30 lá" msgid "7 days" msgstr "7 lá" -#: src/view/com/util/ViewHeader.tsx:92 src/view/screens/Search/Search.tsx:684 +#: src/tours/Tooltip.tsx:70 +#~ msgid "A help tooltip" +#~ msgstr "Leid uirlise" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Oscail nascanna agus socruithe" @@ -261,35 +360,43 @@ msgstr "Oscail nascanna agus socruithe" msgid "Access profile and other navigation links" msgstr "Oscail próifíl agus nascanna eile" -#: src/view/com/modals/EditImage.tsx:300 src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Socruithe inrochtaineachta" -#: src/Navigation.tsx:318 src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/screens/Login/LoginForm.tsx:179 src/view/screens/Settings/index.tsx:315 src/view/screens/Settings/index.tsx:718 +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "account" +#~ msgstr "cuntas" + +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Cuntas" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Cuntas blocáilte" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Cuntas leanaithe" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Balbhaíodh an cuntas" -#: src/components/moderation/ModerationDetailsDialog.tsx:102 src/lib/moderation/useModerationCauseDescription.ts:96 +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 msgid "Account Muted" msgstr "Balbhaíodh an Cuntas" @@ -305,23 +412,27 @@ msgstr "Roghanna cuntais" msgid "Account removed from quick access" msgstr "Baineadh an cuntas ón mearliosta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Cuntas díbhlocáilte" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Cuntas díleanaithe" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Níl an cuntas balbhaithe a thuilleadh" -#: src/components/dialogs/MutedWords.tsx:328 src/view/com/modals/ListAddRemoveUsers.tsx:269 src/view/com/modals/UserAddRemoveLists.tsx:229 src/view/screens/ProfileList.tsx:937 +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Cuir leis" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Cuir {0} eile leis chun dul ar aghaidh" @@ -329,30 +440,55 @@ msgstr "Cuir {0} eile leis chun dul ar aghaidh" msgid "Add {displayName} to starter pack" msgstr "Cuir {displayName} leis an bpacáiste fáilte" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Cuir rabhadh faoin ábhar leis" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Cuir cuntas leis an liosta seo" -#: src/components/dialogs/SwitchAccount.tsx:56 src/screens/Deactivated.tsx:199 src/view/screens/Settings/index.tsx:401 src/view/screens/Settings/index.tsx:410 +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Cuir cuntas leis seo" -#: src/view/com/composer/GifAltText.tsx:69 src/view/com/composer/GifAltText.tsx:135 src/view/com/composer/GifAltText.tsx:175 src/view/com/composer/photos/Gallery.tsx:120 src/view/com/composer/photos/Gallery.tsx:187 src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Cuir téacs malartach leis seo" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/GifAltText.tsx:175 +#, fuzzy +#~ msgid "Add ALT text" +#~ msgstr "Cuir téacs malartach leis seo" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "Cuir téacs malartach leis seo (roghnach)" -#: src/view/screens/AppPasswords.tsx:105 src/view/screens/AppPasswords.tsx:147 src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Cuir pasfhocal aipe leis seo" +#: src/view/com/composer/Composer.tsx:467 +#~ msgid "Add link card" +#~ msgstr "Cuir cárta leanúna leis seo" + +#: src/view/com/composer/Composer.tsx:472 +#~ msgid "Add link card:" +#~ msgstr "Cuir cárta leanúna leis seo:" + #: src/components/dialogs/MutedWords.tsx:321 msgid "Add mute word for configured settings" msgstr "Cuir focal atá le balbhú anseo le haghaidh socruithe a rinne tú" @@ -362,14 +498,14 @@ msgid "Add muted words and tags" msgstr "Cuir focail agus clibeanna a balbhaíodh leis seo" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "Cuir cuntais a thaitneodh le daoine eile le do phacáiste fáilte" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "Cuir cuntais a thaitneodh le daoine eile le do phacáiste fáilte" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Cuir fothaí molta leis seo" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Cuir roinnt fothaí le do phacáiste fáilte!" @@ -377,15 +513,16 @@ msgstr "Cuir roinnt fothaí le do phacáiste fáilte!" msgid "Add the default feed of only people you follow" msgstr "Ná cuir ach fotha réamhshocraithe de na daoine a leanann tú leis seo" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Cuir an taifead DNS seo a leanas le d'fhearann:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Cuir an fotha seo le do chuid fothaí" -#: src/view/com/profile/ProfileMenu.tsx:267 src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Cuir le liostaí" @@ -393,7 +530,12 @@ msgstr "Cuir le liostaí" msgid "Add to my feeds" msgstr "Cuir le mo chuid fothaí" -#: src/view/com/modals/ListAddRemoveUsers.tsx:192 src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 +#~ msgid "Added" +#~ msgstr "Curtha leis" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Curtha leis an liosta" @@ -401,19 +543,32 @@ msgstr "Curtha leis an liosta" msgid "Added to my feeds" msgstr "Curtha le mo chuid fothaí" -#: src/lib/moderation/useGlobalLabelStrings.ts:34 src/lib/moderation/useModerationCauseDescription.ts:144 src/view/com/modals/SelfLabel.tsx:76 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 +#~ msgid "Adjust the number of likes a reply must have to be shown in your feed." +#~ msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feiceáil i d'fhotha." + +#: src/components/moderation/ContentHider.tsx:83 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Ábhar do dhaoine fásta" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Ní féidir ábhar do dhaoine fásta a chur ar fáil ach tríd an nGréasán ag <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." -#: src/screens/Moderation/index.tsx:409 src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Ardleibhéal" @@ -421,55 +576,76 @@ msgstr "Ardleibhéal" msgid "Algorithm training complete!" msgstr "Tá an t-algartam traenáilte!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Leanadh na cuntais go léir!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Na fothaí go léir a shábháil tú, in áit amháin." -#: src/view/com/modals/AddAppPasswords.tsx:188 src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Ceadaigh fáil ar do chuid TDanna" -#: src/screens/Messages/Settings.tsx:62 src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:NaN +#, fuzzy +#~ msgid "Allow messages from" +#~ msgstr "Ceadaigh teachtaireachtaí nua ó" + +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Ceadaigh teachtaireachtaí nua ó" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Ceadaigh freagraí ó:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "Ceadaíonn sé seo fáil ar do chuid teachtaireachtaí díreacha" -#: src/screens/Login/ForgotPasswordForm.tsx:177 src/view/com/modals/ChangePassword.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "An bhfuil cód agat cheana?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Logáilte isteach cheana mar @{0}" -#: src/view/com/composer/GifAltText.tsx:93 src/view/com/composer/photos/Gallery.tsx:144 src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 src/view/com/composer/videos/SubtitleDialog.tsx:56 src/view/com/composer/videos/SubtitleDialog.tsx:104 src/view/com/composer/videos/SubtitleDialog.tsx:108 src/view/com/modals/EditImage.tsx:316 src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Téacs malartach" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Téacs Malartach" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dall nó a bhfuil lagú radhairc orthu agus cuireann sé an comhthéacs ar fáil do chuile dhuine." -#: src/view/com/modals/VerifyEmail.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe faoi iamh. Is féidir leat an cód a chur isteach thíos anseo." @@ -477,19 +653,27 @@ msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe fao msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Cuireadh teachtaireacht ríomhphoist chuig do sheanseoladh. {0}. Tá cód dearbhaithe faoi iamh." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Tharla earráid" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/components/dialogs/GifSelect.tsx:252 +#~ msgid "An error occured" +#~ msgstr "Tharla earráid" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Tharla earráid" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "Tharla earráid agus an físeán á chomhbhrú." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn ort triail eile a bhaint as?" @@ -502,22 +686,33 @@ msgid "An error occurred while loading the video. Please try again." msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "Tharla earráid agus an íomhá á sábháil!" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "Tharla earráid agus an íomhá á sábháil!" -#: src/components/StarterPack/QrCodeDialog.tsx:71 src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:79 +#, fuzzy +#~ msgid "An error occurred while saving the image." +#~ msgstr "Tharla earráid agus an cód QR á shábháil!" + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Tharla earráid agus an cód QR á shábháil!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "Tharla earráid agus an físeán á roghnú" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/components/dms/MessageMenu.tsx:134 +#~ msgid "An error occurred while trying to delete the message. Please try again." +#~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as." + +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Tharla earráid agus na cuntais go léir á leanúint" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "Tharla earráid agus an físeán á uaslódáil." @@ -529,31 +724,40 @@ msgstr "Rud nach bhfuil ar fáil sna roghanna seo" msgid "An issue occurred starting the chat" msgstr "Tharla fadhb agus an comhrá á thosú" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Tharla fadhb agus an comhrá á oscailt" -#: src/components/hooks/useFollowMethods.ts:35 src/components/hooks/useFollowMethods.ts:50 src/components/ProfileCard.tsx:324 src/components/ProfileCard.tsx:344 src/view/com/profile/FollowButton.tsx:36 src/view/com/profile/FollowButton.tsx:46 +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Déan iarracht eile, le do thoil." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "tharla earráid nach eol dúinn" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "lipéadóir anaithnid" -#: src/components/WhoCanReply.tsx:295 src/view/com/notifications/FeedItem.tsx:231 src/view/com/notifications/FeedItem.tsx:320 +#: src/components/WhoCanReply.tsx:295 +#: src/view/com/notifications/FeedItem.tsx:231 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "agus" -#: src/screens/Onboarding/index.tsx:29 src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Ainmhithe" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF beo" @@ -561,15 +765,20 @@ msgstr "GIF beo" msgid "Anti-Social Behavior" msgstr "Iompar Frithshóisialta" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Tá gach duine in ann idirghníomhú leis" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Teanga na haipe" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Pasfhocal na haipe scriosta" @@ -581,58 +790,89 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí msgid "App Password names must be at least 4 characters long." msgstr "Caithfear 4 charachtar ar a laghad a bheith in ainmneacha phasfhocal na haipe." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Socruithe phasfhocal na haipe" -#: src/Navigation.tsx:286 src/view/screens/AppPasswords.tsx:191 src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Pasfhocal na haipe" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Achomharc" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Achomharc in aghaidh lipéid \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Achomharc déanta" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 src/screens/Messages/Conversation/ChatDisabled.tsx:53 src/screens/Messages/Conversation/ChatDisabled.tsx:99 src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/components/moderation/LabelsOnMeDialog.tsx:193 +#~ msgid "Appeal submitted." +#~ msgstr "Achomharc déanta" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Déan achomharc i gcoinne an chinnidh seo" -#: src/screens/Settings/AppearanceSettings.tsx:69 src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Cuma" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Socruithe cuma" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Socruithe Cuma" -#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 src/screens/Home/NoFeedsPinned.tsx:93 +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" -#: src/view/screens/AppPasswords.tsx:277 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosadh?" + +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "An bhfuil tú cinnte gur mhaith leat pasfhocal na haipe “{name}” a scriosadh?" +#: src/components/dms/MessageMenu.tsx:123 +#, fuzzy +#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." +#~ msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach." + #: src/components/dms/MessageMenu.tsx:149 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosadh?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:189 +#, fuzzy +#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." +#~ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach." + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach." @@ -641,11 +881,11 @@ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar msgid "Are you sure you want to remove {0} from your feeds?" msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "An bhfuil tú cinnte gur mhaith leat an dréacht seo a scriosadh?" @@ -657,11 +897,12 @@ msgstr "Lánchinnte?" msgid "Are you writing in <0>{0}?" msgstr "An bhfuil tú ag scríobh sa teanga <0>{0}?" -#: src/screens/Onboarding/index.tsx:23 src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Ealaín" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil." @@ -669,67 +910,91 @@ msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil." msgid "At least 3 characters" msgstr "3 charachtar ar a laghad" -#: src/components/dms/MessagesListHeader.tsx:75 src/components/moderation/LabelsOnMeDialog.tsx:284 src/components/moderation/LabelsOnMeDialog.tsx:285 src/screens/Login/ChooseAccountForm.tsx:98 src/screens/Login/ChooseAccountForm.tsx:103 src/screens/Login/ForgotPasswordForm.tsx:129 src/screens/Login/ForgotPasswordForm.tsx:135 src/screens/Login/LoginForm.tsx:285 src/screens/Login/LoginForm.tsx:291 src/screens/Login/SetNewPasswordForm.tsx:160 src/screens/Login/SetNewPasswordForm.tsx:166 src/screens/Messages/Conversation/ChatDisabled.tsx:133 src/screens/Messages/Conversation/ChatDisabled.tsx:134 src/screens/Profile/Header/Shell.tsx:102 src/screens/Signup/BackNextButtons.tsx:40 src/screens/StarterPack/Wizard/index.tsx:298 src/view/com/util/ViewHeader.tsx:90 +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Ar ais" -#: src/view/screens/Settings/index.tsx:441 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 +#~ msgid "Based on your interest in {interestsText}" +#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" + +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Bunrudaí" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Breithlá" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Breithlá:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Blocáil" -#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 msgid "Block account" msgstr "Blocáil an cuntas seo" -#: src/view/com/profile/ProfileMenu.tsx:304 src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Blocáil an cuntas seo" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Blocáil an cuntas seo?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Blocáil na cuntais seo" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Liosta blocála" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Blocáilte" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:150 src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat. Ní fheicfidh tú a gcuid ábhair agus ní fheicfidh siad do chuid ábhair." @@ -741,39 +1006,56 @@ msgstr "Postáil bhlocáilte." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Ní bhacann blocáil an lipéadóir seo ar lipéid a chur ar do chuntas." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Tá an bhlocáil poiblí. Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Ní chuirfidh blocáil cosc ar lipéid a bheith curtha ar do chuntas, ach bacfaidh sí an cuntas seo ar fhreagraí a thabhairt i do chuid snáitheanna agus ar chaidreamh a dhéanamh leat." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blag" -#: src/view/com/auth/server-input/index.tsx:89 src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Is líonra oscailte é Bluesky, lenar féidir leat do sholáthraí óstála féin a roghnú. Tá leagan béite d'óstáil shaincheaptha ar fáil d'fhorbróirí anois." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Is líonra oscailte é Bluesky, lenar féidir leat do sholáthraí óstála féin a roghnú. Tá leagan béite d'óstáil shaincheaptha ar fáil d'fhorbróirí anois." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Déanann mathshlua meidhréis ar Bluesky!" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "Tá níos mó ná 10 milliún úsáideoir ar Bluesky anois, agus ba #{0} mé!" +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is flexible." +#~ msgstr "Tá Bluesky solúbtha." -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is open." +#~ msgstr "Tá Bluesky oscailte." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Bluesky is public." +#~ msgstr "Tá Bluesky poiblí." + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "Tá níos mó ná 10 milliún úsáideoir ar Bluesky anois, agus ba #{0} mé!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach." @@ -785,13 +1067,14 @@ msgstr "Déan íomhánna doiléir" msgid "Blur images and filter from feeds" msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" -#: src/screens/Onboarding/index.tsx:30 src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Leabhair" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "Déan beagáinín mórtais!" +#~ msgid "Brag a little!" +#~ msgstr "Déan beagáinín mórtais!" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -801,19 +1084,24 @@ msgstr "Tabhair súil ar thuilleadh cuntas ar an leathanach Taiscéalaíocht" msgid "Browse more feeds on the Explore page" msgstr "Tabhair súil ar thuilleadh fothaí ar an leathanach Taiscéalaíocht" -#: src/components/FeedInterstitials.tsx:332 src/components/FeedInterstitials.tsx:335 src/components/FeedInterstitials.tsx:465 src/components/FeedInterstitials.tsx:468 +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 msgid "Browse more suggestions" msgstr "Tabhair súil ar thuilleadh moltaí" -#: src/components/FeedInterstitials.tsx:358 src/components/FeedInterstitials.tsx:492 +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 msgid "Browse more suggestions on the Explore page" msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht" -#: src/screens/Home/NoFeedsPinned.tsx:103 src/screens/Home/NoFeedsPinned.tsx:109 +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" msgstr "Tabhair súil ar fhothaí eile" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Gnó" @@ -821,23 +1109,43 @@ msgstr "Gnó" msgid "by —" msgstr "le —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 +#~ msgid "by {0}" +#~ msgstr "le {0}" + +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Le {0}" +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 +#~ msgid "by @{0}" +#~ msgstr "ag @{0}" + #: src/view/com/profile/ProfileSubpageHeader.tsx:164 msgid "by <0/>" msgstr "le <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Le cruthú an chuntais aontaíonn tú leis na {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Le cruthú an chuntais aontaíonn tú leis na {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "leat" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Ceamara" @@ -845,32 +1153,57 @@ msgstr "Ceamara" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostríocanna a bheith ann. Caithfear 4 charachtar ar a laghad a bheith ann agus gan níos mó ná 32 charachtar." -#: src/components/Menu/index.tsx:235 src/components/Prompt.tsx:122 src/components/Prompt.tsx:124 src/components/TagMenu/index.tsx:282 src/screens/Deactivated.tsx:161 src/view/com/composer/Composer.tsx:594 src/view/com/composer/Composer.tsx:609 src/view/com/modals/ChangeEmail.tsx:213 src/view/com/modals/ChangeEmail.tsx:215 src/view/com/modals/ChangeHandle.tsx:148 src/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/modals/CreateOrEditList.tsx:344 src/view/com/modals/crop-image/CropImage.web.tsx:162 src/view/com/modals/EditImage.tsx:324 src/view/com/modals/EditProfile.tsx:250 src/view/com/modals/InAppBrowserConsent.tsx:78 src/view/com/modals/InAppBrowserConsent.tsx:80 src/view/com/modals/LinkWarning.tsx:105 src/view/com/modals/LinkWarning.tsx:107 src/view/com/modals/VerifyEmail.tsx:255 src/view/com/modals/VerifyEmail.tsx:261 src/view/com/util/post-ctrls/RepostButton.tsx:163 src/view/screens/Search/Search.tsx:704 +#: src/components/Menu/index.tsx:235 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 +#: src/screens/Deactivated.tsx:161 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/CreateOrEditList.tsx:349 src/view/com/modals/DeleteAccount.tsx:174 src/view/com/modals/DeleteAccount.tsx:296 +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" msgid "Cancel" msgstr "Cealaigh" -#: src/view/com/modals/DeleteAccount.tsx:170 src/view/com/modals/DeleteAccount.tsx:292 +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 msgid "Cancel account deletion" msgstr "Ná scrios an chuntas" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Ná hathraigh an leasainm" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Cealaigh bearradh na híomhá" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Cealaigh eagarthóireacht na próifíle" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Cealaigh eagarthóireacht na próifíle" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Ná déan athlua na postála" @@ -879,6 +1212,7 @@ msgid "Cancel reactivation and log out" msgstr "Cuir an t-athghníomhú ar ceal agus logáil amach" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -886,11 +1220,14 @@ msgstr "Cealaigh an cuardach" msgid "Cancels opening the linked website" msgstr "Cuireann sé seo oscailt an tsuímh gréasáin atá nasctha ar ceal" -#: src/state/shell/composer/index.tsx:70 src/view/com/util/post-ctrls/PostCtrls.tsx:114 src/view/com/util/post-ctrls/PostCtrls.tsx:155 src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "Ní féidir plé le húsáideoir blocáilte" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "Fotheidil (.vtt)" @@ -899,23 +1236,28 @@ msgid "Captions & alt text" msgstr "Fotheidil agus téacs malartach" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "{0} úsáideoir á gceiliúradh" +#~ msgid "Celebrating {0} users" +#~ msgstr "{0} úsáideoir á gceiliúradh" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Athraigh" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Athraigh" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Athraigh mo leasainm" -#: src/view/com/modals/ChangeHandle.tsx:156 src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Athraigh mo leasainm" @@ -923,11 +1265,12 @@ msgstr "Athraigh mo leasainm" msgid "Change my email" msgstr "Athraigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Athraigh mo phasfhocal" -#: src/view/com/modals/ChangePassword.tsx:142 src/view/screens/Settings/index.tsx:740 +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Athraigh mo phasfhocal" @@ -939,7 +1282,10 @@ msgstr "Athraigh an teanga phostála go {0}" msgid "Change Your Email" msgstr "Athraigh do ríomhphost" -#: src/Navigation.tsx:338 src/view/shell/bottom-bar/BottomBar.tsx:201 src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Comhrá" @@ -947,11 +1293,16 @@ msgstr "Comhrá" msgid "Chat muted" msgstr "Balbhaíodh an comhrá" -#: src/components/dms/ConvoMenu.tsx:112 src/components/dms/MessageMenu.tsx:81 src/Navigation.tsx:343 src/screens/Messages/List/index.tsx:88 src/view/screens/Settings/index.tsx:604 +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Socruithe comhrá" -#: src/screens/Messages/Settings.tsx:59 src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Socruithe Comhrá" @@ -959,11 +1310,24 @@ msgstr "Socruithe Comhrá" msgid "Chat unmuted" msgstr "Díbhalbhaíodh an comhrá" -#: src/screens/SignupQueued.tsx:78 src/screens/SignupQueued.tsx:82 +#: src/screens/Messages/Conversation/index.tsx:26 +#~ msgid "Chat with {chatId}" +#~ msgstr "Comhrá le {chatId}" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "Seiceáil mo stádas" -#: src/screens/Login/LoginForm.tsx:278 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:122 +#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." +#~ msgstr "Cuir súil ar na fothaí seo. Brúigh + len iad a chur le liosta na bhfothaí atá greamaithe agat." + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 +#~ msgid "Check out some recommended users. Follow them to see similar users." +#~ msgstr "Cuir súil ar na húsáideoirí seo. Lean iad le húsáideoirí atá cosúil leo a fheiceáil." + +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Féach ar do bhosca ríomhphoist le haghaidh cód dearbhaithe agus cuir isteach anseo é." @@ -971,51 +1335,91 @@ msgstr "Féach ar do bhosca ríomhphoist le haghaidh cód dearbhaithe agus cuir msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gcód dearbhaithe atá le cur isteach thíos." -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/view/com/modals/Threadgate.tsx:75 +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" + +#: src/screens/Onboarding/StepInterests/index.tsx:191 +#~ msgid "Choose 3 or more:" +#~ msgstr "Roghnaigh trí cinn nó níos mó:" + +#: src/screens/Onboarding/StepInterests/index.tsx:326 +#~ msgid "Choose at least {0} more" +#~ msgstr "Roghnaigh {0} eile ar a laghad" + +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Roghnaigh Fothaí" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Roghnaigh ar mo shon" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Roghnaigh Daoine" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Roghnaigh Seirbhís" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaí." +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Choose the algorithms that power your experience with custom feeds." +#~ msgstr "Roghnaigh na halgartaim a shainíonn an dóigh a n-oibríonn do chuid sainfhothaí." + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatár duit" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/components/dialogs/ThreadgateEditor.tsx:NaN +#~ msgid "Choose who can reply" +#~ msgstr "Cé atá in ann freagra a thabhairt" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 +#~ msgid "Choose your main feeds" +#~ msgstr "Roghnaigh do phríomhfhothaí" + +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:912 +#~ msgid "Clear all legacy storage data" +#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce." + +#: src/view/screens/Settings/index.tsx:915 +#~ msgid "Clear all legacy storage data (restart after this)" +#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce. Ansin atosaigh." + +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Glan na sonraí ar fad atá i dtaisce." -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh." -#: src/view/com/util/forms/SearchInput.tsx:88 src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Glan an cuardach" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:913 +#~ msgid "Clears all legacy storage data" +#~ msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce" + +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Glanann seo na sonraí ar fad atá i dtaisce" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "cliceáil anseo" @@ -1027,19 +1431,28 @@ msgstr "Cliceáil anseo le tuilleadh a fhoghlaim faoi dhíghníomhú do chuntais msgid "Click here for more information." msgstr "Cliceáil anseo do bhreis eolais." +#: src/screens/Feeds/NoFollowingFeed.tsx:46 +#, fuzzy +#~ msgid "Click here to add one." +#~ msgstr "Cliceáil anseo do bhreis eolais." + #: src/components/TagMenu/index.web.tsx:152 msgid "Click here to open tag menu for {tag}" msgstr "Cliceáil anseo le clár na clibe le haghaidh {tag} a oscailt" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/RichText.tsx:198 +#~ msgid "Click here to open tag menu for #{tag}" +#~ msgstr "Cliceáil anseo le clár na clibe le haghaidh #{tag} a oscailt" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Cliceáil chun cosc a chur ar phostálacha athluaite den phostáil seo." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Cliceáil chun postálacha athluaite den phostáil seo a cheadú." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -1051,15 +1464,25 @@ msgstr "Aeráid" msgid "Clip 🐴 clop 🐴" msgstr "Trup, Trup a Chapaillín 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 src/components/dialogs/GifSelect.tsx:270 src/components/dms/dialogs/SearchablePeopleList.tsx:261 src/components/intents/VerifyEmailIntentDialog.tsx:111 src/components/intents/VerifyEmailIntentDialog.tsx:118 src/components/NewskieDialog.tsx:146 src/components/NewskieDialog.tsx:153 src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 src/view/com/modals/ChangePassword.tsx:268 src/view/com/modals/ChangePassword.tsx:271 src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Dún" -#: src/components/Dialog/index.web.tsx:116 src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Dún an dialóg oscailte" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Dún an rabhadh" @@ -1067,11 +1490,11 @@ msgstr "Dún an rabhadh" msgid "Close bottom drawer" msgstr "Dún an tarraiceán íochtair" -#: src/components/dialogs/GifSelect.ios.tsx:244 src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Dún an dialóg" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Dún an dialóg GIF" @@ -1084,28 +1507,29 @@ msgid "Close image viewer" msgstr "Dún amharcóir na n-íomhánna" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Dún an fhuinneog" +#~ msgid "Close modal" +#~ msgstr "Dún an fhuinneog" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Dún an buntásc" -#: src/components/Menu/index.tsx:229 src/components/TagMenu/index.tsx:276 +#: src/components/Menu/index.tsx:229 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Dún an dialóg seo" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Dúnann sé seo an barra nascleanúna ag an mbun" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dréacht" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dréacht" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1115,51 +1539,80 @@ msgstr "Dúnann sé seo an t-amharcóir le haghaidh íomhá an cheanntáisc" msgid "Collapse list of users" msgstr "Laghdaigh an liosta úsáideoirí" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Laghdaíonn sé seo liosta na n-úsáideoirí le haghaidh an fhógra sin" -#: src/screens/Onboarding/index.tsx:38 src/screens/Onboarding/state.ts:82 +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Greann" -#: src/screens/Onboarding/index.tsx:24 src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Greannáin" -#: src/Navigation.tsx:276 src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas." -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Freagair an dúshlán" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Scríobh postálacha chomh fada le {MAX_GRAPHEME_LENGTH} litir agus carachtair eile" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Scríobh freagra" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + +#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 +#, fuzzy +#~ msgid "Compressing..." +#~ msgstr "Á phróiseáil..." + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 +#~ msgid "Configure content filtering setting for category: {0}" +#~ msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {0}" + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Le socrú i <0>socruithe na modhnóireachta." -#: src/components/Prompt.tsx:165 src/components/Prompt.tsx:168 src/view/com/modals/SelfLabel.tsx:155 src/view/com/modals/VerifyEmail.tsx:239 src/view/com/modals/VerifyEmail.tsx:241 src/view/screens/Settings/DisableEmail2FADialog.tsx:180 src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 +#: src/view/com/modals/VerifyEmail.tsx:239 +#: src/view/com/modals/VerifyEmail.tsx:241 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Dearbhaigh" -#: src/view/com/modals/ChangeEmail.tsx:188 src/view/com/modals/ChangeEmail.tsx:190 +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" msgstr "Dearbhaigh an t-athrú" @@ -1171,47 +1624,68 @@ msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair" msgid "Confirm delete account" msgstr "Dearbhaigh scriosadh an chuntais" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Dearbhaigh d'aois:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlá" -#: src/screens/Login/LoginForm.tsx:259 src/view/com/modals/ChangeEmail.tsx:152 src/view/com/modals/DeleteAccount.tsx:238 src/view/com/modals/DeleteAccount.tsx:244 src/view/com/modals/VerifyEmail.tsx:173 src/view/screens/Settings/DisableEmail2FADialog.tsx:143 src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Cód dearbhaithe" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Ag nascadh…" -#: src/screens/Signup/index.tsx:180 src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Teagmháil le Support" +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "content" +#~ msgstr "ábhar" + #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "Ábhar Blocáilte" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Scagthaí ábhair" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Teangacha ábhair" -#: src/components/moderation/ModerationDetailsDialog.tsx:81 src/lib/moderation/useModerationCauseDescription.ts:80 +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 msgid "Content Not Available" msgstr "Ábhar nach bhfuil ar fáil" -#: src/components/moderation/ModerationDetailsDialog.tsx:49 src/components/moderation/ScreenHider.tsx:99 src/lib/moderation/useGlobalLabelStrings.ts:22 src/lib/moderation/useModerationCauseDescription.ts:43 +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Rabhadh ábhair" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Rabhadh ábhair" @@ -1219,11 +1693,12 @@ msgstr "Rabhadh ábhair" msgid "Context menu backdrop, click to close the menu." msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúnadh." -#: src/screens/Onboarding/StepInterests/index.tsx:258 src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Lean ar aghaidh" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)" @@ -1231,11 +1706,21 @@ msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)" msgid "Continue thread..." msgstr "Lean leis an snáithe..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 src/screens/Onboarding/StepProfile/index.tsx:266 src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Lean ar aghaidh go dtí an chéad chéim eile" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 +#~ msgid "Continue to the next step" +#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 +#~ msgid "Continue to the next step without following any accounts" +#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile gan aon chuntas a leanúint" + +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Scriosadh an comhrá" @@ -1243,19 +1728,26 @@ msgstr "Scriosadh an comhrá" msgid "Cooking" msgstr "Cócaireacht" -#: src/view/com/modals/AddAppPasswords.tsx:221 src/view/com/modals/InviteCodes.tsx:183 +#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Cóipeáilte" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" -#: src/components/dms/MessageMenu.tsx:57 src/view/com/modals/AddAppPasswords.tsx:80 src/view/com/modals/ChangeHandle.tsx:320 src/view/com/modals/InviteCodes.tsx:153 src/view/com/util/forms/PostDropdownBtn.tsx:234 src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 +#: src/view/com/modals/AddAppPasswords.tsx:80 +#: src/view/com/modals/ChangeHandle.tsx:313 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Cóipeáilte sa ghearrthaisce" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Cóipeáilte!" @@ -1263,15 +1755,17 @@ msgstr "Cóipeáilte!" msgid "Copies app password" msgstr "Cóipeálann sé seo pasfhocal na haipe" -#: src/components/StarterPack/QrCodeDialog.tsx:177 src/view/com/modals/AddAppPasswords.tsx:214 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Cóipeáil" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Cóipeáil {0}" -#: src/components/dialogs/Embed.tsx:120 src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Cóipeáil an cód" @@ -1283,42 +1777,55 @@ msgstr "Cóipeáil an nasc" msgid "Copy Link" msgstr "Cóipeáil an Nasc" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Cóipeáil an nasc leis an liosta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Cóipeáil an nasc leis an bpostáil" -#: src/components/dms/MessageMenu.tsx:110 src/components/dms/MessageMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" msgstr "Cóipeáil téacs na teachtaireachta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Cóipeáil téacs na postála" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Cóipeáil an cód QR" -#: src/Navigation.tsx:281 src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" +#: src/view/com/composer/videos/state.ts:31 +#, fuzzy +#~ msgid "Could not compress video" +#~ msgstr "Ní féidir an fotha a lódáil" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Níor éiríodh ar an gcomhrá a fhágáil" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Ní féidir an fotha a lódáil" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Ní féidir an liosta a lódáil" +#: src/components/dms/NewChat.tsx:241 +#~ msgid "Could not load profiles. Please try again later." +#~ msgstr "Níorbh fhéidir próifílí a lódáil. Bain triail eile as ar ball." + #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" @@ -1327,43 +1834,55 @@ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" msgid "Could not process your video" msgstr "Níorbh fhéidir d'fhíseán a phróiseáil" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/dms/ConvoMenu.tsx:68 +#~ msgid "Could not unmute chat" +#~ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Cruthaigh" -#: src/view/com/auth/SplashScreen.tsx:57 src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Cruthaigh cuntas nua" +#: src/view/com/auth/SplashScreen.tsx:NaN +#~ msgid "Create a new account" +#~ msgstr "Cruthaigh cuntas nua" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Cruthaigh cuntas nua Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 src/components/StarterPack/ProfileStarterPacks.tsx:259 src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Cruthaigh pacáiste fáilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Cruthaigh pacáiste fáilte ar mo shon" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Cruthaigh cuntas" -#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Cruthaigh cuntas" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Cruthaigh abhatár nua ina ionad sin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Cruthaigh ceann eile" @@ -1371,95 +1890,130 @@ msgstr "Cruthaigh ceann eile" msgid "Create App Password" msgstr "Cruthaigh pasfhocal aipe" -#: src/view/com/auth/SplashScreen.tsx:48 src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Cruthaigh cuntas nua" +#: src/components/StarterPack/ShareDialog.tsx:158 +#, fuzzy +#~ msgid "Create QR code" +#~ msgstr "Sábháil an cód QR" + #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "Cruthaigh tuairisc do {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Cruthaíodh {0}" -#: src/screens/Onboarding/index.tsx:26 src/screens/Onboarding/state.ts:84 +#: src/view/com/composer/Composer.tsx:469 +#~ msgid "Creates a card with a thumbnail. The card links to {url}" +#~ msgstr "Cruthaíonn sé seo cárta le mionsamhail. Nascann an cárta le {url}." + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Cultúr" -#: src/view/com/auth/server-input/index.tsx:97 src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Saincheaptha" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Sainfhearann" -#: src/view/screens/Feeds.tsx:759 src/view/screens/Search/Explore.tsx:391 +#: src/view/screens/Feeds.tsx:761 +#: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Cruthaíonn an pobal fothaí chun eispéiris nua a chur ar fáil duit, agus chun cabhrú leat teacht ar an ábhar a thaitníonn leat" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Oiriúnaigh na meáin ó shuíomhanna seachtracha" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?" -#: src/screens/Settings/AppearanceSettings.tsx:95 src/screens/Settings/AppearanceSettings.tsx:97 src/screens/Settings/AppearanceSettings.tsx:122 src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:82 src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Modh dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:109 src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Téama dorcha" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/screens/Settings/index.tsx:473 +#~ msgid "Dark Theme" +#~ msgstr "Téama Dorcha" + +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Dáta breithe" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 src/view/screens/Settings/index.tsx:772 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Dífhabhtaigh Modhnóireacht" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Painéal dífhabhtaithe" -#: src/components/dms/MessageMenu.tsx:151 src/screens/StarterPack/StarterPackScreen.tsx:573 src/screens/StarterPack/StarterPackScreen.tsx:652 src/screens/StarterPack/StarterPackScreen.tsx:732 src/view/com/util/forms/PostDropdownBtn.tsx:629 src/view/screens/AppPasswords.tsx:280 src/view/screens/ProfileList.tsx:723 +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Scrios" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Scrios an cuntas" +#: src/view/com/modals/DeleteAccount.tsx:87 +#~ msgid "Delete Account" +#~ msgstr "Scrios an Cuntas" + #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Scrios Cuntas <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Scrios pasfhocal na haipe" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Scrios pasfhocal na haipe?" -#: src/view/screens/Settings/index.tsx:856 src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrá" @@ -1467,7 +2021,7 @@ msgstr "Scrios taifead dearbhaithe comhrá" msgid "Delete for me" msgstr "Scrios domsa" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Scrios an liosta" @@ -1483,31 +2037,33 @@ msgstr "Scrios an teachtaireacht seo domsa" msgid "Delete my account" msgstr "Scrios mo chuntas" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Scrios mo chuntas…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Scrios an phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Scrios an pacáiste fáilte" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "An bhfuil fonn ort an pacáiste fáilte seo a scriosadh?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "An bhfuil fonn ort an liosta seo a scriosadh?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Scriosta" @@ -1515,23 +2071,35 @@ msgstr "Scriosta" msgid "Deleted post." msgstr "Scriosadh an phostáil." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Scriosann sé seo an taifead dearbhaithe comhrá" -#: src/view/com/modals/CreateOrEditList.tsx:289 src/view/com/modals/CreateOrEditList.tsx:310 src/view/com/modals/EditProfile.tsx:199 src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Cur síos" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Téacs malartach tuairisciúil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Dícheangail an phostáil athluaite" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "An bhfuil fonn ort an phostáil athluaite a dhícheangal?" @@ -1539,51 +2107,79 @@ msgstr "An bhfuil fonn ort an phostáil athluaite a dhícheangal?" msgid "Dialog: adjust who can interact with this post" msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Ar mhaith leat rud éigin a rá?" -#: src/screens/Settings/AppearanceSettings.tsx:117 src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Breacdhorcha" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Tá teachtaireachtaí díreacha ar fáil anois!" +#~ msgid "Direct messages are here!" +#~ msgstr "Tá teachtaireachtaí díreacha ar fáil anois!" #: src/view/screens/AccessibilitySettings.tsx:111 +#~ msgid "Disable autoplay for GIFs" +#~ msgstr "Ná seinn GIFanna go huathoibríoch" + +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "Ná seinn físeáin agus GIFanna go huathoibríoch" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Ná húsáid 2FA trí ríomhphost" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Ná húsáid aiseolas haptach" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable haptics" +#~ msgstr "Ná húsáid aiseolas haptach" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Ná húsáid fotheidil" -#: src/lib/moderation/useLabelBehaviorDescription.ts:32 src/lib/moderation/useLabelBehaviorDescription.ts:42 src/lib/moderation/useLabelBehaviorDescription.ts:68 src/screens/Messages/Settings.tsx:140 src/screens/Messages/Settings.tsx:143 src/screens/Moderation/index.tsx:355 +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable vibrations" +#~ msgstr "Ná húsáid creathadh" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Díchumasaithe" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Ná sábháil" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Faigh réidh leis an dréacht?" -#: src/screens/Moderation/index.tsx:552 src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Cuir ina luí ar aipeanna gan mo chuntas a thaispeáint d'úsáideoirí atá logáilte amach" -#: src/view/com/posts/FollowingEmptyState.tsx:70 src/view/com/posts/FollowingEndOfFeed.tsx:71 +#: src/tours/HomeTour.tsx:70 +#~ msgid "Discover learns which posts you like as you browse." +#~ msgstr "Foghlaimíonn Discover na postálacha a bhfuil suim agat iontu." + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaí nua" @@ -1591,15 +2187,15 @@ msgstr "Aimsigh sainfhothaí nua" msgid "Discover new feeds" msgstr "Aimsigh fothaí nua" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Aimsigh Fothaí Nua" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 +#: src/components/Dialog/index.tsx:315 msgid "Dismiss" msgstr "Ruaig" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Ruaig an earráid" @@ -1607,19 +2203,29 @@ msgstr "Ruaig an earráid" msgid "Dismiss getting started guide" msgstr "Scoir an treoir tosaithe" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Déan suaitheantais théacs malartaigh níos mó" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Ainm taispeána" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Ainm Taispeána" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Ainm Taispeána" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Painéal DNS" @@ -1627,6 +2233,14 @@ msgstr "Painéal DNS" msgid "Do not apply this mute word to users you follow" msgstr "Ná cuir an focal balbhaithe i bhfeidhm ar úsáideoirí a leanann tú" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Níl lomnochtacht ann." @@ -1635,19 +2249,37 @@ msgstr "Níl lomnochtacht ann." msgid "Doesn't begin or end with a hyphen" msgstr "Ní thosaíonn ná chríochnaíonn sé le fleiscín" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Luach an Fhearainn" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Fearann dearbhaithe!" -#: src/components/dialogs/BirthDateSettings.tsx:119 src/components/dialogs/BirthDateSettings.tsx:125 src/components/forms/DateField/index.tsx:77 src/components/forms/DateField/index.tsx:83 src/screens/Onboarding/StepProfile/index.tsx:322 src/screens/Onboarding/StepProfile/index.tsx:325 src/view/com/auth/server-input/index.tsx:169 src/view/com/auth/server-input/index.tsx:170 src/view/com/composer/videos/SubtitleDialog.tsx:171 src/view/com/composer/videos/SubtitleDialog.tsx:181 src/view/com/modals/AddAppPasswords.tsx:243 src/view/com/modals/AltImage.tsx:141 src/view/com/modals/crop-image/CropImage.web.tsx:177 src/view/com/modals/InviteCodes.tsx:81 src/view/com/modals/InviteCodes.tsx:124 src/view/com/modals/ListAddRemoveUsers.tsx:143 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 +#: src/view/com/auth/server-input/index.tsx:170 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Déanta" -#: src/view/com/modals/EditImage.tsx:334 src/view/com/modals/ListAddRemoveUsers.tsx:145 src/view/com/modals/SelfLabel.tsx:158 src/view/com/modals/UserAddRemoveLists.tsx:107 src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Déanta" @@ -1656,59 +2288,72 @@ msgstr "Déanta" msgid "Done{extraText}" msgstr "Déanta{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Íoslódáil Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Íoslódáil comhad CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "Íoslódáil an íomhá" +#~ msgid "Download image" +#~ msgstr "Íoslódáil an íomhá" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Scaoil anseo chun íomhánna a chur leis" +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 +#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." +#~ msgstr "De bharr pholasaí Apple, ní féidir ábhar do dhaoine fásta ar an nGréasán a fháil roimh an logáil isteach a chríochnú." + #: src/components/dialogs/MutedWords.tsx:153 msgid "Duration:" msgstr "Fad:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "m.sh. cáit" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "m.sh. Cáit Ní Dhuibhir" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "m.sh. Cáit Ní Dhuibhir" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "m.sh. cait.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "m.sh. Ealaíontóir, File, Eolaí" +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "m.sh. Ealaíontóir, File, Eolaí" #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Noicht ealaíonta, mar shampla" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "m.sh. Na cuntais is fearr" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "m.sh. Seoltóirí turscair" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "m.sh. Na cuntais nach dteipeann orthu riamh" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" @@ -1716,68 +2361,88 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 src/screens/StarterPack/Wizard/index.tsx:551 src/screens/StarterPack/Wizard/index.tsx:558 src/view/screens/Feeds.tsx:385 src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Eagar" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:334 src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Cuir an t-abhatár in eagar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Cuir Fothaí in Eagar" -#: src/view/com/composer/photos/Gallery.tsx:151 src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Cuir an íomhá seo in eagar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Cuir na socruithe idirghníomhaíochta in eagar" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Athraigh mionsonraí an liosta" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnóireachta" -#: src/Navigation.tsx:291 src/view/screens/Feeds.tsx:383 src/view/screens/Feeds.tsx:451 src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaí" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Athraigh mo phróifíl" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Athraigh mo phróifíl" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Cuir Daoine in Eagar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 msgid "Edit post interaction settings" msgstr "Cuir socruithe idirghníomhaíochta na postála in eagar" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Athraigh an phróifíl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Athraigh an Phróifíl" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/view/com/home/HomeHeaderLayout.web.tsx:NaN +#~ msgid "Edit Saved Feeds" +#~ msgstr "Athraigh na fothaí sábháilte" + +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Cuir an pacáiste fáilte in eagar" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Athraigh an liosta d’úsáideoirí" @@ -1785,23 +2450,29 @@ msgstr "Athraigh an liosta d’úsáideoirí" msgid "Edit who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Athraigh d’ainm taispeána" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Athraigh d’ainm taispeána" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Athraigh an cur síos ort sa phróifíl" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Athraigh an cur síos ort sa phróifíl" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Cuir do phacáiste fáilte in eagar" -#: src/screens/Onboarding/index.tsx:31 src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Oideachas" -#: src/screens/Signup/StepInfo/index.tsx:143 src/view/com/modals/ChangeEmail.tsx:136 +#: src/components/dialogs/ThreadgateEditor.tsx:98 +#~ msgid "Either choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" + +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Ríomhphost" @@ -1809,15 +2480,16 @@ msgstr "Ríomhphost" msgid "Email 2FA disabled" msgstr "Níl 2FA trí ríomhphost ar fáil a thuilleadh" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Seoladh ríomhphoist" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "Athsheoladh an ríomhphost" -#: src/view/com/modals/ChangeEmail.tsx:54 src/view/com/modals/ChangeEmail.tsx:83 +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 msgid "Email updated" msgstr "Seoladh ríomhphoist uasdátaithe" @@ -1829,19 +2501,21 @@ msgstr "Seoladh ríomhphoist uasdátaithe" msgid "Email verified" msgstr "Ríomhphost dearbhaithe" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "Ríomhphost dearbhaithe" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Ríomhphost:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Leabaigh an cód HTML" -#: src/components/dialogs/Embed.tsx:97 src/view/com/util/forms/PostDropdownBtn.tsx:427 src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Leabaigh an phostáil" @@ -1849,43 +2523,68 @@ msgstr "Leabaigh an phostáil" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an píosa cóid seo a leanas isteach san HTML ar do shuíomh." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Cuir {0} amháin ar fáil" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Cuir ábhar do dhaoine fásta ar fáil" -#: src/components/dialogs/EmbedConsent.tsx:82 src/components/dialogs/EmbedConsent.tsx:89 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 +#~ msgid "Enable Adult Content" +#~ msgstr "Cuir ábhar do dhaoine fásta ar fáil" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:NaN +#~ msgid "Enable adult content in your feeds" +#~ msgstr "Cuir ábhar do dhaoine fásta ar fáil i do chuid fothaí" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Cuir meáin sheachtracha ar fáil" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh" -#: src/view/screens/NotificationsSettings.tsx:65 src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Cuir fógraí tábhachtacha ar siúl" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Cuir fotheidil ar siúl" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/view/screens/PreferencesFollowingFeed.tsx:145 +#~ msgid "Enable this setting to only see replies between people you follow." +#~ msgstr "Cuir an socrú seo ar siúl le gan ach freagraí i measc na ndaoine a leanann tú a fheiceáil." + +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Cuir an foinse seo amháin ar fáil" -#: src/screens/Messages/Settings.tsx:131 src/screens/Messages/Settings.tsx:134 src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Cumasaithe" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Deireadh an fhotha" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/components/Lists.tsx:52 +#, fuzzy +#~ msgid "End of list" +#~ msgstr "Curtha leis an liosta" + +#: src/tours/Tooltip.tsx:159 +#~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." +#~ msgstr "Deireadh cuairte ar fháiltiú. Ná téigh ar aghaidh. Téigh siar le roghanna eile a fháil nó brúigh anseo le imeacht." + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "Deimhnigh gur roghnaigh tú teanga do gach comhad fotheideal." @@ -1893,14 +2592,19 @@ msgstr "Deimhnigh gur roghnaigh tú teanga do gach comhad fotheideal." msgid "Enter a name for this App Password" msgstr "Cuir isteach ainm don phasfhocal aipe seo" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Cuir pasfhocal isteach" -#: src/components/dialogs/MutedWords.tsx:127 src/components/dialogs/MutedWords.tsx:128 +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 msgid "Enter a word or tag" msgstr "Cuir focal na clib isteach" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Cuir isteach an cód dearbhaithe" @@ -1909,19 +2613,20 @@ msgstr "Cuir isteach an cód dearbhaithe" msgid "Enter the code you received to change your password." msgstr "Cuir isteach an cód a fuair tú chun do phasfhocal a athrú." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Cuir isteach an fearann is maith leat a úsáid" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Cuir isteach an seoladh ríomhphoist a d’úsáid tú le do chuntas a chruthú. Cuirfidh muid “cód athshocraithe” chugat le go mbeidh tú in ann do phasfhocal a athrú." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Cuir isteach do bhreithlá" -#: src/screens/Login/ForgotPasswordForm.tsx:105 src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Cuir isteach do sheoladh ríomhphoist" @@ -1933,10 +2638,14 @@ msgstr "Cuir isteach do sheoladh ríomhphoist nua thuas" msgid "Enter your new email address below." msgstr "Cuir isteach do sheoladh ríomhphoist nua thíos." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Cuir isteach do leasainm agus do phasfhocal" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Tharla earráid le linn comhad a shábháil" @@ -1945,11 +2654,12 @@ msgstr "Tharla earráid le linn comhad a shábháil" msgid "Error receiving captcha response." msgstr "Earráid agus an freagra ar an captcha á phróiseáil." -#: src/screens/Onboarding/StepInterests/index.tsx:197 src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Earráid:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Chuile dhuine" @@ -1961,7 +2671,8 @@ msgstr "Tig le chuile dhuine freagra a thabhairt" msgid "Everybody can reply to this post." msgstr "Tig le chuile dhuine freagra a thabhairt ar an bpostáil." -#: src/components/dms/MessagesNUX.tsx:131 src/components/dms/MessagesNUX.tsx:134 src/screens/Messages/Settings.tsx:75 src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Chuile dhuine" @@ -1981,7 +2692,7 @@ msgstr "Ná cuir i bhfeidhm ar úsáideoirí a leanaim" msgid "Excludes users you follow" msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann tú" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "Fág an mód lánscáileáin" @@ -1989,11 +2700,11 @@ msgstr "Fág an mód lánscáileáin" msgid "Exits account deletion process" msgstr "Fágann sé seo próiseas scrios an chuntais" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Fágann sé seo athrú do leasainm" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Fágann sé seo próiseas laghdú an íomhá" @@ -2013,11 +2724,16 @@ msgstr "Taispeáin an téacs malartach ina iomláine" msgid "Expand list of users" msgstr "Leathnaigh an liosta úsáideoirí" -#: src/view/com/composer/ComposerReplyTo.tsx:82 src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "Turgnamhach: Leis an rogha seo, ní bhfaighidh tú fógraí maidir le freagraí agus postálacha athluaite ach ó na húsáideoirí a bhfuil tú á leanúint. Cuirfimid tuilleadh roghanna anseo de réir a chéile." @@ -2037,39 +2753,46 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach." msgid "Explicit sexual images." msgstr "Íomhánna gnéasacha." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Easpórtáil mo chuid sonraí" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Easpórtáil mo chuid sonraí" -#: src/components/dialogs/EmbedConsent.tsx:55 src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Meáin sheachtracha" -#: src/components/dialogs/EmbedConsent.tsx:71 src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”." -#: src/Navigation.tsx:310 src/view/screens/PreferencesExternalEmbeds.tsx:54 src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Socruithe maidir le meáin sheachtracha" -#: src/view/com/modals/AddAppPasswords.tsx:119 src/view/com/modals/AddAppPasswords.tsx:123 +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." msgstr "Teip ar phasfhocal aipe a chruthú." -#: src/screens/StarterPack/Wizard/index.tsx:229 src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Theip ar chruthú an phacáiste fáilte" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Teip ar chruthú an liosta. Seiceáil do nasc leis an idirlíon agus déan iarracht eile." @@ -2077,27 +2800,38 @@ msgstr "Teip ar chruthú an liosta. Seiceáil do nasc leis an idirlíon agus dé msgid "Failed to delete message" msgstr "Teip ar theachtaireacht a scriosadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Theip ar scriosadh an phacáiste fáilte" -#: src/view/screens/Search/Explore.tsx:427 src/view/screens/Search/Explore.tsx:455 +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 msgid "Failed to load feeds preferences" msgstr "Teip ar lódáil roghanna na bhfothaí" -#: src/components/dialogs/GifSelect.ios.tsx:196 src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Theip ar lódáil na GIFanna" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil" -#: src/view/screens/Search/Explore.tsx:420 src/view/screens/Search/Explore.tsx:448 +#: src/screens/Messages/Conversation/MessageListError.tsx:28 +#, fuzzy +#~ msgid "Failed to load past messages." +#~ msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:NaN +#~ msgid "Failed to load recommended feeds" +#~ msgstr "Teip ar lódáil na bhfothaí molta" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 msgid "Failed to load suggested feeds" msgstr "Teip ar lódáil na bhfothaí molta" @@ -2105,7 +2839,11 @@ msgstr "Teip ar lódáil na bhfothaí molta" msgid "Failed to load suggested follows" msgstr "Teip ar lódáil na gcuntas molta" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Níor sábháladh an íomhá: {0}" @@ -2113,59 +2851,95 @@ msgstr "Níor sábháladh an íomhá: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Teip ar na socruithe a shábháil. Déan iarracht eile." -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Teip ar sheoladh" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/screens/Messages/Conversation/MessageListError.tsx:29 +#, fuzzy +#~ msgid "Failed to send message(s)." +#~ msgstr "Teip ar theachtaireacht a scriosadh" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Teip ar bhalbhú an tsnáithe a athrú; bain triail eile as" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Theip ar uasdátú na bhfothaí" -#: src/components/dms/MessagesNUX.tsx:60 src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdátú" -#: src/state/queries/video/video-upload.ts:67 src/state/queries/video/video-upload.web.ts:64 src/state/queries/video/video-upload.web.ts:68 src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "Theip ar uaslódáil an fhíseáin" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Fotha" -#: src/components/FeedCard.tsx:131 src/view/com/feeds/FeedSourceCard.tsx:250 +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Fotha le {0}" +#: src/view/screens/Feeds.tsx:709 +#~ msgid "Feed offline" +#~ msgstr "Fotha as líne" + #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "Scoránú an fhotha" -#: src/view/shell/desktop/RightNav.tsx:70 src/view/shell/Drawer.tsx:346 +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Aiseolas" -#: src/Navigation.tsx:353 src/screens/StarterPack/StarterPackScreen.tsx:172 src/view/screens/Feeds.tsx:445 src/view/screens/Feeds.tsx:550 src/view/screens/Profile.tsx:224 src/view/screens/Search/Search.tsx:375 src/view/shell/desktop/LeftNav.tsx:373 src/view/shell/Drawer.tsx:497 src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Fothaí" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:58 +#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." +#~ msgstr "Is iad na húsáideoirí a chruthaíonn na fothaí le hábhar is spéis leo a chur ar fáil. Roghnaigh cúpla fotha a bhfuil suim agat iontu." + +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beagán taithí acu ar chódáil iad. <0/> le tuilleadh eolais a fháil." -#: src/components/FeedCard.tsx:270 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 +#~ msgid "Feeds can be topical as well!" +#~ msgstr "Is féidir le fothaí a bheith bunaithe ar chúrsaí reatha freisin!" + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Uasdátaíodh na fothaí!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Ábhar an Chomhaid" @@ -2177,48 +2951,74 @@ msgstr "Sábháladh an comhad!" msgid "Filter from feeds" msgstr "Scag ó mo chuid fothaí" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Ag cur crích air" -#: src/view/com/posts/CustomFeedEmptyState.tsx:47 src/view/com/posts/FollowingEmptyState.tsx:53 src/view/com/posts/FollowingEndOfFeed.tsx:54 +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 msgid "Find accounts to follow" msgstr "Aimsigh fothaí le leanúint" -#: src/view/screens/Search/Search.tsx:439 +#: src/tours/HomeTour.tsx:88 +#~ msgid "Find more feeds and accounts to follow in the Explore page." +#~ msgstr "Faigh tuilleadh fothaí agus cuntais le leanúint ar an leathanach Explore." + +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Aimsigh postálacha agus úsáideoirí ar Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/Search/Search.tsx:589 +#~ msgid "Find users on Bluesky" +#~ msgstr "Aimsigh úsáideoirí ar Bluesky" + +#: src/view/screens/Search/Search.tsx:587 +#~ msgid "Find users with the search tool on the right" +#~ msgstr "Aimsigh úsáideoirí leis an uirlis chuardaigh ar dheis" + +#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 +#~ msgid "Finding similar accounts..." +#~ msgstr "Cuntais eile atá cosúil leis seo á n-aimsiú..." + +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Mionathraigh an t-ábhar a fheiceann tú ar an bhfotha Following." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Mionathraigh na snáitheanna chomhrá" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Críochnaigh" +#: src/tours/Tooltip.tsx:149 +#~ msgid "Finish tour and begin using the application" +#~ msgstr "Críochnaigh an chuairt agus tosaigh ag baint úsáide as an aip" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Folláine" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Solúbtha" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Iompaigh go cothrománach é" +#~ msgid "Flip horizontal" +#~ msgstr "Iompaigh go cothrománach é" -#: src/view/com/modals/EditImage.tsx:121 src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Iompaigh go hingearach é" +#: src/view/com/modals/EditImage.tsx:NaN +#~ msgid "Flip vertically" +#~ msgstr "Iompaigh go hingearach é" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 src/components/ProfileHoverCard/index.web.tsx:446 src/components/ProfileHoverCard/index.web.tsx:457 src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Lean" @@ -2227,11 +3027,12 @@ msgctxt "action" msgid "Follow" msgstr "Lean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Lean {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Lean {name}" @@ -2239,27 +3040,51 @@ msgstr "Lean {name}" msgid "Follow 7 accounts" msgstr "Lean 7 gcuntas" -#: src/view/com/profile/ProfileMenu.tsx:246 src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Lean an cuntas seo" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Lean iad uile" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#~ msgid "Follow All" +#~ msgstr "Lean iad uile" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Lean Ar Ais" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "Lean Ar Ais" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "Lean Ar Ais" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Lean níos mó cuntas le ceangal a dhéanamh le do chuid suimeanna agus le do líonra a thógáil." +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +#~ msgid "Follow selected accounts and continue to the next step" +#~ msgstr "Lean na cuntais roghnaithe agus téigh ar aghaidh go dtí an chéad chéim eile" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 +#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." +#~ msgstr "Lean cúpla cuntas mar thosú. Tig linn níos mó úsáideoirí a mholadh duit a mbeadh suim agat iontu." + +#: src/components/KnownFollowers.tsx:169 +#, fuzzy +#~ msgid "Followed by" +#~ msgstr "Leanta ag {0}" + +#: src/view/com/profile/ProfileCard.tsx:190 +#~ msgid "Followed by {0}" +#~ msgstr "Leanta ag {0}" + #: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "Leanta ag <0>{0}" @@ -2276,10 +3101,14 @@ msgstr "Leanta ag <0>{0} agus <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Leanta ag <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Cuntais a leanann tú" +#: src/view/screens/PreferencesFollowingFeed.tsx:152 +#~ msgid "Followed users only" +#~ msgstr "Cuntais a leanann tú amháin" + #: src/view/com/notifications/FeedItem.tsx:207 msgid "followed you" msgstr "— lean sé/sí thú" @@ -2288,48 +3117,76 @@ msgstr "— lean sé/sí thú" msgid "followed you back" msgstr "— lean sé/sí thú" -#: src/view/screens/ProfileFollowers.tsx:29 src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Leantóirí" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu" -#: src/screens/Profile/KnownFollowers.tsx:108 src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Leantóirí a bhfuil aithne agat orthu" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 src/components/ProfileHoverCard/index.web.tsx:445 src/components/ProfileHoverCard/index.web.tsx:456 src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 src/view/com/post-thread/PostThreadFollowBtn.tsx:147 src/view/screens/Feeds.tsx:630 src/view/screens/ProfileFollows.tsx:29 src/view/screens/ProfileFollows.tsx:30 src/view/screens/SavedFeeds.tsx:416 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Á leanúint" -#: src/components/ProfileCard.tsx:316 src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Ag leanúint {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Ag leanacht {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:297 src/view/screens/PreferencesFollowingFeed.tsx:48 src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/tours/HomeTour.tsx:59 +#~ msgid "Following shows the latest posts from people you follow." +#~ msgstr "Taispeántar na postálacha is déanaí ó na daoine a leanann tú san fhotha Following." + +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Leanann sé/sí thú" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Leanann sé/sí thú" -#: src/screens/Onboarding/index.tsx:40 src/screens/Onboarding/state.ts:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Bia" @@ -2341,19 +3198,25 @@ msgstr "Ar chúiseanna slándála, beidh orainn cód dearbhaithe a chur chuig do msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Ar chúiseanna slándála, ní bheidh tú in ann é seo a fheiceáil arís. Má chailleann tú an pasfhocal seo beidh ort ceann nua a chruthú." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Go brách" -#: src/screens/Login/index.tsx:129 src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Pasfhocal dearmadta" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Pasfhocal dearmadta?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Dearmadta?" @@ -2361,36 +3224,37 @@ msgstr "Dearmadta?" msgid "Frequently Posts Unwanted Content" msgstr "Is minic a phostálann siad ábhar nach bhfuil de dhíth" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Ó @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Ó <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "Lánscáileán" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Gailearaí" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Cruthaigh pacáiste fáilte" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Faigh cabhair" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Tús maith" +#~ msgid "Get started" +#~ msgstr "Tús maith" -#: src/view/com/modals/VerifyEmail.tsx:197 src/view/com/modals/VerifyEmail.tsx:199 +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" msgstr "Ar aghaidh leat anois!" @@ -2402,7 +3266,7 @@ msgstr "Tús maith" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Tabhair gnúis do do phróifíl" @@ -2410,35 +3274,62 @@ msgstr "Tabhair gnúis do do phróifíl" msgid "Glaring violations of law or terms of service" msgstr "Deargshárú an dlí nó na dtéarmaí seirbhíse" -#: src/components/moderation/ScreenHider.tsx:160 src/components/moderation/ScreenHider.tsx:169 src/view/com/auth/LoggedOut.tsx:67 src/view/com/auth/LoggedOut.tsx:68 src/view/screens/NotFound.tsx:55 src/view/screens/ProfileFeed.tsx:112 src/view/screens/ProfileList.tsx:1026 src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Ar ais" -#: src/components/Error.tsx:79 src/screens/List/ListHiddenScreen.tsx:210 src/screens/Profile/ErrorState.tsx:62 src/screens/Profile/ErrorState.tsx:66 src/screens/StarterPack/StarterPackScreen.tsx:745 src/view/screens/NotFound.tsx:54 src/view/screens/ProfileFeed.tsx:117 src/view/screens/ProfileList.tsx:1031 +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Ar ais" -#: src/components/dms/ReportDialog.tsx:154 src/components/ReportDialog/SelectReportOptionView.tsx:80 src/components/ReportDialog/SubmitView.tsx:108 src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 +#~ msgid "Go back to previous screen" +#~ msgstr "Fill ar an scáileán roimhe seo" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Fill ar an gcéim roimhe seo" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Fill ar an gcéim roimhe seo" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Abhaile" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Abhaile" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/view/screens/Search/Search.tsx:NaN +#~ msgid "Go to @{queryMaybeHandle}" +#~ msgstr "Téigh go dtí @{queryMaybeHandle}" + +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Téigh go comhrá le {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 src/view/com/modals/ChangePassword.tsx:168 +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Téigh go dtí an chéad rud eile" @@ -2446,11 +3337,17 @@ msgstr "Téigh go dtí an chéad rud eile" msgid "Go to profile" msgstr "Téigh go próifíl" +#: src/tours/Tooltip.tsx:138 +#~ msgid "Go to the next step of the tour" +#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Téigh go próifíl an úsáideora" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Meáin Ghrafacha" @@ -2458,11 +3355,11 @@ msgstr "Meáin Ghrafacha" msgid "Half way there!" msgstr "Leath bealaigh ann!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Leasainm" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Haptaic" @@ -2470,68 +3367,97 @@ msgstr "Haptaic" msgid "Harassment, trolling, or intolerance" msgstr "Ciapadh, trolláil, nó éadulaingt" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Haischlib" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Haischlib: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Fadhb ort?" -#: src/view/shell/desktop/RightNav.tsx:99 src/view/shell/Drawer.tsx:359 +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Cúnamh" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abhatár a chruthú." +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 +#~ msgid "Here are some accounts for you to follow" +#~ msgstr "Seo cúpla cuntas le leanúint duit" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 +#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." +#~ msgstr "Seo cúpla fotha a bhfuil ráchairt orthu. Is féidir leat an méid acu is mian leat a leanúint." + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:84 +#~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." +#~ msgstr "Seo cúpla fotha a phléann le rudaí a bhfuil suim agat iontu: {interestsText}. Is féidir leat an méid acu is mian leat a leanúint." + #: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Seo é do phasfhocal aipe." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Liosta i bhfolach" -#: src/components/moderation/ContentHider.tsx:116 src/components/moderation/LabelPreference.tsx:134 src/components/moderation/PostHider.tsx:122 src/lib/moderation/useLabelBehaviorDescription.ts:15 src/lib/moderation/useLabelBehaviorDescription.ts:20 src/lib/moderation/useLabelBehaviorDescription.ts:25 src/lib/moderation/useLabelBehaviorDescription.ts:30 src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:122 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:NaN +#~ msgid "Hide post" +#~ msgstr "Cuir an phostáil seo i bhfolach" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Cuir an phostáil seo i bhfolach domsa" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Cuir an freagra i bhfolach do chách" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Cuir an freagra i bhfolach domsa" -#: src/components/moderation/ContentHider.tsx:68 src/components/moderation/PostHider.tsx:79 +#: src/components/moderation/ContentHider.tsx:129 +#: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Cuir an t-ábhar seo i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" @@ -2555,7 +3481,7 @@ msgstr "Hmm. Thug freastalaí an fhotha drochfhreagra. Cuir é seo in iúl d’ msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm. Ní féidir linn an fotha seo a aimsiú. Is féidir gur scriosadh é." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féach thíos le haghaidh tuilleadh sonraí. Má mhaireann an fhadhb seo, téigh i dteagmháil linn, le do thoil." @@ -2563,39 +3489,54 @@ msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féa msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!" -#: src/Navigation.tsx:550 src/Navigation.tsx:570 src/view/shell/bottom-bar/BottomBar.tsx:159 src/view/shell/desktop/LeftNav.tsx:341 src/view/shell/Drawer.tsx:429 src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Baile" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Óstach:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 src/screens/Login/LoginForm.tsx:169 src/screens/Signup/StepInfo/index.tsx:106 src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Soláthraí óstála" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Conas ar cheart dúinn an nasc seo a oscailt?" -#: src/view/com/modals/VerifyEmail.tsx:222 src/view/screens/Settings/DisableEmail2FADialog.tsx:132 src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Tá cód agam" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Tá cód dearbhaithe agam" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Tá fearann de mo chuid féin agam" -#: src/components/dms/BlockedByListDialog.tsx:57 src/components/dms/ReportConversationPrompt.tsx:22 +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 msgid "I understand" msgstr "Tuigim" @@ -2604,18 +3545,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leathnaithe" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Mura roghnaítear tada, tá sé oiriúnach do gach aois." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Mura roghnaítear tada, tá sé oiriúnach do gach aois." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Ní duine fásta thú de réir dhlí do thíre, tá ar do thuismitheoir nó do chaomhnóir dlíthiúil na Téarmaí seo a léamh ar do shon." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ais." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais." @@ -2631,15 +3572,15 @@ msgstr "Má tá sé i gceist agat do hanla nó ríomhphost a athrú, déan sin s msgid "Illegal and Urgent" msgstr "Mídhleathach agus Práinneach" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Íomhá" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Téacs malartach le híomhá" +#~ msgid "Image alt text" +#~ msgstr "Téacs malartach le híomhá" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "Sábháladh an íomhá ar do rolla ceamara!" @@ -2655,7 +3596,7 @@ msgstr "Pearsanú, mífhaisnéis, nó ráitis bhréagacha" msgid "Inappropriate messages or explicit links" msgstr "Teachtaireachtaí míchuí nó nascanna graosta" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Cuir isteach an cód a seoladh chuig do ríomhphost leis an bpasfhocal a athrú" @@ -2667,7 +3608,7 @@ msgstr "Cuir isteach an cód dearbhaithe leis an gcuntas a scriosadh" msgid "Input name for app password" msgstr "Cuir isteach an t-ainm le haghaidh phasfhocal na haipe" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Cuir isteach an pasfhocal nua" @@ -2675,19 +3616,23 @@ msgstr "Cuir isteach an pasfhocal nua" msgid "Input password for account deletion" msgstr "Cuir isteach an pasfhocal chun an cuntas a scriosadh" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Cuir isteach an cód a chuir muid chugat i dteachtaireacht r-phoist" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:221 +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Cuir isteach an pasfhocal ceangailte le {identifier}" + +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Cuir isteach an leasainm nó an seoladh ríomhphoist a d’úsáid tú nuair a chláraigh tú" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Cuir isteach do phasfhocal" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Cuir isteach an soláthraí óstála is fearr leat" @@ -2695,15 +3640,20 @@ msgstr "Cuir isteach an soláthraí óstála is fearr leat" msgid "Input your user handle" msgstr "Cuir isteach do leasainm" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Idirghníomhaíocht teoranta" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Ag cur Teachtaireachtaí Díreacha in aithne duit" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Ag cur Teachtaireachtaí Díreacha in aithne duit" -#: src/screens/Login/LoginForm.tsx:145 src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Tá an cód 2FA seo neamhbhailí." @@ -2711,11 +3661,12 @@ msgstr "Tá an cód 2FA seo neamhbhailí." msgid "Invalid or unsupported post record" msgstr "Taifead postála atá neamhbhailí nó gan bhunús" -#: src/screens/Login/LoginForm.tsx:91 src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Leasainm nó pasfhocal míchruinn" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "Cód Deimhnithe Neamhbhailí" @@ -2723,7 +3674,7 @@ msgstr "Cód Deimhnithe Neamhbhailí" msgid "Invite a Friend" msgstr "Tabhair cuireadh chuig cara leat" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Cód cuiridh" @@ -2751,50 +3702,80 @@ msgstr "Tabhair cuireadh do do chuid cairde na fothaí agus na daoine is fearr l msgid "Invites, but personal" msgstr "Cuirí, ach pearsanta" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:65 +#~ msgid "It shows posts from the people you follow as they happen." +#~ msgstr "Taispeánann sé postálacha ó na daoine a leanann tú nuair a fhoilsítear iad." + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "ID an Jab: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Jabanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 src/screens/StarterPack/StarterPackLandingScreen.tsx:212 src/screens/StarterPack/StarterPackScreen.tsx:443 src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Cláraigh le Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Glac páirt sa chomhrá" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "Cláraithe {0}" +#~ msgid "Joined {0}" +#~ msgstr "Cláraithe {0}" -#: src/screens/Onboarding/index.tsx:21 src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Iriseoireacht" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/LabelsOnMe.tsx:59 +#~ msgid "label has been placed on this {labelTarget}" +#~ msgstr "cuireadh lipéad ar an {labelTarget} seo" + +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Lipéad curtha ag {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Lipéadaithe ag an údar." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Lipéid" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nótaí faoi úsáideoirí nó ábhar is ea lipéid. Is féidir úsáid a bhaint astu leis an líonra a cheilt, a chatagóiriú, agus fainic a chur air." +#: src/components/moderation/LabelsOnMe.tsx:61 +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "cuireadh lipéid ar an {labelTarget}" + #: src/components/moderation/LabelsOnMeDialog.tsx:71 msgid "Labels on your account" msgstr "Lipéid ar do chuntas" @@ -2807,43 +3788,58 @@ msgstr "Lipéid ar do chuid ábhair" msgid "Language selection" msgstr "Rogha teanga" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Socruithe teanga" -#: src/Navigation.tsx:160 src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Socruithe teanga" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Teangacha" -#: src/screens/Hashtag.tsx:97 src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Is Déanaí" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Tuilleadh eolais maidir le Bluesky" -#: src/components/moderation/ContentHider.tsx:66 src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Foghlaim níos mó faoin modhnóireacht a dhéantar ar an ábhar seo." -#: src/components/moderation/PostHider.tsx:100 src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" -#: src/screens/Moderation/index.tsx:583 src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Tuilleadh eolais." @@ -2851,15 +3847,20 @@ msgstr "Tuilleadh eolais." msgid "Leave" msgstr "Éirigh as" -#: src/components/dms/MessagesListBlockedFooter.tsx:66 src/components/dms/MessagesListBlockedFooter.tsx:73 +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 msgid "Leave chat" msgstr "Éirigh as an gcomhrá" -#: src/components/dms/ConvoMenu.tsx:138 src/components/dms/ConvoMenu.tsx:141 src/components/dms/ConvoMenu.tsx:208 src/components/dms/ConvoMenu.tsx:211 src/components/dms/LeaveConvoPrompt.tsx:46 +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" msgstr "Éirigh as an gcomhrá" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Fág iad uile gan tic le teanga ar bith a fheiceáil." @@ -2871,42 +3872,70 @@ msgstr "Ag fágáil slán ag Bluesky" msgid "left to go." msgstr "le déanamh fós." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/view/screens/Settings/index.tsx:310 +#~ msgid "Legacy storage cleared, you need to restart the app now." +#~ msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Lig dom roghnú" -#: src/screens/Login/index.tsx:130 src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Socraímis do phasfhocal arís!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Ar aghaidh linn!" -#: src/screens/Settings/AppearanceSettings.tsx:90 src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Sorcha" +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Like" +#~ msgstr "Mol" + #: src/components/ProgressGuide/List.tsx:48 msgid "Like 10 posts" msgstr "Mol 10 bpostáil." -#: src/state/shell/progress-guide.tsx:157 src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 msgid "Like 10 posts to train the Discover feed" msgstr "Mol 10 bpostáil leis an bhfotha Discover a thraenáil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Mol an fotha seo" -#: src/components/LikesDialog.tsx:87 src/Navigation.tsx:231 src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Molta ag" -#: src/screens/Post/PostLikedBy.tsx:31 src/screens/Post/PostLikedBy.tsx:32 src/screens/Profile/ProfileLabelerLikedBy.tsx:29 src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Molta ag" +#: src/view/com/feeds/FeedSourceCard.tsx:268 +#~ msgid "Liked by {0} {1}" +#~ msgstr "Molta ag {0} {1}" + +#: src/components/LabelingServiceCard/index.tsx:72 +#~ msgid "Liked by {count} {0}" +#~ msgstr "Molta ag {count} {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:NaN +#~ msgid "Liked by {likeCount} {0}" +#~ msgstr "Molta ag {likeCount} {0}" + #: src/view/com/notifications/FeedItem.tsx:211 msgid "liked your custom feed" msgstr "a mhol do shainfhotha" @@ -2915,7 +3944,7 @@ msgstr "a mhol do shainfhotha" msgid "liked your post" msgstr "a mhol do phostáil" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Moltaí" @@ -2923,23 +3952,24 @@ msgstr "Moltaí" msgid "Likes on this post" msgstr "Moltaí don phostáil seo" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Liosta" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Abhatár an Liosta" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Liosta blocáilte" -#: src/components/ListCard.tsx:149 src/view/com/feeds/FeedSourceCard.tsx:252 +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Liosta le {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Scriosadh an liosta" @@ -2947,27 +3977,31 @@ msgstr "Scriosadh an liosta" msgid "List has been hidden" msgstr "Cuireadh an liosta i bhfolach" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Cuireadh an liosta i bhfolach" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Balbhaíodh an liosta" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Ainm an liosta" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Liosta díbhlocáilte" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:130 src/view/screens/Profile.tsx:219 src/view/screens/Profile.tsx:226 src/view/shell/desktop/LeftNav.tsx:379 src/view/shell/Drawer.tsx:513 src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Liostaí" @@ -2987,43 +4021,58 @@ msgstr "Lódáil tuilleadh fothaí molta" msgid "Load more suggested follows" msgstr "Lódáil tuilleadh cuntas le leanúint" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Lódáil fógraí nua" -#: src/screens/Profile/Sections/Feed.tsx:94 src/view/com/feeds/FeedPage.tsx:136 src/view/screens/ProfileFeed.tsx:495 src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Lódáil postálacha nua" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Ag lódáil …" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Logleabhar" -#: src/screens/Deactivated.tsx:214 src/screens/Deactivated.tsx:220 +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" msgstr "Logáil isteach nó cláraigh le Bluesky" -#: src/screens/SignupQueued.tsx:155 src/screens/SignupQueued.tsx:158 src/screens/SignupQueued.tsx:184 src/screens/SignupQueued.tsx:187 +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 msgid "Log out" msgstr "Logáil amach" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Feiceálacht le linn a bheith logáilte amach" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Logáil isteach ar chuntas nach bhfuil liostáilte" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Brú fada le clár na clibe le haghaidh #{tag} a oscailt" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Tá cuma XXXXX-XXXXX air" @@ -3035,11 +4084,16 @@ msgstr "Is cosúil nár sábháil tú fotha ar bith! Lean na moltaí a rinne mui msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" msgstr "Is cosúil gur éirigh tú as na fothaí uilig a bhí agat. Ná bíodh imní ort. Tig leat fothaí eile a roghnú thíos 😄" +#: src/screens/Feeds/NoFollowingFeed.tsx:38 +#, fuzzy +#~ msgid "Looks like you're missing a following feed." +#~ msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo le ceann a fháil." + #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo le ceann a fháil." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Déan ceann domsa" @@ -3051,31 +4105,40 @@ msgstr "Bí cinnte go bhfuil tú ag iarraidh cuairt a thabhairt ar an áit sin!" msgid "Manage your muted words and tags" msgstr "Bainistigh do chuid clibeanna agus na focail a bhalbhaigh tú" -#: src/components/dms/ConvoMenu.tsx:151 src/components/dms/ConvoMenu.tsx:158 +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" msgstr "Marcáil léite" -#: src/view/screens/AccessibilitySettings.tsx:106 src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Meáin" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "úsáideoirí luaite" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Úsáideoirí luaite" -#: src/view/com/util/ViewHeader.tsx:90 src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Clár" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Teachtaireacht {0}" -#: src/components/dms/MessageMenu.tsx:72 src/screens/Messages/List/ChatListItem.tsx:155 +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" @@ -3083,22 +4146,31 @@ msgstr "Scriosadh an teachtaireacht" msgid "Message from server: {0}" msgstr "Teachtaireacht ón bhfreastalaí: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Réimse ionchur teachtaireachtaí" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Tá an teachtaireacht rófhada" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Socruithe teachtaireachta" -#: src/Navigation.tsx:565 src/screens/Messages/List/index.tsx:164 src/screens/Messages/List/index.tsx:246 src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Teachtaireachtaí" +#: src/Navigation.tsx:307 +#, fuzzy +#~ msgid "Messaging settings" +#~ msgstr "Socruithe teachtaireachta" + #: src/lib/moderation/useReportOptions.ts:47 msgid "Misleading Account" msgstr "Cuntas atá Míthreorach" @@ -3108,66 +4180,72 @@ msgid "Misleading Post" msgstr "Postáil atá Míthreorach" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Mód" +#~ msgid "Mode" +#~ msgstr "Mód" -#: src/Navigation.tsx:135 src/screens/Moderation/index.tsx:105 src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Modhnóireacht" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Mionsonraí modhnóireachta" -#: src/components/ListCard.tsx:145 src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Liosta modhnóireachta le {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Liosta modhnóireachta le <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Liosta modhnóireachta leat" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Liosta modhnóireachta cruthaithe" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Liosta modhnóireachta uasdátaithe" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:140 src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "socruithe modhnóireachta" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Socruithe modhnóireachta" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Stádais modhnóireachta" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Uirlisí modhnóireachta" -#: src/components/moderation/ModerationDetailsDialog.tsx:51 src/lib/moderation/useModerationCauseDescription.ts:45 +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 msgid "Moderator has chosen to set a general warning on the content." msgstr "Chuir an modhnóir rabhadh ginearálta ar an ábhar." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Tuilleadh" @@ -3175,27 +4253,29 @@ msgstr "Tuilleadh" msgid "More feeds" msgstr "Tuilleadh fothaí" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Tuilleadh roghanna" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Freagraí a fuair an méid is mó moltaí ar dtús" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Scannáin" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Ceol" -#: src/components/TagMenu/index.tsx:263 src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "Balbhaigh" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "Balbhaigh" @@ -3204,31 +4284,46 @@ msgstr "Balbhaigh" msgid "Mute {truncatedTag}" msgstr "Balbhaigh {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Balbhaigh an Cuntas" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Balbhaigh cuntais" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Balbhaigh gach postáil {displayTag}" -#: src/components/dms/ConvoMenu.tsx:172 src/components/dms/ConvoMenu.tsx:178 +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" msgstr "Balbhaigh an comhrá" +#: src/components/dialogs/MutedWords.tsx:148 +#~ msgid "Mute in tags only" +#~ msgstr "Ná cuir i bhfolach ach i gclibeanna" + +#: src/components/dialogs/MutedWords.tsx:133 +#~ msgid "Mute in text & tags" +#~ msgstr "Cuir i bhfolach i dtéacs agus i gclibeanna" + #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" msgstr "Balbhaigh i:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Balbhaigh an liosta" -#: src/view/screens/ProfileList.tsx:729 +#: src/components/dms/ConvoMenu.tsx:NaN +#, fuzzy +#~ msgid "Mute notifications" +#~ msgstr "Fógraí" + +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a bhalbhú?" @@ -3256,23 +4351,30 @@ msgstr "Balbhaigh an focal seo i gclibeanna amháin" msgid "Mute this word until you unmute it" msgstr "Balbhaigh an focal seo go ndíbhalbhóidh mé é" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Balbhaigh an snáithe seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Balbhaigh focail ⁊ clibeanna" -#: src/screens/Moderation/index.tsx:264 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#~ msgid "Muted" +#~ msgstr "Curtha i bhfolach" + +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Cuntais a balbhaíodh" -#: src/Navigation.tsx:145 src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Cuntais a balbhaíodh" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhotha agus as do chuid fógraí. Is príobháideach ar fad é an cur i bhfolach." @@ -3280,96 +4382,118 @@ msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhot msgid "Muted by \"{0}\"" msgstr "Curtha i bhfolach ag \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Tá an balbhú príobháideach. Is féidir leis na cuntais a bhalbhaigh tú do chuid postálacha a fheiceáil agus is féidir leo scríobh chugat ach ní fheicfidh tú a gcuid postálacha eile ná aon fhógraí uathu." -#: src/components/dialogs/BirthDateSettings.tsx:35 src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Mo Bhreithlá" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Mo Chuid Fothaí" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mo Phróifíl" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Na fothaí a shábháil mé" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Na Fothaí a Shábháil Mé" -#: src/view/com/modals/AddAppPasswords.tsx:174 src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Ainm" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Tá an t-ainm riachtanach" -#: src/lib/moderation/useReportOptions.ts:59 src/lib/moderation/useReportOptions.ts:98 src/lib/moderation/useReportOptions.ts:106 src/lib/moderation/useReportOptions.ts:114 +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 msgid "Name or Description Violates Community Standards" msgstr "Sáraíonn an tAinm nó an Cur Síos Caighdeáin an Phobail" -#: src/screens/Onboarding/index.tsx:22 src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Nádúr" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "Téigh go {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Téigh go dtí an pacáiste fáilte" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Téigh go dtí an pacáiste fáilte" -#: src/screens/Login/ForgotPasswordForm.tsx:172 src/screens/Login/LoginForm.tsx:319 src/view/com/modals/ChangePassword.tsx:169 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Téann sé seo chuig an gcéad scáileán eile" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Téann sé seo chuig do phróifíl" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN +#~ msgid "Never lose access to your followers and data." +#~ msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo." + +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Is cuma, cruthaigh leasainm dom" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Nua" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Nua" -#: src/components/dms/dialogs/NewChatDialog.tsx:54 src/screens/Messages/List/index.tsx:331 src/screens/Messages/List/index.tsx:338 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Comhrá nua" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Teachtaireachtaí nua" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Liosta modhnóireachta nua" @@ -3381,16 +4505,22 @@ msgstr "Pasfhocal Nua" msgid "New Password" msgstr "Pasfhocal Nua" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Postáil nua" -#: src/view/screens/Feeds.tsx:580 src/view/screens/Notifications.tsx:228 src/view/screens/Profile.tsx:489 src/view/screens/ProfileFeed.tsx:429 src/view/screens/ProfileList.tsx:237 src/view/screens/ProfileList.tsx:276 src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Postáil nua" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Postáil nua" @@ -3399,47 +4529,77 @@ msgstr "Postáil nua" msgid "New user info dialog" msgstr "Dialóg: eolas faoi úsáideoir nua" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Liosta Nua d’Úsáideoirí" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" -#: src/screens/Onboarding/index.tsx:20 src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Nuacht" -#: src/screens/Login/ForgotPasswordForm.tsx:143 src/screens/Login/ForgotPasswordForm.tsx:149 src/screens/Login/LoginForm.tsx:318 src/screens/Login/LoginForm.tsx:325 src/screens/Login/SetNewPasswordForm.tsx:174 src/screens/Login/SetNewPasswordForm.tsx:180 src/screens/Signup/BackNextButtons.tsx:66 src/screens/StarterPack/Wizard/index.tsx:183 src/screens/StarterPack/Wizard/index.tsx:187 src/screens/StarterPack/Wizard/index.tsx:358 src/screens/StarterPack/Wizard/index.tsx:365 src/view/com/modals/ChangePassword.tsx:254 src/view/com/modals/ChangePassword.tsx:256 +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" msgstr "Ar aghaidh" +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "Ar aghaidh" + #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" msgstr "An chéad íomhá eile" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 src/view/screens/PreferencesFollowingFeed.tsx:96 src/view/screens/PreferencesFollowingFeed.tsx:131 src/view/screens/PreferencesFollowingFeed.tsx:168 src/view/screens/PreferencesThreads.tsx:100 src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Níl" -#: src/view/screens/ProfileFeed.tsx:564 src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Gan chur síos" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Gan Phainéal DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Ní fuarthas aon fhothaí. Bain triail as rud éigin eile a chuardach." -#: src/components/ProfileCard.tsx:336 src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" @@ -3447,11 +4607,11 @@ msgstr "Ní leantar {0} níos mó" msgid "No longer than 253 characters" msgstr "Gan a bheith níos faide na 253 charachtar" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Níl aon teachtaireacht ann fós" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Níl aon chomhráite eile le taispeáint" @@ -3459,7 +4619,8 @@ msgstr "Níl aon chomhráite eile le taispeáint" msgid "No notifications yet!" msgstr "Níl aon fhógra ann fós!" -#: src/components/dms/MessagesNUX.tsx:149 src/components/dms/MessagesNUX.tsx:152 src/screens/Messages/Settings.tsx:93 src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Duine ar bith" @@ -3467,15 +4628,24 @@ msgstr "Duine ar bith" msgid "No one but the author can quote this post." msgstr "Is é an t-údar amháin atá in ann an phostáil seo a athlua." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Gan phostáil fós." -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Gan torthaí" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Toradh ar bith" @@ -3483,31 +4653,54 @@ msgstr "Toradh ar bith" msgid "No results found" msgstr "Gan torthaí" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Gan torthaí ar “{query}”" -#: src/view/com/modals/ListAddRemoveUsers.tsx:128 src/view/screens/Search/Search.tsx:233 src/view/screens/Search/Search.tsx:272 src/view/screens/Search/Search.tsx:318 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Gan torthaí ar {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Gan torthaí ar \"{search}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dms/NewChat.tsx:240 +#, fuzzy +#~ msgid "No search results found for \"{searchText}\"." +#~ msgstr "Gan torthaí ar \"{search}\"." + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Níor mhaith liom é sin." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Duine ar bith" -#: src/components/LikedByList.tsx:79 src/components/LikesDialog.tsx:99 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 +#~ msgid "Nobody can reply" +#~ msgstr "Níl cead ag éinne freagra a thabhairt" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Níor mhol éinne fós é. Ar cheart duit tosú?" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Ní fuarthas éinne. Bain triail as duine éigin eile a chuardach." @@ -3515,47 +4708,62 @@ msgstr "Ní fuarthas éinne. Bain triail as duine éigin eile a chuardach." msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnéasach" -#: src/Navigation.tsx:125 src/view/screens/Profile.tsx:119 +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "Not Applicable." +#~ msgstr "Ní bhaineann sé sin le hábhar." + +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Ní bhfuarthas é sin" -#: src/view/com/modals/VerifyEmail.tsx:254 src/view/com/modals/VerifyEmail.tsx:260 +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" msgstr "Ní anois" -#: src/view/com/profile/ProfileMenu.tsx:372 src/view/com/util/forms/PostDropdownBtn.tsx:654 src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Nóta faoi roinnt" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú seo srian ar fheiceálacht do chuid ábhair ach amháin ar aip agus suíomh Bluesky. Is féidir nach gcloífidh aipeanna eile leis an socrú seo. Is féidir go dtaispeánfar do chuid ábhair d’úsáideoirí atá logáilte amach ar aipeanna agus suíomhanna eile." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Tada anseo" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Scagairí fógra" -#: src/Navigation.tsx:348 src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Socruithe fógra" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Socruithe Fógra" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Fuaimeanna fógra" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Fuaimeanna Fógra" -#: src/Navigation.tsx:560 src/view/screens/Notifications.tsx:145 src/view/screens/Notifications.tsx:155 src/view/screens/Notifications.tsx:203 src/view/shell/bottom-bar/BottomBar.tsx:227 src/view/shell/desktop/LeftNav.tsx:356 src/view/shell/Drawer.tsx:461 src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Fógraí" @@ -3563,11 +4771,12 @@ msgstr "Fógraí" msgid "now" msgstr "anois" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Anois" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Lomnochtacht" @@ -3575,50 +4784,71 @@ msgstr "Lomnochtacht" msgid "Nudity or adult content not labeled as such" msgstr "Lomnochtacht nó ábhar do dhaoine fásta nach bhfuil an lipéad sin air" +#: src/screens/Signup/index.tsx:145 +#~ msgid "of" +#~ msgstr "de" + #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "As" -#: src/components/dialogs/GifSelect.ios.tsx:237 src/components/dialogs/GifSelect.tsx:257 src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Úps!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Úps! Theip ar rud éigin." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "Ochón! Ní raibh muid in ann íomhá a chruthú lena comhroinnt. Ach tá áthas orainn go bhfuil tú anseo mar sin féin 🦋" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "Ochón! Ní raibh muid in ann íomhá a chruthú lena comhroinnt. Ach tá áthas orainn go bhfuil tú anseo mar sin féin 🦋" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Maith go leor" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Na freagraí is sine ar dtús" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:69 +#~ msgid "on" +#~ msgstr "ar" + +#: src/lib/hooks/useTimeAgo.ts:81 +#~ msgid "on {str}" +#~ msgstr "ar {str}" + +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "ar<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Atosú an chláraithe" -#: src/view/com/composer/Composer.tsx:671 +#: src/tours/Tooltip.tsx:118 +#~ msgid "Onboarding tour step {0}: {1}" +#~ msgstr "Céim {0} sa turas fáilte: {1}" + +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Ní oibríonn ach comhaid .jpg agus .png" +#: src/components/WhoCanReply.tsx:245 +#~ msgid "Only {0} can reply" +#~ msgstr "Ní féidir ach le {0} freagra a thabhairt" + #: src/components/WhoCanReply.tsx:217 msgid "Only {0} can reply." msgstr "Ní féidir ach le {0} freagra a thabhairt." @@ -3627,7 +4857,11 @@ msgstr "Ní féidir ach le {0} freagra a thabhairt." msgid "Only contains letters, numbers, and hyphens" msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" @@ -3635,35 +4869,47 @@ msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Úps! Theip ar rud éigin!" -#: src/components/Lists.tsx:199 src/components/StarterPack/ProfileStarterPacks.tsx:304 src/components/StarterPack/ProfileStarterPacks.tsx:313 src/view/screens/AppPasswords.tsx:68 src/view/screens/NotificationsSettings.tsx:45 src/view/screens/Profile.tsx:119 +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Úps!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Oscail" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Oscail roghchlár giorrúcháin phróifíl {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatáir" -#: src/screens/Messages/List/ChatListItem.tsx:219 src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Oscail na roghanna comhrá" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 src/view/com/composer/Composer.tsx:820 src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Oscail nascanna leis an mbrabhsálaí san aip" @@ -3671,7 +4917,7 @@ msgstr "Oscail nascanna leis an mbrabhsálaí san aip" msgid "Open message options" msgstr "Oscail na roghanna teachtaireachta" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tú" @@ -3679,19 +4925,20 @@ msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tú" msgid "Open navigation" msgstr "Oscail an nascleanúint" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Oscail clár an phacáiste fáilte" -#: src/view/screens/Settings/index.tsx:826 src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Oscail logleabhar an chórais" @@ -3699,51 +4946,61 @@ msgstr "Oscail logleabhar an chórais" msgid "Opens {numItems} options" msgstr "Osclaíonn sé seo {numItems} rogha" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Osclaíonn sé seo dialóg leis na daoine a roghnú a bhfuil cead acu freagra a thabhairt don snáithe seo" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Osclaíonn sé seo na socruithe inrochtaineachta" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaithe" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/com/notifications/FeedItem.tsx:349 +#~ msgid "Opens an expanded list of users in this notification" +#~ msgstr "Osclaíonn sé seo liosta méadaithe d’úsáideoirí san fhógra seo" + +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Osclaíonn sé seo socruithe na cuma" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Osclaíonn sé seo an ceamara ar an ngléas" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Osclaíonn sé seo na socruithe comhrá" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Osclaíonn sé seo an t-eagarthóir" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Osclaíonn sé seo gailearaí na ngrianghraf ar an ngléas" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Osclaíonn sé seo na socruithe le haghaidh leabuithe seachtracha" -#: src/view/com/auth/SplashScreen.tsx:50 src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Osclaíonn sé seo an próiseas le cuntas nua Bluesky a chruthú" -#: src/view/com/auth/SplashScreen.tsx:65 src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Osclaíonn sé seo an síniú isteach ar an gcuntas Bluesky atá agat cheana féin" @@ -3755,51 +5012,55 @@ msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú" msgid "Opens list of invite codes" msgstr "Osclaíonn sé seo liosta na gcód cuiridh" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Osclaíonn sé seo fuinneog chun díghníomhú an chuntais a dhearbhú" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Osclaíonn sé seo an fhuinneog le scriosadh an chuntais a dhearbhú. Tá cód ríomhphoist riachtanach" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Osclaíonn sé seo an fhuinneog le do phasfhocal Bluesky a athrú" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Osclaíonn sé seo an fhuinneog le leasainm nua Bluesky a roghnú" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Osclaíonn sé seo an fhuinneog le stór sonraí do chuntais Bluesky a íoslódáil" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Osclaíonn sé seo an fhuinneog le sainfhearann a úsáid" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Osclaíonn sé seo socruithe na modhnóireachta" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/com/home/HomeHeaderLayout.web.tsx:NaN +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte a athrú" + +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte go léir" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Osclaíonn sé seo an leathanach a bhfuil socruithe phasfhocal na haipe air" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Osclaíonn sé seo roghanna don fhotha Following" @@ -3807,23 +5068,30 @@ msgstr "Osclaíonn sé seo roghanna don fhotha Following" msgid "Opens the linked website" msgstr "Osclaíonn sé seo an suíomh gréasáin atá nasctha" -#: src/view/screens/Settings/index.tsx:827 src/view/screens/Settings/index.tsx:837 +#: src/screens/Messages/List/index.tsx:86 +#, fuzzy +#~ msgid "Opens the message settings page" +#~ msgstr "Osclaíonn sé seo logleabhar an chórais" + +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Osclaíonn sé seo leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Osclaíonn sé seo logleabhar an chórais" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Osclaíonn sé seo roghanna na snáitheanna" -#: src/view/com/notifications/FeedItem.tsx:551 src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Osclaíonn sé an phróifíl seo" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Osclaíonn sé seo an roghnóir físeán" @@ -3831,7 +5099,8 @@ msgstr "Osclaíonn sé seo an roghnóir físeán" msgid "Option {0} of {numItems}" msgstr "Rogha {0} as {numItems}" -#: src/components/dms/ReportDialog.tsx:183 src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:" @@ -3839,7 +5108,7 @@ msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:" msgid "Options:" msgstr "Roghanna:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Nó cuir na roghanna seo le chéile:" @@ -3852,14 +5121,15 @@ msgid "Or, log into one of your other accounts." msgstr "Nó, logáil isteach i gceann eile de do chuntais." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Eile" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Cuntas eile" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Cuntais eile" @@ -3867,19 +5137,23 @@ msgstr "Cuntais eile" msgid "Other..." msgstr "Eile…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. Chinn siad gan ligean duit comhráite a úsáid ar Bluesky." -#: src/components/Lists.tsx:216 src/view/screens/NotFound.tsx:45 +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Leathanach gan aimsiú" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Leathanach gan aimsiú" -#: src/screens/Login/LoginForm.tsx:213 src/screens/Signup/StepInfo/index.tsx:162 src/view/com/modals/DeleteAccount.tsx:257 src/view/com/modals/DeleteAccount.tsx:264 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" msgstr "Pasfhocal" @@ -3887,39 +5161,42 @@ msgstr "Pasfhocal" msgid "Password Changed" msgstr "Athraíodh an pasfhocal" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Pasfhocal uasdátaithe" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Pasfhocal uasdátaithe!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Sos" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Cuir an físeán ar shos" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Tá cead de dhíth le rolla an cheamara a oscailt." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Ní bhfuarthas cead le rolla an cheamara a oscailt. Athraigh socruithe an chórais len é seo a chur ar fáil, le do thoil." @@ -3927,55 +5204,75 @@ msgstr "Ní bhfuarthas cead le rolla an cheamara a oscailt. Athraigh socruithe a msgid "Person toggle" msgstr "Scoránú duine" -#: src/screens/Onboarding/index.tsx:28 src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Peataí" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Grianghrafadóireacht" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Pictiúir le haghaidh daoine fásta." -#: src/view/screens/ProfileFeed.tsx:289 src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Greamaigh le Baile" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Fothaí greamaithe" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Greamaithe le do chuid fothaí" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Seinn" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Seinn {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/screens/Messages/Settings.tsx:NaN +#, fuzzy +#~ msgid "Play notification sounds" +#~ msgstr "Fuaimeanna fógra" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Seinn nó stop an GIF" -#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Seinn an físeán" -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 msgid "Play Video" msgstr "Seinn an físeán" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Seinneann sé seo an GIF" @@ -3983,7 +5280,8 @@ msgstr "Seinneann sé seo an GIF" msgid "Please choose your handle." msgstr "Roghnaigh do leasainm, le do thoil." -#: src/screens/Signup/state.ts:210 src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Roghnaigh do phasfhocal, le do thoil." @@ -4007,11 +5305,12 @@ msgstr "Cuir isteach ainm nach bhfuil in úsáid cheana féin le haghaidh Phasfh msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Cuir focal, clib, nó frása inghlactha isteach le balbhú" -#: src/screens/Signup/state.ts:196 src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Cuir isteach do chód cuiridh." @@ -4019,15 +5318,16 @@ msgstr "Cuir isteach do chód cuiridh." msgid "Please enter your password as well:" msgstr "Cuir isteach do phasfhocal freisin, le do thoil." -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Abair linn, le do thoil, cén fáth a gcreideann tú gur chuir {0} an lipéad seo i bhfeidhm go mícheart" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mínigh, le do thoil, an fáth a gcreideann tú go bhfuil sé mícheart nach ligtear duit comhráite a úsáid" -#: src/lib/hooks/useAccountSwitcher.ts:48 src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Logáil isteach mar @{0}" @@ -4036,18 +5336,21 @@ msgid "Please Verify Your Email" msgstr "Dearbhaigh do ríomhphost, le do thoil." #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Fan le lódáil ar fad do chárta naisc, le do thoil." +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Fan le lódáil ar fad do chárta naisc, le do thoil." -#: src/screens/Onboarding/index.tsx:34 src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Polaitíocht" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornagrafaíocht" -#: src/view/com/composer/Composer.tsx:646 src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Postáil" @@ -4061,27 +5364,36 @@ msgstr "Postáil" msgid "Post by {0}" msgstr "Postáil ó {0}" -#: src/Navigation.tsx:199 src/Navigation.tsx:206 src/Navigation.tsx:213 src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Postáil ó @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Scriosadh an phostáil" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Cuireadh an phostáil i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:106 src/lib/moderation/useModerationCauseDescription.ts:104 +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 msgid "Post Hidden by Muted Word" msgstr "Postáil nach bhfuil le feiceáil de bharr focail a bhalbhaigh tú" -#: src/components/moderation/ModerationDetailsDialog.tsx:109 src/lib/moderation/useModerationCauseDescription.ts:113 +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 msgid "Post Hidden by You" msgstr "Postáil a chuir tú i bhfolach" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Socruithe idirghníomhaíochta na postála" @@ -4089,22 +5401,36 @@ msgstr "Socruithe idirghníomhaíochta na postála" msgid "Post language" msgstr "Teanga postála" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Teangacha postála" -#: src/view/com/post-thread/PostThread.tsx:207 src/view/com/post-thread/PostThread.tsx:219 +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 msgid "Post not found" msgstr "Ní bhfuarthas an phostáil" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "postálacha" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Postálacha" +#: src/components/dialogs/MutedWords.tsx:89 +#~ msgid "Posts can be muted based on their text, their tags, or both." +#~ msgstr "Is féidir postálacha a chuir i bhfolach de bharr a gcuid téacs, a gcuid clibeanna, nó an dá rud." + #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Is féidir leat postálacha a bhalbhú bunaithe ar an téacs, clibeanna, nó an dá rud. Molaimid focail choitianta a bhíonn i go leor postálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr." @@ -4121,7 +5447,7 @@ msgstr "Is féidir go bhfuil an nasc seo míthreorach." msgid "Preference saved" msgstr "Sábháladh an rogha" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Brúigh le iarracht a thabhairt ar nascadh arís" @@ -4129,10 +5455,18 @@ msgstr "Brúigh le iarracht a thabhairt ar nascadh arís" msgid "Press to change hosting provider" msgstr "Brúigh leis an soláthraí óstála a athrú" -#: src/components/Error.tsx:61 src/components/Lists.tsx:93 src/screens/Messages/Conversation/MessageListError.tsx:24 src/screens/Signup/BackNextButtons.tsx:46 +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Brúigh le iarracht eile a dhéanamh" +#: src/screens/Messages/Conversation/MessagesList.tsx:NaN +#, fuzzy +#~ msgid "Press to Retry" +#~ msgstr "Brúigh le iarracht eile a dhéanamh" + #: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fheiceáil" @@ -4141,69 +5475,83 @@ msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fhe msgid "Previous image" msgstr "An íomhá roimhe seo" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Príomhtheanga" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Tabhair Tosaíocht do Do Chuid Leantóirí" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Fógraí tábhachtacha" -#: src/view/screens/Settings/index.tsx:620 src/view/shell/desktop/RightNav.tsx:81 +#: src/view/screens/Settings/index.tsx:621 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Príobháideacht" -#: src/Navigation.tsx:266 src/screens/Signup/StepInfo/Policies.tsx:62 src/view/screens/PrivacyPolicy.tsx:29 src/view/screens/Settings/index.tsx:911 src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Polasaí príobháideachta" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Roinn TDanna príobháideacha le úsáideoirí eile." +#~ msgid "Privately chat with other users." +#~ msgstr "Roinn TDanna príobháideacha le úsáideoirí eile." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Á phróiseáil..." -#: src/view/screens/DebugMod.tsx:896 src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "próifíl" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 src/view/shell/desktop/LeftNav.tsx:387 src/view/shell/Drawer.tsx:78 src/view/shell/Drawer.tsx:546 src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Próifíl" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Próifíl uasdátaithe" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Dearbhaigh do ríomhphost le do chuntas a chosaint." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Poiblí" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Liostaí poiblí agus inroinnte d’úsáideoirí le balbhú nó le blocáil ar an mórchóir" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Liostaí poiblí agus inroinnte atá in ann fothaí a bheathú" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Foilsigh an phostáil" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Foilsigh an phostáil" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Foilsigh an freagra" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Foilsigh an freagra" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4217,31 +5565,53 @@ msgstr "Íoslódáladh an cód QR!" msgid "QR code saved to your camera roll!" msgstr "Sábháladh an cód QR i do rolla cheamara!" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 src/view/com/util/post-ctrls/RepostButton.tsx:152 src/view/com/util/post-ctrls/RepostButton.web.tsx:85 src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +#: src/tours/Tooltip.tsx:111 +#~ msgid "Quick tip" +#~ msgstr "Leid ghaste" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "Postáil athluaite" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/modals/Repost.tsx:66 +#~ msgctxt "action" +#~ msgid "Quote post" +#~ msgstr "Luaigh an phostáil seo" + +#: src/view/com/modals/Repost.tsx:71 +#~ msgctxt "action" +#~ msgid "Quote Post" +#~ msgstr "Luaigh an phostáil seo" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "Athcheanglaíodh an phostáil athluaite" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "Dícheanglaíodh an phostáil athluaite" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 src/view/com/util/post-ctrls/RepostButton.tsx:124 src/view/com/util/post-ctrls/RepostButton.tsx:151 src/view/com/util/post-ctrls/RepostButton.web.tsx:84 src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "Ní féidir postálacha a athlua" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "Is féidir postálacha a athlua" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Socruithe maidir le postálacha athluaite" -#: src/screens/Post/PostQuotes.tsx:31 src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Postálacha athluaite" @@ -4249,15 +5619,16 @@ msgstr "Postálacha athluaite" msgid "Quotes of this post" msgstr "Postálacha athluaite den phostáil seo" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Randamach" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Cóimheasa" +#~ msgid "Ratios" +#~ msgstr "Cóimheasa" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Athcheangail an phostáil athluaite" @@ -4265,39 +5636,62 @@ msgstr "Athcheangail an phostáil athluaite" msgid "Reactivate your account" msgstr "Athghníomhaigh do chuntas" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Léigh blag Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Léigh Polasaí Príobháideachta Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Léigh Téarmaí Seirbhíse Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Fáth:" -#: src/view/screens/Search/Search.tsx:926 +#: src/components/dms/MessageReportDialog.tsx:149 +#, fuzzy +#~ msgid "Reason: {0}" +#~ msgstr "Fáth:" + +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Cuardaigh a Rinneadh le Déanaí" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 +#~ msgid "Recommended Feeds" +#~ msgstr "Fothaí molta" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 +#~ msgid "Recommended Users" +#~ msgstr "Cuntais mholta" + +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Athnasc" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Athnuaigh fógraí" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Athlódáil comhráite" -#: src/components/dialogs/MutedWords.tsx:438 src/components/FeedCard.tsx:313 src/components/StarterPack/Wizard/WizardListCard.tsx:101 src/components/StarterPack/Wizard/WizardListCard.tsx:108 src/view/com/feeds/FeedSourceCard.tsx:316 src/view/com/modals/ListAddRemoveUsers.tsx:269 src/view/com/modals/SelfLabel.tsx:84 src/view/com/modals/UserAddRemoveLists.tsx:229 src/view/com/posts/FeedErrorMessage.tsx:213 src/view/com/util/AccountDropdownBtn.tsx:61 +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/view/com/feeds/FeedSourceCard.tsx:316 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" msgstr "Scrios" @@ -4309,11 +5703,11 @@ msgstr "Bain {displayName} den phacáiste fáilte" msgid "Remove account" msgstr "Bain an cuntas de" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "Bain an ceangaltán de" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Bain an tAbhatár Amach" @@ -4321,11 +5715,13 @@ msgstr "Bain an tAbhatár Amach" msgid "Remove Banner" msgstr "Bain an Fógra Meirge Amach" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Bain an leabú" -#: src/view/com/posts/FeedErrorMessage.tsx:169 src/view/com/posts/FeedShutdownMsg.tsx:116 src/view/com/posts/FeedShutdownMsg.tsx:120 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 msgid "Remove feed" msgstr "Bain an fotha de" @@ -4333,11 +5729,17 @@ msgstr "Bain an fotha de" msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" -#: src/view/com/feeds/FeedSourceCard.tsx:187 src/view/com/feeds/FeedSourceCard.tsx:265 src/view/screens/ProfileFeed.tsx:333 src/view/screens/ProfileFeed.tsx:339 src/view/screens/ProfileList.tsx:499 +#: src/view/com/feeds/FeedSourceCard.tsx:187 +#: src/view/com/feeds/FeedSourceCard.tsx:265 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" -#: src/components/FeedCard.tsx:308 src/view/com/feeds/FeedSourceCard.tsx:311 +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "É sin a bhaint de mo chuid fothaí?" @@ -4349,31 +5751,36 @@ msgstr "An bhfuil fonn ort é a bhaint den mhearliosta?" msgid "Remove from saved feeds" msgstr "Bain de mo chuid fothaí sábháilte" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Bain an íomhá de" +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#~ msgid "Remove image preview" +#~ msgstr "Bain réamhléiriú den íomhá" + #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" msgstr "Bain focal balbhaithe de do liosta" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Bain an phróifíl" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Bain an phróifíl seo as an stair cuardaigh" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Bain an t-athfhriotal de" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Scrios an athphostáil" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "Bain an comhad fotheideal" @@ -4381,15 +5788,16 @@ msgstr "Bain an comhad fotheideal" msgid "Remove this feed from your saved feeds" msgstr "Bain an fotha seo de do chuid fothaí sábháilte" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Bainte ag an údar" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Bainte agat" -#: src/view/com/modals/ListAddRemoveUsers.tsx:200 src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Baineadh den liosta é" @@ -4397,27 +5805,40 @@ msgstr "Baineadh den liosta é" msgid "Removed from my feeds" msgstr "Baineadh de do chuid fothaí é" -#: src/screens/List/ListHiddenScreen.tsx:94 src/screens/List/ListHiddenScreen.tsx:160 +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 msgid "Removed from saved feeds" msgstr "Baineadh de do chuid fothaí sábháilte é" -#: src/view/com/posts/FeedShutdownMsg.tsx:44 src/view/screens/ProfileFeed.tsx:192 src/view/screens/ProfileList.tsx:376 +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Baineadh de do chuid fothaí é" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/composer/ExternalEmbed.tsx:88 +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Baineann sé seo an mhionsamhail réamhshocraithe de {0}" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "Baineann sé seo an t-athfhriotal" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "Baineann sé seo an ceangaltán de" +#~ msgid "Removes the attachment" +#~ msgstr "Baineann sé seo an ceangaltán de" -#: src/view/com/posts/FeedShutdownMsg.tsx:129 src/view/com/posts/FeedShutdownMsg.tsx:133 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +#, fuzzy +#~ msgid "Removes the image preview" +#~ msgstr "Bain réamhléiriú den íomhá" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina áit" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Freagraí" @@ -4425,80 +5846,113 @@ msgstr "Freagraí" msgid "Replies disabled" msgstr "Cuireadh bac ar fhreagraí" +#: src/view/com/threadgate/WhoCanReply.tsx:123 +#, fuzzy +#~ msgid "Replies on this thread are disabled" +#~ msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" + #: src/components/WhoCanReply.tsx:215 msgid "Replies to this post are disabled." msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo." -#: src/view/com/composer/Composer.tsx:644 +#: src/components/WhoCanReply.tsx:243 +#~ msgid "Replies to this thread are disabled" +#~ msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" + +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Freagair" -#: src/components/moderation/ModerationDetailsDialog.tsx:115 src/lib/moderation/useModerationCauseDescription.ts:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 +#~ msgid "Reply Filters" +#~ msgstr "Scagairí freagra" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 msgid "Reply Hidden by Thread Author" msgstr "Freagra a chuir údar an tsnáithe i bhfolach" -#: src/components/moderation/ModerationDetailsDialog.tsx:114 src/lib/moderation/useModerationCauseDescription.ts:122 +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 msgid "Reply Hidden by You" msgstr "Freagra a chuir tusa i bhfolach" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "Socruithe freagraí" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagraí" -#: src/view/com/post/Post.tsx:196 src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:NaN +#~ msgctxt "description" +#~ msgid "Reply to <0/>" +#~ msgstr "Freagra ar <0/>" + +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagra ar <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Freagra ar phostáil bhlocáilte" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "Freagra ar phostáil" -#: src/view/com/post/Post.tsx:194 src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Freagra ort" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "Nuashonraíodh infheictheacht na bhfreagraí" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "Cuireadh an freagra i bhfolach" -#: src/components/dms/MessageMenu.tsx:132 src/components/dms/MessagesListBlockedFooter.tsx:77 src/components/dms/MessagesListBlockedFooter.tsx:84 +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "Report" msgstr "Tuairiscigh" -#: src/view/com/profile/ProfileMenu.tsx:323 src/view/com/profile/ProfileMenu.tsx:326 +#: src/components/dms/ConvoMenu.tsx:NaN +#, fuzzy +#~ msgid "Report account" +#~ msgstr "Déan gearán faoi chuntas" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Déan gearán faoi chuntas" -#: src/components/dms/ConvoMenu.tsx:197 src/components/dms/ConvoMenu.tsx:200 src/components/dms/ReportConversationPrompt.tsx:18 +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" msgstr "Tuairiscigh an comhrá seo" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Tuairiscigh comhrá" -#: src/view/screens/ProfileFeed.tsx:350 src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Déan gearán faoi fhotha" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Déan gearán faoi liosta" @@ -4506,11 +5960,13 @@ msgstr "Déan gearán faoi liosta" msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Déan gearán faoi phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Déan gearán faoi phacáiste fáilte" @@ -4526,7 +5982,9 @@ msgstr "Déan gearán faoin fhotha seo" msgid "Report this list" msgstr "Déan gearán faoin liosta seo" -#: src/components/dms/ReportDialog.tsx:48 src/components/dms/ReportDialog.tsx:142 src/components/ReportDialog/SelectReportOptionView.tsx:62 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Tuairiscigh an teachtaireacht seo" @@ -4542,32 +6000,44 @@ msgstr "Tuairiscigh an pacáiste fáilte seo" msgid "Report this user" msgstr "Déan gearán faoin úsáideoir seo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 src/view/com/util/post-ctrls/RepostButton.tsx:99 src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Athphostáil" -#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Repost" msgstr "Athphostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 src/view/com/util/post-ctrls/RepostButton.tsx:91 src/view/com/util/post-ctrls/RepostButton.web.tsx:49 src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Athphostáil nó luaigh postáil" -#: src/screens/Post/PostRepostedBy.tsx:31 src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Athphostáilte ag" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Athphostáilte ag {0}" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:214 +#~ msgid "Reposted by <0/>" +#~ msgstr "Athphostáilte ag <0/>" + +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Athphostáilte ag <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Athphostáilte agat" @@ -4579,15 +6049,17 @@ msgstr "— d'athphostáil sé/sí do phostáil" msgid "Reposts of this post" msgstr "Athphostálacha den phostáil seo" -#: src/view/com/modals/ChangeEmail.tsx:176 src/view/com/modals/ChangeEmail.tsx:178 +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 msgid "Request Change" msgstr "Iarr Athrú" -#: src/view/com/modals/ChangePassword.tsx:242 src/view/com/modals/ChangePassword.tsx:244 +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" msgstr "Iarr Cód" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí" @@ -4595,19 +6067,26 @@ msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí" msgid "Require email code to log into your account" msgstr "Bíodh cód ríomhphoist ag teastáil chun logáil isteach" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Riachtanach don soláthraí seo" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Athsheol an ríomhphost" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "Athsheol an ríomhphost" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "Athsheol an ríomhphost dearbhaithe" @@ -4619,164 +6098,233 @@ msgstr "Cód athshocraithe" msgid "Reset Code" msgstr "Cód Athshocraithe" -#: src/view/screens/Settings/index.tsx:866 src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Athshocraigh an próiseas cláraithe" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Athshocraigh an pasfhocal" -#: src/view/screens/Settings/index.tsx:846 src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Athshocraigh na roghanna" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Athshocraíonn sé seo an clárú" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Athshocraíonn sé seo na roghanna" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Baineann sé seo triail eile as an logáil isteach" -#: src/view/com/util/error/ErrorMessage.tsx:57 src/view/com/util/error/ErrorScreen.tsx:74 +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" -#: src/components/dms/MessageItem.tsx:236 src/components/Error.tsx:66 src/components/Lists.tsx:104 src/components/StarterPack/ProfileStarterPacks.tsx:318 src/screens/Login/LoginForm.tsx:298 src/screens/Login/LoginForm.tsx:305 src/screens/Messages/Conversation/MessageListError.tsx:25 src/screens/Onboarding/StepInterests/index.tsx:231 src/screens/Onboarding/StepInterests/index.tsx:234 src/screens/Signup/BackNextButtons.tsx:52 src/view/com/util/error/ErrorMessage.tsx:55 src/view/com/util/error/ErrorScreen.tsx:72 src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 msgid "Retry" msgstr "Bain triail eile as" -#: src/components/Error.tsx:74 src/screens/List/ListHiddenScreen.tsx:205 src/screens/StarterPack/StarterPackScreen.tsx:739 src/view/screens/ProfileList.tsx:1027 +#: src/screens/Messages/Conversation/MessageListError.tsx:54 +#, fuzzy +#~ msgid "Retry." +#~ msgstr "Bain triail eile as" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Filleann sé seo abhaile" -#: src/view/screens/NotFound.tsx:58 src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Filleann sé seo ar an leathanach roimhe seo" -#: src/components/dialogs/BirthDateSettings.tsx:125 src/components/dialogs/PostInteractionSettingsDialog.tsx:438 src/components/dialogs/PostInteractionSettingsDialog.tsx:445 src/components/StarterPack/QrCodeDialog.tsx:187 src/view/com/composer/GifAltText.tsx:162 src/view/com/composer/GifAltText.tsx:168 src/view/com/modals/ChangeHandle.tsx:168 src/view/com/modals/CreateOrEditList.tsx:326 src/view/com/modals/EditProfile.tsx:225 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Sábháil" -#: src/view/com/lightbox/Lightbox.tsx:139 src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Sábháil" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Sábháil an téacs malartach" +#~ msgid "Save alt text" +#~ msgstr "Sábháil an téacs malartach" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Sábháil do bhreithlá" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Sábháil na hathruithe" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Sábháil na hathruithe" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Sábháil an leasainm nua" -#: src/components/StarterPack/ShareDialog.tsx:151 src/components/StarterPack/ShareDialog.tsx:158 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "Sábháil an íomhá" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Sábháil an pictiúr bearrtha" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Sábháil an cód QR" -#: src/view/screens/ProfileFeed.tsx:334 src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Fothaí Sábháilte" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "Sábháladh i do rolla ceamara é" -#: src/view/screens/ProfileFeed.tsx:201 src/view/screens/ProfileList.tsx:356 +#: src/view/com/lightbox/Lightbox.tsx:81 +#~ msgid "Saved to your camera roll." +#~ msgstr "Sábháilte i do rolla ceamara." + +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Sábháilte le mo chuid fothaí" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Sábhálann sé seo na hathruithe a rinne tú ar do phróifíl" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Sábhálann sé seo na hathruithe a rinne tú ar do phróifíl" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Sábhálann sé seo athrú an leasainm go {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Sábhálann sé seo na socruithe le haghaidh íomhánna a laghdú" -#: src/components/dms/ChatEmptyPill.tsx:33 src/components/NewskieDialog.tsx:105 src/view/com/notifications/FeedItem.tsx:412 src/view/com/notifications/FeedItem.tsx:437 +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Abair heileo!" -#: src/screens/Onboarding/index.tsx:33 src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Eolaíocht" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Fill ar an mbarr" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 src/Navigation.tsx:555 src/view/com/modals/ListAddRemoveUsers.tsx:76 src/view/com/util/forms/SearchInput.tsx:67 src/view/com/util/forms/SearchInput.tsx:79 src/view/screens/Search/Search.tsx:421 src/view/screens/Search/Search.tsx:791 src/view/screens/Search/Search.tsx:813 src/view/shell/bottom-bar/BottomBar.tsx:179 src/view/shell/desktop/LeftNav.tsx:349 src/view/shell/Drawer.tsx:398 src/view/shell/Drawer.tsx:399 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cuardaigh" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Déan cuardach ar “{query}”" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Déan cuardach ar \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Lorg na postálacha uile le @{authorHandle} leis an gclib {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Lorg na postálacha uile le @{authorHandle} leis an gclib {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Lorg na postálacha uile leis an gclib {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Lorg na postálacha uile leis an gclib {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Cuardaigh fothaí ar mhaith leat moladh do dhaoine eile." +#: src/components/dms/NewChat.tsx:226 +#~ msgid "Search for someone to start a conversation with." +#~ msgstr "Lorg duine éigin le comhrá a dhéanamh leo." + #: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Cuardaigh úsáideoirí" -#: src/components/dialogs/GifSelect.ios.tsx:159 src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Cuardaigh GIFanna" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Cuardaigh próifílí" -#: src/components/dialogs/GifSelect.ios.tsx:160 src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Cuardaigh Tenor" @@ -4792,23 +6340,31 @@ msgstr "Féach na postálacha {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Féach na postálacha {truncatedTag} leis an úsáideoir" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Féach na postálacha <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Féach na postálacha <0>{displayTag} leis an úsáideoir seo" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Féach ar phostanna le Bluesky" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/com/notifications/FeedItem.tsx:NaN +#~ msgid "See profile" +#~ msgstr "Féach ar an bpróifíl" + +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Féach ar an treoirleabhar seo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 +#~ msgid "See what's next" +#~ msgstr "Féach an chéad rud eile" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "Barra sleamhnáin" @@ -4820,7 +6376,7 @@ msgstr "Roghnaigh {item}" msgid "Select a color" msgstr "Roghnaigh dath" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Roghnaigh cuntas" @@ -4832,7 +6388,7 @@ msgstr "Roghnaigh abhatár" msgid "Select an emoji" msgstr "Roghnaigh emoji" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Roghnaigh ó chuntas atá ann" @@ -4840,7 +6396,7 @@ msgstr "Roghnaigh ó chuntas atá ann" msgid "Select GIF" msgstr "Roghnaigh GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Roghnaigh GIF \"{0}\"" @@ -4848,15 +6404,15 @@ msgstr "Roghnaigh GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Cá fhad a bheidh an focal seo balbhaithe?" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "Roghnaigh teanga..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Roghnaigh teangacha" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Roghnaigh modhnóir" @@ -4864,7 +6420,11 @@ msgstr "Roghnaigh modhnóir" msgid "Select option {i} of {numItems}" msgstr "Roghnaigh rogha {i} as {numItems}" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 +#~ msgid "Select some accounts below to follow" +#~ msgstr "Roghnaigh cúpla cuntas le leanúint" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "Roghnaigh comhad fotheideal (.vtt)" @@ -4872,15 +6432,19 @@ msgstr "Roghnaigh comhad fotheideal (.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatár" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Roghnaigh na seirbhísí modhnóireachta le tuairisciú chuige" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Roghnaigh an tseirbhís a óstálann do chuid sonraí." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 +#~ msgid "Select topical feeds to follow from the list below" +#~ msgstr "Roghnaigh fothaí le leanúint ón liosta thíos" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Roghnaigh físeán" @@ -4888,31 +6452,52 @@ msgstr "Roghnaigh físeán" msgid "Select what content this mute word should apply to." msgstr "Roghnaigh an t-ábhar a gcuirfear an focal balbhaithe seo i bhfeidhm air." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/screens/Onboarding/StepModeration/index.tsx:63 +#~ msgid "Select what you want to see (or not see), and we’ll handle the rest." +#~ msgstr "Roghnaigh na rudaí ba mhaith leat a fheiceáil (nó gan a fheiceáil), agus leanfaimid ar aghaidh as sin" + +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Roghnaigh na teangacha ba mhaith leat a fheiceáil i do chuid fothaí. Mura roghnaíonn tú, taispeánfar ábhar i ngach teanga duit." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Roghnaigh teanga an téacs a thaispeánfar san aip." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Roghnaigh do dháta breithe" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha." +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 +#~ msgid "Select your primary algorithmic feeds" +#~ msgstr "Roghnaigh do phríomhfhothaí algartamacha" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 +#~ msgid "Select your secondary algorithmic feeds" +#~ msgstr "Roghnaigh do chuid fothaí algartamacha tánaisteacha" + #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" msgstr "Seol suíomh gréasáin spéisiúil!" -#: src/view/com/modals/VerifyEmail.tsx:210 src/view/com/modals/VerifyEmail.tsx:212 +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" msgstr "Seol ríomhphost dearbhaithe" @@ -4925,31 +6510,37 @@ msgctxt "action" msgid "Send Email" msgstr "Seol ríomhphost" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Seol aiseolas" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Seol teachtaireacht" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Seol an phostáil seo chuig..." -#: src/components/dms/ReportDialog.tsx:234 src/components/dms/ReportDialog.tsx:237 src/components/ReportDialog/SubmitView.tsx:219 src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Seol an tuairisc" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Seol an tuairisc chuig {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Seol ríomhphost dearbhaithe" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Seol mar theachtaireacht dhíreach" @@ -4957,35 +6548,35 @@ msgstr "Seol mar theachtaireacht dhíreach" msgid "Sends email with confirmation code for account deletion" msgstr "Seolann sé seo ríomhphost ina bhfuil cód dearbhaithe chun an cuntas a scriosadh" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Seoladh an fhreastalaí" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Socraigh do bhreithlá" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Socraigh pasfhocal nua" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Roghnaigh “Níl” chun postálacha athluaite a chur i bhfolach i d'fhotha. Feicfidh tú athphostálacha fós." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Roghnaigh “Níl” chun freagraí a chur i bhfolach i d'fhotha." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Roghnaigh “Níl” chun athphostálacha a chur i bhfolach i d'fhotha." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Roghnaigh “Tá” le freagraí a thaispeáint i snáitheanna. Is gné thurgnamhach é seo." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Roghnaigh “Tá” le samplaí ó do chuid fothaí sábháilte a thaispeáint in ”Á Leanúint”. Is gné thurgnamhach é seo." @@ -4993,31 +6584,54 @@ msgstr "Roghnaigh “Tá” le samplaí ó do chuid fothaí sábháilte a thaisp msgid "Set up your account" msgstr "Socraigh do chuntas" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Socraíonn sé seo d'ainm úsáideora ar Bluesky" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/view/screens/Settings/index.tsx:463 +#~ msgid "Sets color theme to dark" +#~ msgstr "Roghnaíonn sé seo an modh dorcha" + +#: src/view/screens/Settings/index.tsx:456 +#~ msgid "Sets color theme to light" +#~ msgstr "Roghnaíonn sé seo an modh sorcha" + +#: src/view/screens/Settings/index.tsx:450 +#~ msgid "Sets color theme to system setting" +#~ msgstr "Roghnaíonn sé seo scéim dathanna an chórais" + +#: src/view/screens/Settings/index.tsx:489 +#~ msgid "Sets dark theme to the dark theme" +#~ msgstr "Úsáideann sé seo an téama dorcha mar théama dorcha" + +#: src/view/screens/Settings/index.tsx:482 +#~ msgid "Sets dark theme to the dim theme" +#~ msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an phasfhocail" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go cearnógach" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go cearnógach" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go hard" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go hard" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go leathan" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go leathan" -#: src/Navigation.tsx:155 src/view/screens/Settings/index.tsx:302 src/view/shell/desktop/LeftNav.tsx:395 src/view/shell/Drawer.tsx:563 src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Socruithe" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil." @@ -5025,11 +6639,19 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil." msgid "Sexually Suggestive" msgstr "Graosta" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 src/components/StarterPack/QrCodeDialog.tsx:177 src/screens/StarterPack/StarterPackScreen.tsx:411 src/screens/StarterPack/StarterPackScreen.tsx:582 src/view/com/profile/ProfileMenu.tsx:219 src/view/com/profile/ProfileMenu.tsx:228 src/view/com/util/forms/PostDropdownBtn.tsx:410 src/view/com/util/forms/PostDropdownBtn.tsx:419 src/view/com/util/post-ctrls/PostCtrls.tsx:345 src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Comhroinn" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Comhroinn" @@ -5042,27 +6664,33 @@ msgstr "Inis scéal suimiúil!" msgid "Share a fun fact!" msgstr "Roinn rud éigin fútsa féin!" -#: src/view/com/profile/ProfileMenu.tsx:377 src/view/com/util/forms/PostDropdownBtn.tsx:659 src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Comhroinn mar sin féin" -#: src/view/screens/ProfileFeed.tsx:360 src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Comhroinn an fotha" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "Comhroinn an íomhá go seachtrach" +#~ msgid "Share image externally" +#~ msgstr "Comhroinn an íomhá go seachtrach" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "Comhroinn an íomhá i bpostáil" +#~ msgid "Share image in post" +#~ msgstr "Comhroinn an íomhá i bpostáil" -#: src/components/StarterPack/ShareDialog.tsx:124 src/components/StarterPack/ShareDialog.tsx:131 src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Comhroinn an nasc" -#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Comhroinn Nasc" @@ -5070,11 +6698,12 @@ msgstr "Comhroinn Nasc" msgid "Share link dialog" msgstr "Dialóg le nasc a roinnt" -#: src/components/StarterPack/ShareDialog.tsx:135 src/components/StarterPack/ShareDialog.tsx:146 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "Comhroinn an cód QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Roinn an pacáiste fáilte seo" @@ -5086,7 +6715,7 @@ msgstr "Roinn an pacáiste fáilte seo agus cuidigh le daoine páirt a ghlacadh msgid "Share your favorite feed!" msgstr "Roinn an fotha is fearr leat!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Tástáil Roghanna Comhroinnte" @@ -5094,19 +6723,33 @@ msgstr "Tástáil Roghanna Comhroinnte" msgid "Shares the linked website" msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha" -#: src/components/moderation/ContentHider.tsx:116 src/components/moderation/LabelPreference.tsx:136 src/components/moderation/PostHider.tsx:122 src/view/screens/Settings/index.tsx:351 +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:122 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Taispeáin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:68 +#~ msgid "Show all replies" +#~ msgstr "Taispeáin gach freagra" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Taispeáin an téacs malartach" -#: src/components/moderation/ScreenHider.tsx:178 src/components/moderation/ScreenHider.tsx:181 src/screens/List/ListHiddenScreen.tsx:176 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Taispeáin mar sin féin" -#: src/lib/moderation/useLabelBehaviorDescription.ts:27 src/lib/moderation/useLabelBehaviorDescription.ts:63 +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 msgid "Show badge" msgstr "Taispeáin suaitheantas" @@ -5114,11 +6757,16 @@ msgstr "Taispeáin suaitheantas" msgid "Show badge and filter from feeds" msgstr "Taispeáin suaitheantas agus scag ó na fothaí é" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 +#~ msgid "Show follows similar to {0}" +#~ msgstr "Taispeáin cuntais cosúil le {0}" + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" msgstr "Taispeáin freagraí i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Níos lú den sórt seo" @@ -5126,11 +6774,14 @@ msgstr "Níos lú den sórt seo" msgid "Show list anyway" msgstr "Taispeáin an liosta mar sin féin" -#: src/view/com/post-thread/PostThreadItem.tsx:590 src/view/com/post/Post.tsx:234 src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Tuilleadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Níos mó den sórt seo" @@ -5138,34 +6789,68 @@ msgstr "Níos mó den sórt seo" msgid "Show muted replies" msgstr "Taispeáin freagraí balbhaithe" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Taispeáin postálacha ó mo chuid fothaí" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Taispeáin postálacha athluaite" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/screens/Onboarding/StepFollowingFeed.tsx:119 +#~ msgid "Show quote-posts in Following feed" +#~ msgstr "Taispeáin postálacha athluaite san fhotha “Á Leanúint”" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:135 +#~ msgid "Show quotes in Following" +#~ msgstr "Taispeáin postálacha athluaite san fhotha “Á Leanúint”" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:95 +#~ msgid "Show re-posts in Following feed" +#~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”" + +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Taispeáin freagraí" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Taispeáin freagraí ó na daoine a leanann tú roimh aon fhreagra eile." -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/screens/Onboarding/StepFollowingFeed.tsx:87 +#~ msgid "Show replies in Following" +#~ msgstr "Taispeáin freagraí san fhotha “Á Leanúint”" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:71 +#~ msgid "Show replies in Following feed" +#~ msgstr "Taispeáin freagraí san fhotha “Á Leanúint”" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#~ msgid "Show replies with at least {value} {0}" +#~ msgstr "Taispeáin freagraí a bhfuil ar a laghad {value} {0} acu" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Taispeáin freagra do chách" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Taispeáin athphostálacha" -#: src/components/moderation/ContentHider.tsx:69 src/components/moderation/PostHider.tsx:79 +#: src/screens/Onboarding/StepFollowingFeed.tsx:111 +#~ msgid "Show reposts in Following" +#~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”" + +#: src/components/moderation/ContentHider.tsx:130 +#: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Taispeáin an t-ábhar" +#: src/view/com/notifications/FeedItem.tsx:347 +#~ msgid "Show users" +#~ msgstr "Taispeáin úsáideoirí" + #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" msgstr "Taispeáin rabhadh" @@ -5175,18 +6860,34 @@ msgid "Show warning and filter from feeds" msgstr "Taispeáin rabhadh agus scag ó na fothaí é" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Taispeánann sé seo postálacha ó {0} i d'fhotha" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Taispeánann sé seo postálacha ó {0} i d'fhotha" -#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 src/screens/Login/index.tsx:100 src/screens/Login/index.tsx:119 src/screens/Login/LoginForm.tsx:166 src/view/com/auth/SplashScreen.tsx:63 src/view/com/auth/SplashScreen.tsx:72 src/view/com/auth/SplashScreen.web.tsx:112 src/view/com/auth/SplashScreen.web.tsx:121 src/view/shell/bottom-bar/BottomBar.tsx:312 src/view/shell/bottom-bar/BottomBar.tsx:313 src/view/shell/bottom-bar/BottomBar.tsx:315 src/view/shell/bottom-bar/BottomBarWeb.tsx:204 src/view/shell/bottom-bar/BottomBarWeb.tsx:205 src/view/shell/bottom-bar/BottomBarWeb.tsx:207 src/view/shell/NavSignupCard.tsx:69 src/view/shell/NavSignupCard.tsx:70 src/view/shell/NavSignupCard.tsx:72 +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Logáil isteach" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Logáil isteach mar {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Logáil isteach mar..." @@ -5198,31 +6899,41 @@ msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!" msgid "Sign into Bluesky or create a new account" msgstr "Logáil isteach i Bluesky nó cruthaigh cuntas nua" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Logáil amach" -#: src/view/screens/Settings/index.tsx:420 src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "Logáil amach as gach cuntas" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 src/view/shell/bottom-bar/BottomBar.tsx:303 src/view/shell/bottom-bar/BottomBar.tsx:305 src/view/shell/bottom-bar/BottomBarWeb.tsx:194 src/view/shell/bottom-bar/BottomBarWeb.tsx:195 src/view/shell/bottom-bar/BottomBarWeb.tsx:197 src/view/shell/NavSignupCard.tsx:60 src/view/shell/NavSignupCard.tsx:61 src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Cláraigh" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Cláraigh nó logáil isteach chun páirt a ghlacadh sa chomhrá" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Cláraigh nó logáil isteach chun páirt a ghlacadh sa chomhrá" -#: src/components/moderation/ScreenHider.tsx:97 src/lib/moderation/useGlobalLabelStrings.ts:28 +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Caithfidh tú logáil isteach" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Logáilte isteach mar" -#: src/lib/hooks/useAccountSwitcher.ts:44 src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Logáilte isteach mar @{0}" @@ -5230,7 +6941,8 @@ msgstr "Logáilte isteach mar @{0}" msgid "signed up with your starter pack" msgstr "— chláraigh sé/sí le do phacáiste fáilte" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "Cláraigh gan phacáiste fáilte" @@ -5238,15 +6950,22 @@ msgstr "Cláraigh gan phacáiste fáilte" msgid "Similar accounts" msgstr "Cuntais eile atá cosúil leis seo" -#: src/screens/Onboarding/StepInterests/index.tsx:245 src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Ná bac leis" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Ná bac leis an bpróiseas seo" -#: src/screens/Onboarding/index.tsx:37 src/screens/Onboarding/state.ts:85 +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Forbairt Bogearraí" @@ -5259,42 +6978,56 @@ msgid "Some people can reply" msgstr "Tá daoine áirithe in ann freagra a thabhairt" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "Fotheideal éigin" +#~ msgid "Some subtitle" +#~ msgstr "Fotheideal éigin" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Theip ar rud éigin" -#: src/screens/Deactivated.tsx:94 src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" msgstr "Chuaigh rud éigin amú, bain triail eile as" -#: src/components/ReportDialog/index.tsx:59 src/screens/Moderation/index.tsx:115 src/screens/Profile/Sections/Labels.tsx:87 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 +#: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Chuaigh rud éigin ó rath. Bain triail eile as." -#: src/components/Lists.tsx:200 src/view/screens/NotificationsSettings.tsx:46 +#: src/components/Lists.tsx:200 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Theip ar rud éigin!" -#: src/App.native.tsx:102 src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Ár leithscéal. Chuaigh do sheisiún i léig. Ní mór duit logáil isteach arís." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Sórtáil freagraí" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Sórtáil freagraí ar an bpostáil chéanna de réir:" -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Foinse: <0>{sourceName}" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "Foinse:" -#: src/lib/moderation/useReportOptions.ts:72 src/lib/moderation/useReportOptions.ts:85 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#~ msgid "Source: <0>{0}" +#~ msgstr "Foinse: <0>{0}" + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Foinse: <0>{sourceName}" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 msgid "Spam" msgstr "Turscar" @@ -5302,67 +7035,90 @@ msgstr "Turscar" msgid "Spam; excessive mentions or replies" msgstr "Turscar; an iomarca tagairtí nó freagraí" -#: src/screens/Onboarding/index.tsx:27 src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Spórt" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Cearnóg" +#~ msgid "Square" +#~ msgstr "Cearnóg" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Tosaigh comhrá nua" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Tosaigh comhrá le {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Tosaigh ag comhrá" +#~ msgid "Start chatting" +#~ msgstr "Tosaigh ag comhrá" -#: src/Navigation.tsx:358 src/Navigation.tsx:363 src/screens/StarterPack/Wizard/index.tsx:182 +#: src/tours/Tooltip.tsx:99 +#~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +#~ msgstr "Tús cuairte ar fháiltiú. Ná téigh siar. Téigh ar aghaidh le roghanna eile a fháil nó brúigh anseo le imeacht." + +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Pacáiste Fáilte" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Pacáiste fáilte le {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Tá an pacáiste fáilte neamhbhailí" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Pacáistí Fáilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid cairde le pacáiste fáilte." -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:862 +#~ msgid "Status page" +#~ msgstr "Leathanach stádais" + +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Leathanach Stádais" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:145 +#~ msgid "Step" +#~ msgstr "Céim" + +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Céim {0} as {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Stóráil scriosta, tá ort an aip a atosú anois." -#: src/Navigation.tsx:241 src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 src/components/moderation/LabelsOnMeDialog.tsx:294 src/screens/Messages/Conversation/ChatDisabled.tsx:142 src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Seol" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Liostáil" @@ -5370,55 +7126,81 @@ msgstr "Liostáil" msgid "Subscribe to @{0} to use these labels:" msgstr "Glac síntiús le @{0} leis na lipéid seo a úsáid:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Glac síntiús le lipéadóir" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:NaN +#~ msgid "Subscribe to the {0} feed" +#~ msgstr "Liostáil leis an bhfotha {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Glac síntiús leis an lipéadóir seo" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Liostáil leis an liosta seo" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Cuntais mholta" +#: src/view/screens/Search/Search.tsx:425 +#~ msgid "Suggested Follows" +#~ msgstr "Cuntais le leanúint" + #: src/components/FeedInterstitials.tsx:318 msgid "Suggested for you" msgstr "Molta duit" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Gáirsiúil" -#: src/Navigation.tsx:261 src/view/screens/Support.tsx:30 src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Tacaíocht" -#: src/components/dialogs/SwitchAccount.tsx:47 src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Athraigh an cuntas" -#: src/view/screens/Settings/index.tsx:126 +#: src/tours/HomeTour.tsx:48 +#~ msgid "Switch between feeds to control your experience." +#~ msgstr "Déan sealaíocht ar fhothaí le bheith i gceannas ar d’eispéireas anseo." + +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Athraigh go {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Athraíonn sé seo an cuntas beo" -#: src/screens/Settings/AppearanceSettings.tsx:85 src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Córas" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Logleabhar an chórais" -#: src/components/TagMenu/index.tsx:89 +#: src/components/dialogs/MutedWords.tsx:323 +#~ msgid "tag" +#~ msgstr "clib" + +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Roghchlár na gclibeanna: {displayTag}" @@ -5427,29 +7209,34 @@ msgid "Tags only" msgstr "Clibeanna amháin" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Ard" +#~ msgid "Tall" +#~ msgstr "Ard" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Tapáil le dúnadh" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "Tapáil leis an mód lánscáileáin a oscailt" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "Tapáil le seinm nó le cur ar shos" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "Tapáil le balbhú nó díbhalbhú" -#: src/view/com/util/images/AutoSizedImage.tsx:219 src/view/com/util/images/AutoSizedImage.tsx:239 +#: src/view/com/util/images/AutoSizedImage.tsx:219 +#: src/view/com/util/images/AutoSizedImage.tsx:239 msgid "Tap to view full image" msgstr "Tapáil leis an íomhá iomlán a fheiceáil" +#: src/view/com/util/images/AutoSizedImage.tsx:70 +#~ msgid "Tap to view fully" +#~ msgstr "Tapáil leis an rud iomlán a fheiceáil" + #: src/state/shell/progress-guide.tsx:166 msgid "Task complete - 10 likes!" msgstr "Obair curtha i gcrích - 10 moladh!" @@ -5458,7 +7245,8 @@ msgstr "Obair curtha i gcrích - 10 moladh!" msgid "Teach our algorithm what you like" msgstr "Abair linn na rudaí a thaitníonn leat" -#: src/screens/Onboarding/index.tsx:36 src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Teic" @@ -5466,47 +7254,72 @@ msgstr "Teic" msgid "Tell a joke!" msgstr "Inis scéal grinn!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Abair beagán níos mó" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "Deich Milliún" +#~ msgid "Ten Million" +#~ msgstr "Deich Milliún" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Téarmaí" -#: src/Navigation.tsx:271 src/screens/Signup/StepInfo/Policies.tsx:52 src/view/screens/Settings/index.tsx:905 src/view/screens/TermsOfService.tsx:29 src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Téarmaí Seirbhíse" -#: src/lib/moderation/useReportOptions.ts:60 src/lib/moderation/useReportOptions.ts:99 src/lib/moderation/useReportOptions.ts:107 src/lib/moderation/useReportOptions.ts:115 +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 msgid "Terms used violate community standards" msgstr "Sárú ar chaighdeáin an phobail atá sna téarmaí a úsáideadh" +#: src/components/dialogs/MutedWords.tsx:323 +#~ msgid "text" +#~ msgstr "téacs" + #: src/components/dialogs/MutedWords.tsx:266 msgid "Text & tags" msgstr "Téacs agus clibeanna" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Réimse téacs" -#: src/components/dms/ReportDialog.tsx:134 src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Go raibh maith agat. Seoladh do thuairisc." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "Tá tú ar cheann de na céad 10 milliún úsáideoir — go raibh maith agat." +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "Tá tú ar cheann de na céad 10 milliún úsáideoir — go raibh maith agat." #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "D'éirigh leat do sheoladh ríomhphoist a dhearbhú." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "D'éirigh leat do sheoladh ríomhphoist a dhearbhú." -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Ina bhfuil an méid seo a leanas:" @@ -5514,31 +7327,42 @@ msgstr "Ina bhfuil an méid seo a leanas:" msgid "That handle is already taken." msgstr "Tá an leasainm sin in úsáid cheana féin." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 src/screens/StarterPack/StarterPackScreen.tsx:98 src/screens/StarterPack/StarterPackScreen.tsx:137 src/screens/StarterPack/StarterPackScreen.tsx:138 src/screens/StarterPack/Wizard/index.tsx:105 src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "Níorbh fhéidir an pacáiste fáilte sin a aimsiú." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "Sin é é!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a dhíbhlocáil" -#: src/components/moderation/ModerationDetailsDialog.tsx:118 src/lib/moderation/useModerationCauseDescription.ts:126 +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#~ msgid "the author" +#~ msgstr "an t-údar" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." msgstr "Chuir údar an tsnáithe seo an freagra seo i bhfolach." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Feidhmchlár gréasáin Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" @@ -5546,11 +7370,12 @@ msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" msgid "The Discover feed" msgstr "An fotha Discover" -#: src/state/shell/progress-guide.tsx:167 src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 msgid "The Discover feed now knows what you like" msgstr "Tá an fotha Discover eolach ar a bhfuil ag taitneamh leat anois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Tá an t-eispéireas níos fearr san aip. Íoslódáil Bluesky anois agus tosóidh muid arís san áit ar stop tú." @@ -5570,59 +7395,86 @@ msgstr "Cuireadh na lipéid seo a leanas le do chuid ábhair." msgid "The following steps will help customize your Bluesky experience." msgstr "Cuideoidh na céimeanna seo a leanas leat Bluesky a chur in oiriúint duit féin." -#: src/view/com/post-thread/PostThread.tsx:208 src/view/com/post-thread/PostThread.tsx:220 +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 msgid "The post may have been deleted." msgstr "Is féidir gur scriosadh an phostáil seo." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh Polasaí na Príobháideachta go dtí <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "Tá an físeán seo níos mó ná 50MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Tá an pacáiste fáilte sin neamhbhailí. Tig leat é a scriosadh." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Bogadh an fhoirm tacaíochta go dtí <0/>. Má tá cuidiú ag teastáil uait, <0/> le do thoil, nó tabhair cuairt ar {HELP_DESK_URL} le dul i dteagmháil linn." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Bogadh ár dTéarmaí Seirbhíse go dtí" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "D'úsáid tú cód dearbhaithe neamhbhailí. Deimhnigh gur bhain tú úsáid as an nasc ceart, nó iarr ceann nua." +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 +#~ msgid "There are many feeds to try:" +#~ msgstr "Tá a lán fothaí ann le blaiseadh:" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "Níl srian ama le díghníomhú cuntais, fill uair ar bith." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Bhí fadhb ann maidir le dul i dteagmháil leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Bhí fadhb ann maidir le dul i dteagmháil leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." -#: src/view/com/posts/FeedShutdownMsg.tsx:52 src/view/com/posts/FeedShutdownMsg.tsx:71 src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Bhí fadhb ann maidir le huasdátú do chuid fothaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Bhí fadhb ann maidir le huasdátú do chuid fothaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." -#: src/components/dialogs/GifSelect.ios.tsx:197 src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." -#: src/view/screens/ProfileFeed.tsx:235 src/view/screens/ProfileList.tsx:359 src/view/screens/ProfileList.tsx:378 src/view/screens/SavedFeeds.tsx:238 src/view/screens/SavedFeeds.tsx:264 src/view/screens/SavedFeeds.tsx:290 +#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#, fuzzy +#~ msgid "There was an issue connecting to the chat." +#~ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." + +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí" -#: src/view/com/feeds/FeedSourceCard.tsx:127 src/view/com/feeds/FeedSourceCard.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastalaí" @@ -5630,35 +7482,69 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastalaí" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Bhí fadhb ann maidir leis an liosta a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/view/com/feeds/ProfileFeedgens.tsx:150 src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Bhí fadhb ann maidir le do chuid liostaí a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/components/dms/ReportDialog.tsx:222 src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Níor seoladh do thuairisc. Seiceáil do nasc leis an idirlíon, le do thoil." -#: src/view/screens/AppPasswords.tsx:69 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 +#~ msgid "There was an issue syncing your preferences with the server" +#~ msgstr "Bhí fadhb ann maidir le do chuid roghanna a shioncronú leis an bhfreastalaí" + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Bhí fadhb ann maidir le do chuid pasfhocal don aip a fháil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 src/view/com/post-thread/PostThreadFollowBtn.tsx:97 src/view/com/post-thread/PostThreadFollowBtn.tsx:109 src/view/com/profile/ProfileMenu.tsx:111 src/view/com/profile/ProfileMenu.tsx:122 src/view/com/profile/ProfileMenu.tsx:137 src/view/com/profile/ProfileMenu.tsx:148 src/view/com/profile/ProfileMenu.tsx:162 src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Bhí fadhb ann! {0}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 src/screens/List/ListHiddenScreen.tsx:63 src/screens/List/ListHiddenScreen.tsx:77 src/screens/List/ListHiddenScreen.tsx:99 src/view/screens/ProfileList.tsx:391 src/view/screens/ProfileList.tsx:405 src/view/screens/ProfileList.tsx:419 src/view/screens/ProfileList.tsx:433 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Bhí fadhb ann. Seiceáil do cheangal leis an idirlíon, le do thoil, agus bain triail eile as." -#: src/components/dialogs/GifSelect.ios.tsx:239 src/components/dialogs/GifSelect.tsx:259 src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "D’éirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, má tharla sé sin duit!" @@ -5666,11 +7552,15 @@ msgstr "D’éirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, má msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Tá ráchairt ar Bluesky le déanaí! Cuirfidh muid do chuntas ag obair chomh luath agus is féidir." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 +#~ msgid "These are popular accounts you might like:" +#~ msgstr "Is cuntais iad seo a bhfuil a lán leantóirí acu. Is féidir go dtaitneoidh siad leat." + +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil." @@ -5678,18 +7568,27 @@ msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil. msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "Tá an cuntas seo blocáilte i liosta modhnóireachta amháin ar a laghad de do chuid. Chun é a díbhlocáil bain an t-úsáideoir de na liostaí sin." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 +#~ msgid "This appeal will be sent to <0>{0}." +#~ msgstr "Cuirfear an t-achomharc seo chuig <0>{0}." + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Cuirfear an t-achomharc seo chuig <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Seolfar an t-achomharc seo go dtí seirbhís modhnóireachta Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Dínascadh an comhrá seo" +#: src/screens/Messages/Conversation/MessageListError.tsx:26 +#, fuzzy +#~ msgid "This chat was disconnected due to a network error." +#~ msgstr "Dínascadh an comhrá seo" + #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." msgstr "Chuir na modhnóirí an t-ábhar seo i bhfolach." @@ -5698,11 +7597,12 @@ msgstr "Chuir na modhnóirí an t-ábhar seo i bhfolach." msgid "This content has received a general warning from moderators." msgstr "Chuir na modhnóirí foláireamh ginearálta leis an ábhar seo." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Tá an t-ábhar seo ar fáil ó {0}. An bhfuil fonn ort na meáin sheachtracha a thaispeáint?" -#: src/components/moderation/ModerationDetailsDialog.tsx:83 src/lib/moderation/useModerationCauseDescription.ts:82 +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 msgid "This content is not available because one of the users involved has blocked the other." msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsáideoirí an duine eile." @@ -5710,11 +7610,11 @@ msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsá msgid "This content is not viewable without a Bluesky account." msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Is comhrá le cuntas a scriosadh nó nach bhfuil i bhfeidhm é seo. Brúigh le haghaidh roghanna eile." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Tá an ghné seo á tástáil fós. Tig leat níos mó faoi chartlanna easpórtáilte a léamh sa <0>bhlagphost seo." @@ -5722,11 +7622,17 @@ msgstr "Tá an ghné seo á tástáil fós. Tig leat níos mó faoi chartlanna e msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Tá ráchairt an-mhór ar an bhfotha seo faoi láthair. Níl sé ar fáil anois díreach dá bhrí sin. Bain triail eile as níos déanaí, le do thoil." +#: src/screens/Profile/Sections/Feed.tsx:NaN +#~ msgid "This feed is empty!" +#~ msgstr "Tá an fotha seo folamh!" + #: src/view/com/posts/CustomFeedEmptyState.tsx:37 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoirí a leanúint nó do shocruithe teanga a athrú." -#: src/components/StarterPack/Main/PostsList.tsx:36 src/view/screens/ProfileFeed.tsx:474 src/view/screens/ProfileList.tsx:785 +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Tá an fotha seo folamh." @@ -5734,7 +7640,7 @@ msgstr "Tá an fotha seo folamh." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Níl an fotha seo ar líne níos mó. Tá <0>Discover á thaispeáint againn ina ionad." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Ní roinntear an t-eolas seo le húsáideoirí eile." @@ -5742,15 +7648,24 @@ msgstr "Ní roinntear an t-eolas seo le húsáideoirí eile." msgid "This is important in case you ever need to change your email or reset your password." msgstr "Tá sé seo tábhachtach má bhíonn ort do ríomhphost nó do phasfhocal a athrú." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#~ msgid "This label was applied by {0}." +#~ msgstr "Cuireadh an lipéad seo ag {0}." + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Chuir <0>{0} an lipéad seo leis." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Chuir an t-údar an lipéad seo leis." -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +#, fuzzy +#~ msgid "This label was applied by you" +#~ msgstr "Chuir tusa an lipéad seo leis." + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Chuir tusa an lipéad seo leis." @@ -5766,7 +7681,7 @@ msgstr "Téann an nasc seo go dtí an suíomh idirlín seo:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Seans go sáraíonn ainm nó cur síos an liosta seo (liosta a chruthaigh <0>{0}) treoirlínte an phobail Bluesky." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Tá an liosta seo folamh!" @@ -5778,27 +7693,32 @@ msgstr "Níl an tseirbhís modhnóireachta ar fáil. Féach tuilleadh sonraí th msgid "This name is already in use" msgstr "Tá an t-ainm seo in úsáid cheana féin" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Scriosadh an phostáil seo." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Níl an phostáil seo le feiceáil ach ag úsáideoirí atá logáilte isteach. Ní bheidh daoine nach bhfuil logáilte isteach in ann í a fheiceáil." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí ná snáitheanna. Ní féidir dul ar ais air seo." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#~ msgid "This post will be hidden from feeds." +#~ msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí." + +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Níl an phróifíl seo le feiceáil ach ag úsáideoirí atá logáilte isteach. Ní bheidh daoine nach bhfuil logáilte isteach in ann í a fheiceáil." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun an tsnáithe seo, agus ní bhfaighidh tusa nó éinne eile fógraí maidir le freagraí eile." @@ -5806,7 +7726,7 @@ msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun msgid "This service has not provided terms of service or a privacy policy." msgstr "Níor chuir an tseirbhís seo téarmaí seirbhíse ná polasaí príobháideachta ar fáil." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Ba cheart dó seo taifead fearainn a chruthú ag:" @@ -5818,7 +7738,8 @@ msgstr "Níl aon leantóirí ag an úsáideoir seo." msgid "This user has blocked you" msgstr "Tá tú blocáilte ag an úsáideoir seo." -#: src/components/moderation/ModerationDetailsDialog.tsx:78 src/lib/moderation/useModerationCauseDescription.ts:73 +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 msgid "This user has blocked you. You cannot view their content." msgstr "Tá an t-úsáideoir seo tar éis thú a bhlocáil. Ní féidir leat a gcuid ábhair a fheiceáil." @@ -5842,35 +7763,48 @@ msgstr "Tá an t-úsáideoir seo nua anseo. Brúigh le tuilleadh eolais a fháil msgid "This user isn't following anyone." msgstr "Níl éinne á leanúint ag an úsáideoir seo." +#: src/view/com/modals/SelfLabel.tsx:137 +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "Níl an rabhadh seo ar fáil ach le haghaidh postálacha a bhfuil meáin ceangailte leo." + #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." msgstr "Bainfidh sé seo \"{0}\" de do chuid focal balbhaithe. Tig leat é a chur ar ais níos déanaí." +#: src/components/dialogs/MutedWords.tsx:283 +#~ msgid "This will delete {0} from your muted words. You can always add it back later." +#~ msgstr "Bainfidh sé seo {0} de do chuid focal i bhfolach. Tig leat é a chur ar ais níos déanaí." + #: src/view/com/util/AccountDropdownBtn.tsx:55 msgid "This will remove @{0} from the quick access list." msgstr "Leis seo, bainfear @{0} den mhearliosta." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Leis seo, bainfear do phostáil seo den phostáil athluaite seo do gach úsáideoir, agus cuirfear ionadchoinneálaí ina háit." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Roghanna snáitheanna" -#: src/view/screens/PreferencesThreads.tsx:51 src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Roghanna Snáitheanna" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/components/WhoCanReply.tsx:109 +#~ msgid "Thread settings updated" +#~ msgstr "Uasdátaíodh na socruithe snáithe" + +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Modh Snáithithe" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Chun 2FA trí ríomhphoist a dhíchumasú, dearbhaigh gur leatsa an seoladh ríomhphoist." @@ -5878,35 +7812,49 @@ msgstr "Chun 2FA trí ríomhphoist a dhíchumasú, dearbhaigh gur leatsa an seol msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Chun comhrá a thuairisciú, tuairiscigh teachtaireacht amháin as tríd an scáileán comhrá. Cuireann sé sin ar cumas ár modhnóirí comhthéacs do dheacrachta a thuiscint." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Ní mór duit do sheoladh ríomhphoist a dhearbhú sular féidir leat físeáin a uaslódáil go Bluesky." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Cé chuige ar mhaith leat an tuairisc seo a sheoladh?" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + #: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "Is le chéile a thógtar an tIdirlíon Sóisialta. Tá áthas orainn go bhfuil tú anseo." +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "Is le chéile a thógtar an tIdirlíon Sóisialta. Tá áthas orainn go bhfuil tú anseo." + +#: src/components/dialogs/MutedWords.tsx:112 +#~ msgid "Toggle between muted word options." +#~ msgstr "Scoránaigh idir na roghanna maidir le focail atá le cur i bhfolach." #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "Scoránaigh an bosca anuas" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú" -#: src/screens/Hashtag.tsx:86 src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Barr" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Trasfhoirmithe" +#~ msgid "Transformations" +#~ msgstr "Trasfhoirmithe" -#: src/components/dms/MessageMenu.tsx:103 src/components/dms/MessageMenu.tsx:105 src/view/com/post-thread/PostThreadItem.tsx:746 src/view/com/post-thread/PostThreadItem.tsx:748 src/view/com/util/forms/PostDropdownBtn.tsx:380 src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Aistrigh" @@ -5915,60 +7863,77 @@ msgctxt "action" msgid "Try again" msgstr "Bain triail eile as" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "Teilifís" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Fíordheimhniú déshraithe (2FA)" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Scríobh do theachtaireacht anseo" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Clóscríobh:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Díbhlocáil an liosta" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Díbhalbhaigh an liosta" -#: src/screens/Login/ForgotPasswordForm.tsx:74 src/screens/Login/index.tsx:78 src/screens/Login/LoginForm.tsx:155 src/screens/Login/SetNewPasswordForm.tsx:77 src/screens/Signup/index.tsx:77 src/view/com/modals/ChangePassword.tsx:71 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheangal leis an idirlíon, le do thoil." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Ní féidir é a scriosadh" -#: src/components/dms/MessagesListBlockedFooter.tsx:89 src/components/dms/MessagesListBlockedFooter.tsx:96 src/components/dms/MessagesListBlockedFooter.tsx:104 src/components/dms/MessagesListBlockedFooter.tsx:111 src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 src/view/com/profile/ProfileMenu.tsx:365 src/view/screens/ProfileList.tsx:682 +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Díbhlocáil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Díbhlocáil" -#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" msgstr "Díbhlocáil an cuntas" -#: src/view/com/profile/ProfileMenu.tsx:303 src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Díbhlocáil an cuntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 src/view/com/util/post-ctrls/RepostButton.web.tsx:72 src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" msgstr "Cuir stop leis an athphostáil" @@ -5977,23 +7942,34 @@ msgctxt "action" msgid "Unfollow" msgstr "Dílean" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 +#~ msgid "Unfollow" +#~ msgstr "Dílean" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Dílean {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Dílean an cuntas seo" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Unlike" +#~ msgstr "Dímhol" + +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Dímhol an fotha seo" -#: src/components/TagMenu/index.tsx:263 src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "Díbhalbhaigh" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "Díbhalbhaigh" @@ -6002,11 +7978,12 @@ msgstr "Díbhalbhaigh" msgid "Unmute {truncatedTag}" msgstr "Ná balbhaigh {truncatedTag} níos mó" -#: src/view/com/profile/ProfileMenu.tsx:282 src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Ná balbhaigh an cuntas seo níos mó" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Ná balbhaigh aon phostáil {displayTag} níos mó" @@ -6014,39 +7991,57 @@ msgstr "Ná balbhaigh aon phostáil {displayTag} níos mó" msgid "Unmute conversation" msgstr "Ná balbhaigh an comhrá seo níos mó" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/components/dms/ConvoMenu.tsx:140 +#, fuzzy +#~ msgid "Unmute notifications" +#~ msgstr "Lódáil fógraí nua" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Ná balbhaigh an snáithe seo níos mó" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Ná balbhaigh an físeán seo níos mó" -#: src/view/screens/ProfileFeed.tsx:292 src/view/screens/ProfileList.tsx:673 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#, fuzzy +#~ msgid "Unmuted" +#~ msgstr "Ná coinnigh i bhfolach" + +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Díghreamaigh" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Díghreamaigh an liosta modhnóireachta" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Díghreamaithe ó do chuid fothaí" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Díliostáil" -#: src/screens/List/ListHiddenScreen.tsx:184 src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 msgid "Unsubscribe from list" msgstr "Díliostáil ón liosta seo" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Díliostáil ón lipéadóir seo" @@ -6054,75 +8049,107 @@ msgstr "Díliostáil ón lipéadóir seo" msgid "Unsubscribed from list" msgstr "Dhíliostáil tú ón liosta seo" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "Cineál físeáin nach dtacaítear leis: {mimeType}" -#: src/lib/moderation/useReportOptions.ts:77 src/lib/moderation/useReportOptions.ts:90 +#: src/lib/moderation/useReportOptions.ts:85 +#, fuzzy +#~ msgid "Unwanted sexual content" +#~ msgstr "Ábhar graosta nach mian liom" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 msgid "Unwanted Sexual Content" msgstr "Ábhar graosta nach mian liom" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Uasdátú {displayName} sna Liostaí" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Uasdátú {displayName} sna Liostaí" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Déan uasdátú go {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "Theip ar uasdátú an cheangaltáin athluaite" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "Theip ar infheictheacht an fhreagra a uasdátú" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Á uasdátú…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Uaslódáil grianghraf in ionad" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Uaslódáil comhad téacs chuig:" -#: src/view/com/util/UserAvatar.tsx:361 src/view/com/util/UserAvatar.tsx:364 src/view/com/util/UserBanner.tsx:123 src/view/com/util/UserBanner.tsx:126 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 +#: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Uaslódáil ó Cheamara" -#: src/view/com/util/UserAvatar.tsx:378 src/view/com/util/UserBanner.tsx:140 +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Uaslódáil ó Chomhaid" -#: src/view/com/util/UserAvatar.tsx:372 src/view/com/util/UserAvatar.tsx:376 src/view/com/util/UserBanner.tsx:134 src/view/com/util/UserBanner.tsx:138 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Uaslódáil ó Leabharlann" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Bain úsáid as comhad ar do fhreastalaí" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Bain úsáid as pasfhocail na haipe le logáil isteach ar chliaint eile de chuid Bluesky gan fáil iomlán ar do chuntas ná do phasfhocal a thabhairt dóibh." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Bain feidhm as bsky.social mar sholáthraí óstála" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Úsáid an soláthraí réamhshocraithe" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Úsáid an brabhsálaí san aip seo" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Úsáid an brabhsálaí réamhshocraithe atá agam" @@ -6130,7 +8157,7 @@ msgstr "Úsáid an brabhsálaí réamhshocraithe atá agam" msgid "Use recommended" msgstr "Úsáid an ceann molta" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Bain feidhm as an bpainéal DNS" @@ -6142,7 +8169,8 @@ msgstr "Úsáid é seo le logáil isteach ar an aip eile in éindí le do leasai msgid "Used by:" msgstr "In úsáid ag:" -#: src/components/moderation/ModerationDetailsDialog.tsx:70 src/lib/moderation/useModerationCauseDescription.ts:61 +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 msgid "User Blocked" msgstr "Úsáideoir blocáilte" @@ -6166,111 +8194,130 @@ msgstr "Úsáideoir a bhlocálann thú" msgid "User Blocks You" msgstr "Blocálann an t-úsáideoir seo thú" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Liosta úsáideoirí le {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Liosta úsáideoirí le <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Liosta úsáideoirí leat" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Liosta úsáideoirí cruthaithe" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Liosta úsáideoirí uasdátaithe" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Liostaí Úsáideoirí" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Ainm úsáideora nó ríomhphost" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Úsáideoirí" +#: src/components/WhoCanReply.tsx:280 +#~ msgid "users followed by <0/>" +#~ msgstr "Úsáideoirí a bhfuil <0/> á leanúint" + #: src/components/WhoCanReply.tsx:258 msgid "users followed by <0>@{0}" msgstr "úsáideoirí a bhfuil <0>@{0} á leanúint" -#: src/components/dms/MessagesNUX.tsx:140 src/components/dms/MessagesNUX.tsx:143 src/screens/Messages/Settings.tsx:84 src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Úsáideoirí a leanaim" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Úsáideoirí in ”{0}“" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Úsáideoirí ar thaitin an t-ábhar nó an próifíl seo leo" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Luach:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "Ríomhphost dearbhaithe ag teastáil" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:510 +#~ msgid "Verify {0}" +#~ msgstr "Dearbhaigh {0}" + +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Dearbhaigh ríomhphost" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Dialóg: dearbhú ríomhphoist" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Dearbhaigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Dearbhaigh Mo Ríomhphost" -#: src/view/com/modals/ChangeEmail.tsx:200 src/view/com/modals/ChangeEmail.tsx:202 +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" msgstr "Dearbhaigh an Ríomhphost Nua" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "Dearbhaigh anois" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Dearbhaigh comhad téacs" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Dearbhaigh Do Ríomhphost" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:852 +#~ msgid "Version {0}" +#~ msgstr "Leagan {0}" + +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "Físeán" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "Theip ar phróiseáil an fhíseáin" -#: src/screens/Onboarding/index.tsx:39 src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Físchluichí" @@ -6278,27 +8325,33 @@ msgstr "Físchluichí" msgid "Video not found." msgstr "Físeán gan aimsiú." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "Socruithe físe" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "Físeán: {0}" #: src/view/com/composer/videos/state.ts:27 -msgid "Videos cannot be larger than 50MB" -msgstr "Ní cheadaítear físeáin atá níos mó ná 50MB" +#~ msgid "Videos cannot be larger than 50MB" +#~ msgstr "Ní cheadaítear físeáin atá níos mó ná 50MB" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 src/view/com/composer/videos/VideoPreview.web.tsx:44 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "Ní cheadaítear físeáin atá níos faide ná 60 soicind" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Féach ar an abhatár atá ag {0}" -#: src/components/ProfileCard.tsx:110 src/view/com/notifications/FeedItem.tsx:273 +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:273 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -6306,15 +8359,23 @@ msgstr "Amharc ar phróifíl {0}" msgid "View {displayName}'s profile" msgstr "Amharc ar phróifíl {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Féach ar phróifíl an úsáideora bhlocáilte" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Féach ar an mblagphost chun tuilleadh eolais a fháil" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Féach ar an iontráil dífhabhtaithe" @@ -6334,7 +8395,13 @@ msgstr "Féach ar an snáithe iomlán" msgid "View information about these labels" msgstr "Féach ar eolas faoi na lipéid seo" -#: src/components/ProfileHoverCard/index.web.tsx:418 src/components/ProfileHoverCard/index.web.tsx:436 src/components/ProfileHoverCard/index.web.tsx:463 src/view/com/posts/AviFollowButton.tsx:56 src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Féach ar an bpróifíl" @@ -6342,35 +8409,39 @@ msgstr "Féach ar an bpróifíl" msgid "View the avatar" msgstr "Féach ar an abhatár" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Tabhair súil ar do chuid fothaí agus déan tuilleadh taiscéalaíochta" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Féach ar do chuid liostaí modhnóireachta" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Féach ar na cuntais a bhalbhaigh tú" -#: src/view/com/modals/LinkWarning.tsx:89 src/view/com/modals/LinkWarning.tsx:95 +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 msgid "Visit Site" msgstr "Tabhair cuairt ar an suíomh" -#: src/components/moderation/LabelPreference.tsx:135 src/lib/moderation/useLabelBehaviorDescription.ts:17 src/lib/moderation/useLabelBehaviorDescription.ts:22 +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 msgid "Warn" msgstr "Rabhadh" @@ -6382,11 +8453,11 @@ msgstr "Tabhair foláireamh faoi ábhar" msgid "Warn content and filter from feeds" msgstr "Tabhair foláireamh faoi ábhar agus scag as fothaí" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Níor aimsigh muid toradh ar bith don haischlib sin." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Theip orainn an comhrá seo a lódáil" @@ -6394,11 +8465,11 @@ msgstr "Theip orainn an comhrá seo a lódáil" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Measaimid go mbeidh do chuntas réidh i gceann {estimatedTime}" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Sheolamar ríomhphost dearbhaithe eile chuig <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bhfuil Bluesky:" @@ -6406,19 +8477,27 @@ msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bh msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Níl aon ábhar nua le taispeáint ó na cuntais a leanann tú. Seo duit an t-ábhar is déanaí ó <0/>." -#: src/state/queries/video/video.ts:170 +#: src/components/dialogs/MutedWords.tsx:203 +#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +#~ msgstr "Molaimid focail choitianta a bhíonn i go leor postálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 +#~ msgid "We recommend our \"Discover\" feed:" +#~ msgstr "Molaimid an fotha “Discover”." + +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail eile as." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Theip orainn do rogha maidir le dáta breithe a lódáil. Bain triail as arís." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Theip orainn na lipéadóirí a roghnaigh tú a lódáil faoi láthair." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a shocrú. Má mhaireann an fhadhb, ní gá duit an próiseas seo a chur i gcrích." @@ -6426,19 +8505,23 @@ msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a msgid "We will let you know when your account is ready." msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Tá fadhbanna líonra againn, bain triail as arís" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Tá muid an-sásta go bhfuil tú linn!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má mhaireann an fhadhb, déan teagmháil leis an duine a chruthaigh an liosta, @{handleOrDid}." @@ -6446,19 +8529,24 @@ msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tá brón orainn, ach theip orainn na focail a bhalbhaigh tú a lódáil an uair seo. Bain triail as arís." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ár leithscéal, ach níorbh fhéidir linn do chuardach a chur i gcrích. Bain triail eile as i gceann cúpla nóiméad." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt." -#: src/components/Lists.tsx:220 src/view/screens/NotFound.tsx:48 +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a aimsiú." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." +#~ msgstr "Tá brón orainn! Ní féidir síntiúis a ghlacadh ach le deich lipéadóir, tá an teorainn sin sroichte agat." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ár leithscéal! Ní féidir leat ach fiche lipéadóirí a leanúint agus tá fiche ceann agat cheana féin." @@ -6466,11 +8554,15 @@ msgstr "Ár leithscéal! Ní féidir leat ach fiche lipéadóirí a leanúint ag msgid "Welcome back!" msgstr "Fáilte ar ais!" +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 +#~ msgid "Welcome to <0>Bluesky" +#~ msgstr "Fáilte go <0>Bluesky" + #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" msgstr "Fáilte romhat a chara!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Cad iad na rudaí a bhfuil suim agat iontu?" @@ -6478,15 +8570,17 @@ msgstr "Cad iad na rudaí a bhfuil suim agat iontu?" msgid "What do you want to call your starter pack?" msgstr "Cén t-ainm ar mhaith leat a thabhairt ar do phacáiste fáilte?" -#: src/view/com/auth/SplashScreen.tsx:40 src/view/com/auth/SplashScreen.web.tsx:86 src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Aon scéal?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Cad iad na teangacha sa phostáil seo?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Cad iad na teangacha ba mhaith leat a fheiceáil i do chuid fothaí algartamacha?" @@ -6494,15 +8588,24 @@ msgstr "Cad iad na teangacha ba mhaith leat a fheiceáil i do chuid fothaí alga msgid "Who can interact with this post?" msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?" -#: src/components/dms/MessagesNUX.tsx:110 src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Cé ar féidir leo teachtaireacht a sheoladh chugat?" +#: src/components/dms/MessagesNUX.tsx:NaN +#~ msgid "Who can message you?" +#~ msgstr "Cé ar féidir leo teachtaireacht a sheoladh chugat?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/screens/Home/NoFeedsPinned.tsx:79 src/screens/Messages/List/index.tsx:185 +#: src/components/WhoCanReply.tsx:212 +#~ msgid "Who can reply dialog" +#~ msgstr "Dialóg: Cé atá in ann freagra a thabhairt" + +#: src/components/WhoCanReply.tsx:216 +#~ msgid "Who can reply?" +#~ msgstr "Cé atá in ann freagra a thabhairt?" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Úps!" @@ -6535,42 +8638,52 @@ msgid "Why should this user be reviewed?" msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Leathan" +#~ msgid "Wide" +#~ msgstr "Leathan" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Scríobh teachtaireacht" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Scríobh postáil" -#: src/view/com/composer/Composer.tsx:515 src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Scríobh freagra" -#: src/screens/Onboarding/index.tsx:25 src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Scríbhneoirí" -#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 src/view/screens/PreferencesFollowingFeed.tsx:70 src/view/screens/PreferencesFollowingFeed.tsx:97 src/view/screens/PreferencesFollowingFeed.tsx:132 src/view/screens/PreferencesFollowingFeed.tsx:167 src/view/screens/PreferencesThreads.tsx:100 src/view/screens/PreferencesThreads.tsx:123 +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Tá" -#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" msgstr "Tá, díghníomhaigh" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Scrios an pacáiste fáilte seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Tá, dícheangail" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Tá, cuir i bhfolach é" @@ -6578,11 +8691,15 @@ msgstr "Tá, cuir i bhfolach é" msgid "Yes, reactivate my account" msgstr "Tá, athghníomhaigh mo chuntas" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Inné, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 src/screens/List/ListHiddenScreen.tsx:140 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Inné, {time}" + +#: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "tusa" @@ -6594,7 +8711,7 @@ msgstr "Tusa" msgid "You are in line." msgstr "Tá tú sa scuaine." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "Níl cead agat físeáin a uaslódáil." @@ -6602,7 +8719,12 @@ msgstr "Níl cead agat físeáin a uaslódáil." msgid "You are not following anyone." msgstr "Níl éinne á leanúint agat." -#: src/view/com/posts/FollowingEmptyState.tsx:63 src/view/com/posts/FollowingEndOfFeed.tsx:64 +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Is féidir leat sainfhothaí nua a aimsiú le leanúint." @@ -6610,15 +8732,20 @@ msgstr "Is féidir leat sainfhothaí nua a aimsiú le leanúint." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Is féidir leat do chuntas a dhíghníomhú go sealadach, agus é a athghníomhú uair ar bith." -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Is féidir leat é seo a athrú uair ar bith." +#: src/screens/Onboarding/StepFollowingFeed.tsx:143 +#~ msgid "You can change these settings later." +#~ msgstr "Is féidir leat na socruithe seo a athrú níos déanaí." -#: src/screens/Messages/Settings.tsx:111 +#: src/components/dms/MessagesNUX.tsx:119 +#~ msgid "You can change this at any time." +#~ msgstr "Is féidir leat é seo a athrú uair ar bith." + +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Is féidir leat leanacht le comhráite beag beann ar cén socrú a roghnaíonn tú." -#: src/screens/Login/index.tsx:158 src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Is féidir leat logáil isteach le do phasfhocal nua anois." @@ -6630,7 +8757,7 @@ msgstr "Is féidir leat do chuntas a athghníomhú chun leanacht ort ag logáil msgid "You do not have any followers." msgstr "Níl aon leantóir agat." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Ní leanann tú aon leantóirí de chuid @{name}." @@ -6638,11 +8765,15 @@ msgstr "Ní leanann tú aon leantóirí de chuid @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Níl aon chóid chuiridh agat fós! Cuirfidh muid cúpla cód chugat tar éis duit beagán ama a chaitheamh anseo." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Níl aon fhothaí greamaithe agat." -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/Feeds.tsx:477 +#~ msgid "You don't have any saved feeds!" +#~ msgstr "Níl aon fhothaí sábháilte agat!" + +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Níl aon fhothaí sábháilte agat." @@ -6654,11 +8785,16 @@ msgstr "Bhlocáil tú an t-údar nó tá tú blocáilte ag an údar." msgid "You have blocked this user" msgstr "Bhlocáil tú an t-úsáideoir seo" -#: src/components/moderation/ModerationDetailsDialog.tsx:72 src/lib/moderation/useModerationCauseDescription.ts:55 src/lib/moderation/useModerationCauseDescription.ts:63 +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 msgid "You have blocked this user. You cannot view their content." msgstr "Bhlocáil tú an cuntas seo. Ní féidir leat a gcuid ábhar a fheiceáil." -#: src/screens/Login/SetNewPasswordForm.tsx:54 src/screens/Login/SetNewPasswordForm.tsx:91 src/view/com/modals/ChangePassword.tsx:88 src/view/com/modals/ChangePassword.tsx:122 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." msgstr "Tá tú tar éis cód míchruinn a chur isteach. Ba cheart an cruth seo a bheith air: XXXXX-XXXXX." @@ -6670,7 +8806,8 @@ msgstr "Chuir tú an phostáil seo i bhfolach" msgid "You have hidden this post." msgstr "Chuir tú an phostáil seo i bhfolach." -#: src/components/moderation/ModerationDetailsDialog.tsx:103 src/lib/moderation/useModerationCauseDescription.ts:97 +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 msgid "You have muted this account." msgstr "Bhalbhaigh tú an cuntas seo." @@ -6678,7 +8815,7 @@ msgstr "Bhalbhaigh tú an cuntas seo." msgid "You have muted this user" msgstr "Bhalbhaigh tú an t-úsáideoir seo" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!" @@ -6686,19 +8823,25 @@ msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!" msgid "You have no feeds." msgstr "Níl aon fhothaí agat." -#: src/view/com/lists/MyLists.tsx:93 src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Níl aon liostaí agat." -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/screens/Messages/List/index.tsx:200 +#, fuzzy +#~ msgid "You have no messages yet. Start a conversation with someone!" +#~ msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!" + +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Níor bhlocáil tú aon chuntas fós. Le cuntas a bhlocáil, téigh go dtí a bpróifíl agus roghnaigh “Blocáil an cuntas seo” ar an gclár ansin." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Níor chruthaigh tú aon phasfhocal aipe fós. Is féidir leat ceann a chruthú ach brú ar an gcnaipe thíos." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Níor bhalbhaigh tú aon chuntas fós. Le cuntas a bhalbhú, téigh go dtí a bpróifíl agus roghnaigh “Balbhaigh an cuntas seo” ar an gclár ansin." @@ -6706,11 +8849,11 @@ msgstr "Níor bhalbhaigh tú aon chuntas fós. Le cuntas a bhalbhú, téigh go d msgid "You have reached the end" msgstr "Tá deireadh sroichte agat" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Tá tú tar éis uasteorainn uaslódálacha físeáin a bhaint amach. Bain triail eile as ar ball." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Níl pacáiste fáilte cruthaithe agat fós!" @@ -6718,7 +8861,8 @@ msgstr "Níl pacáiste fáilte cruthaithe agat fós!" msgid "You haven't muted any words or tags yet" msgstr "Níor bhalbhaigh tú aon fhocal ná clib fós" -#: src/components/moderation/ModerationDetailsDialog.tsx:117 src/lib/moderation/useModerationCauseDescription.ts:125 +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "You hid this reply." msgstr "Chuir tú an freagra seo i bhfolach." @@ -6738,11 +8882,27 @@ msgstr "Ní féidir leat ach suas le {STARTER_PACK_MAX_SIZE} próifíl a chur le msgid "You may only add up to 3 feeds" msgstr "Ní féidir leat ach suas le 3 fhotha a chur leis seo" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/screens/StarterPack/Wizard/State.tsx:95 +#~ msgid "You may only add up to 50 feeds" +#~ msgstr "Ní féidir leat ach suas le 50 fotha a chur leis seo" + +#: src/screens/StarterPack/Wizard/State.tsx:78 +#~ msgid "You may only add up to 50 profiles" +#~ msgstr "Ní féidir leat ach suas le 50 próifíl a chur leis seo" + +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Caithfidh tú a bheith 13 bliana d’aois nó níos sine le clárú." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 +#~ msgid "You must be 18 years or older to enable adult content" +#~ msgstr "Caithfidh tú a bheith 18 mbliana d’aois nó níos sine le hábhar do dhaoine fásta a fháil." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú." @@ -6750,11 +8910,11 @@ msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a ch msgid "You must grant access to your photo library to save a QR code" msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a shábháil" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le íomhá a shábháil." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc" @@ -6762,63 +8922,75 @@ msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc" msgid "You previously deactivated @{0}." msgstr "Rinne tú díghníomhú ar @{0} cheana." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Ní bhfaighidh tú fógraí don snáithe seo a thuilleadh." -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Gheobhaidh tú fógraí don snáithe seo anois." -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Gheobhaidh tú teachtaireacht ríomhphoist le “cód athshocraithe” ann. Cuir an cód sin isteach anseo, ansin cuir do phasfhocal nua isteach." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Tusa {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Tusa: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Tusa: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí agus na fothaí a moladh tar éis duit do chuntas a chruthú!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí a moladh tar éis duit do chuntas a chruthú!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Leanfaidh tú na daoine seo agus {0} duine eile" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Leanfaidh tú na daoine seo láithreach" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Beidh tú bord ar bord leis na fothaí seo" -#: src/screens/SignupQueued.tsx:93 src/screens/SignupQueued.tsx:94 src/screens/SignupQueued.tsx:109 +#: src/screens/Onboarding/StepModeration/index.tsx:60 +#~ msgid "You're in control" +#~ msgstr "Tá sé faoi do stiúir" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 msgid "You're in line" msgstr "Tá tú sa scuaine" -#: src/screens/Deactivated.tsx:89 src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Tá tú logáilte isteach le pasfhocal aipe. Logáil isteach le do phríomh-phasfhocal chun dul ar aghaidh le díghníomhú do chuntais." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Tá tú réidh!" -#: src/components/moderation/ModerationDetailsDialog.tsx:107 src/lib/moderation/useModerationCauseDescription.ts:106 +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 msgid "You've chosen to hide a word or tag within this post." msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach." @@ -6826,15 +8998,15 @@ msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca beart)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Do chuntas" @@ -6842,15 +9014,15 @@ msgstr "Do chuntas" msgid "Your account has been deleted" msgstr "Scriosadh do chuntas" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Níl tú anseo fada go leor chun físeáin a uaslódáil. Bain triail eile as ar ball." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Is féidir cartlann do chuntais, a bhfuil na taifid phoiblí uile inti, a íoslódáil mar chomhad “CAR”. Ní bheidh aon mheáin leabaithe (íomhánna, mar shampla) ná do shonraí príobháideacha inti. Ní mór iad a fháil ar dhóigh eile." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Do bhreithlá" @@ -6858,15 +9030,22 @@ msgstr "Do bhreithlá" msgid "Your browser does not support the video format. Please try a different browser." msgstr "Ní thacaíonn do bhrabhsálaí leis an bhformáid físe. Bain triail as brabhsálaí eile." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Cuireadh do chuid comhráite ar ceal" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Sábhálfar do rogha, ach is féidir é athrú níos déanaí sna socruithe." -#: src/screens/Login/ForgotPasswordForm.tsx:57 src/screens/Signup/state.ts:203 src/screens/Signup/StepInfo/index.tsx:75 src/view/com/modals/ChangePassword.tsx:55 +#: src/screens/Onboarding/StepFollowingFeed.tsx:62 +#~ msgid "Your default feed is \"Following\"" +#~ msgstr "Is é “Following” d’fhotha réamhshocraithe" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:108 +#: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí." @@ -6890,7 +9069,7 @@ msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideo msgid "Your full handle will be" msgstr "Do leasainm iomlán anseo:" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Do leasainm iomlán anseo: <0>@{0}" @@ -6902,15 +9081,15 @@ msgstr "Na focail a bhalbhaigh tú" msgid "Your password has been changed successfully!" msgstr "Athraíodh do phasfhocal!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Foilsíodh do phostáil" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tá do chuid postálacha, moltaí, agus blocálacha poiblí. Is príobháideach iad na cuntais a bhalbhaíonn tú." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Do phróifíl" @@ -6918,944 +9097,14 @@ msgstr "Do phróifíl" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ní bheidh do phróifíl, postálacha, fothaí ná liostaí infheicthe ag úsáideoirí eile Bluesky. Is féidir leat do chuntas a athghníomhú uair ar bith trí logáil isteach." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Foilsíodh do fhreagra" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Seolfar do thuairisc go dtí Seirbhís Modhnóireachta Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Do leasainm" - -#: src/components/moderation/LabelsOnMe.tsx:55 -#, fuzzy -#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" -#~ msgstr "{0, plural, one {Cuireadh # lipéad amháin ar an gcuntas seo} two {Cuireadh # lipéad ar an gcuntas seo} few {Cuireadh # lipéad ar an gcuntas seo} many {Cuireadh # lipéad ar an gcuntas seo} other {Cuireadh # lipéad ar an gcuntas seo}}" - -#: src/components/moderation/LabelsOnMe.tsx:61 -#, fuzzy -#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" -#~ msgstr "{0, plural, one {Cuireadh # lipéad amháin ar an ábhar seo} two {Cuireadh # lipéad ar an ábhar seo} few {Cuireadh # lipéad ar an ábhar seo} many {Cuireadh # lipéad ar an ábhar seo} other {Cuireadh # lipéad ar an ábhar seo}}" - -#: src/components/KnownFollowers.tsx:179 -#, fuzzy -#~ msgid "{0, plural, one {and # other} other {and # others}}" -#~ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}}" - -#: src/view/screens/ProfileList.tsx:286 -#, fuzzy -#~ msgid "{0} your feeds" -#~ msgstr "Sábháilte le mo chuid fothaí" - -#: src/lib/hooks/useTimeAgo.ts:69 -#~ msgid "{diff, plural, one {day} other {days}}" -#~ msgstr "{diff, plural, one {lá} two {lá} few {lá} many {lá} other {lá}}" - -#: src/lib/hooks/useTimeAgo.ts:64 -#~ msgid "{diff, plural, one {hour} other {hours}}" -#~ msgstr "{diff, plural, one {uair} two {uair} few {uair} many {n-uair} other {uair}}" - -#: src/lib/hooks/useTimeAgo.ts:59 -#~ msgid "{diff, plural, one {minute} other {minutes}}" -#~ msgstr "{diff, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" - -#: src/lib/hooks/useTimeAgo.ts:75 -#~ msgid "{diff, plural, one {month} other {months}}" -#~ msgstr "{diff, plural, one {mhí} two {mhí} few {mhí} many {mí} other {mí}}" - -#: src/lib/hooks/useTimeAgo.ts:54 -#~ msgid "{diffSeconds, plural, one {second} other {seconds}}" -#~ msgstr "{diffSeconds, plural, one {soicind} two {shoicind} few {shoicind} many {soicind} other {soicind}}" - -#: src/view/screens/PreferencesFollowingFeed.tsx:67 -#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" -#~ msgstr "{value, plural, =0 {Taispeáin gach freagra} one {Taispeáin freagraí a bhfuil ar a laghad moladh amháin acu} two {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} few {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} many {Taispeáin freagraí a bhfuil ar a laghad # moladh acu} other {Taispeáin freagraí a bhfuil ar a laghad # moladh acu}}" - -#: src/components/WhoCanReply.tsx:296 -#~ msgid "<0/> members" -#~ msgstr "<0/> ball" - -#: src/screens/StarterPack/Wizard/index.tsx:485 -#, fuzzy -#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -#~ msgstr "Cuireadh <0>{0} agus<1> <2>{1} i do phacáiste fáilte" - -#: src/screens/StarterPack/Wizard/index.tsx:497 -#, fuzzy -#~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" -#~ msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte" - -#: src/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "<0>{0} á leanúint" - -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "<0>{following} <1>{pluralizedFollowers}" - -#: src/components/ProfileHoverCard/index.web.tsx:449 src/screens/Profile/Header/Metrics.tsx:45 -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>á leanúint" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Roghnaigh do chuid<1>Fothaí<2>Molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Lean cúpla<1>Úsáideoirí<2>Molta" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "<0>Fáilte go<1>Bluesky" - -#: src/tours/Tooltip.tsx:70 -#~ msgid "A help tooltip" -#~ msgstr "Leid uirlise" - -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "account" -#~ msgstr "cuntas" - -#: src/view/com/composer/GifAltText.tsx:175 -#, fuzzy -#~ msgid "Add ALT text" -#~ msgstr "Cuir téacs malartach leis seo" - -#: src/view/com/composer/Composer.tsx:467 -#~ msgid "Add link card" -#~ msgstr "Cuir cárta leanúna leis seo" - -#: src/view/com/composer/Composer.tsx:472 -#~ msgid "Add link card:" -#~ msgstr "Cuir cárta leanúna leis seo:" - -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "Curtha leis" - -#: src/view/screens/PreferencesFollowingFeed.tsx:171 -#~ msgid "Adjust the number of likes a reply must have to be shown in your feed." -#~ msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feiceáil i d'fhotha." - -#: src/screens/Messages/Settings.tsx:61 src/screens/Messages/Settings.tsx:64 -#, fuzzy -#~ msgid "Allow messages from" -#~ msgstr "Ceadaigh teachtaireachtaí nua ó" - -#: src/components/dialogs/GifSelect.tsx:252 -#~ msgid "An error occured" -#~ msgstr "Tharla earráid" - -#: src/components/StarterPack/ShareDialog.tsx:79 -#, fuzzy -#~ msgid "An error occurred while saving the image." -#~ msgstr "Tharla earráid agus an cód QR á shábháil!" - -#: src/components/dms/MessageMenu.tsx:134 -#~ msgid "An error occurred while trying to delete the message. Please try again." -#~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as." - -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "Achomharc déanta" - -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -#~ msgid "Are you sure you want delete this starter pack?" -#~ msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosadh?" - -#: src/components/dms/MessageMenu.tsx:123 -#, fuzzy -#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." -#~ msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach." - -#: src/components/dms/ConvoMenu.tsx:189 -#, fuzzy -#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." -#~ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach." - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 -#~ msgid "Based on your interest in {interestsText}" -#~ msgstr "Toisc go bhfuil suim agat in {interestsText}" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 src/view/com/auth/onboarding/WelcomeMobile.tsx:82 -#~ msgid "Bluesky is flexible." -#~ msgstr "Tá Bluesky solúbtha." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 src/view/com/auth/onboarding/WelcomeMobile.tsx:71 -#~ msgid "Bluesky is open." -#~ msgstr "Tá Bluesky oscailte." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 src/view/com/auth/onboarding/WelcomeMobile.tsx:58 -#~ msgid "Bluesky is public." -#~ msgstr "Tá Bluesky poiblí." - -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "le {0}" - -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 -#~ msgid "by @{0}" -#~ msgstr "ag @{0}" - -#: src/screens/Messages/Conversation/index.tsx:26 -#~ msgid "Chat with {chatId}" -#~ msgstr "Comhrá le {chatId}" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:122 -#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." -#~ msgstr "Cuir súil ar na fothaí seo. Brúigh + len iad a chur le liosta na bhfothaí atá greamaithe agat." - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ msgid "Check out some recommended users. Follow them to see similar users." -#~ msgstr "Cuir súil ar na húsáideoirí seo. Lean iad le húsáideoirí atá cosúil leo a fheiceáil." - -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" - -#: src/screens/Onboarding/StepInterests/index.tsx:191 -#~ msgid "Choose 3 or more:" -#~ msgstr "Roghnaigh trí cinn nó níos mó:" - -#: src/screens/Onboarding/StepInterests/index.tsx:326 -#~ msgid "Choose at least {0} more" -#~ msgstr "Roghnaigh {0} eile ar a laghad" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 src/view/com/auth/onboarding/WelcomeMobile.tsx:85 -#~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "Roghnaigh na halgartaim a shainíonn an dóigh a n-oibríonn do chuid sainfhothaí." - -#: src/components/dialogs/ThreadgateEditor.tsx:91 src/components/dialogs/ThreadgateEditor.tsx:95 -#~ msgid "Choose who can reply" -#~ msgstr "Cé atá in ann freagra a thabhairt" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 -#~ msgid "Choose your main feeds" -#~ msgstr "Roghnaigh do phríomhfhothaí" - -#: src/view/screens/Settings/index.tsx:912 -#~ msgid "Clear all legacy storage data" -#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce." - -#: src/view/screens/Settings/index.tsx:915 -#~ msgid "Clear all legacy storage data (restart after this)" -#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce. Ansin atosaigh." - -#: src/view/screens/Settings/index.tsx:913 -#~ msgid "Clears all legacy storage data" -#~ msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce" - -#: src/screens/Feeds/NoFollowingFeed.tsx:46 -#, fuzzy -#~ msgid "Click here to add one." -#~ msgstr "Cliceáil anseo do bhreis eolais." - -#: src/components/RichText.tsx:198 -#~ msgid "Click here to open tag menu for #{tag}" -#~ msgstr "Cliceáil anseo le clár na clibe le haghaidh #{tag} a oscailt" - -#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 -#, fuzzy -#~ msgid "Compressing..." -#~ msgstr "Á phróiseáil..." - -#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 -#~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {0}" - -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "ábhar" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 -#~ msgid "Continue to the next step" -#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 -#~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile gan aon chuntas a leanúint" - -#: src/view/com/composer/videos/state.ts:31 -#, fuzzy -#~ msgid "Could not compress video" -#~ msgstr "Ní féidir an fotha a lódáil" - -#: src/components/dms/NewChat.tsx:241 -#~ msgid "Could not load profiles. Please try again later." -#~ msgstr "Níorbh fhéidir próifílí a lódáil. Bain triail eile as ar ball." - -#: src/components/dms/ConvoMenu.tsx:68 -#~ msgid "Could not unmute chat" -#~ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" - -#: src/components/StarterPack/ShareDialog.tsx:158 -#, fuzzy -#~ msgid "Create QR code" -#~ msgstr "Sábháil an cód QR" - -#: src/view/com/composer/Composer.tsx:469 -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "Cruthaíonn sé seo cárta le mionsamhail. Nascann an cárta le {url}." - -#: src/view/screens/Settings/index.tsx:473 -#~ msgid "Dark Theme" -#~ msgstr "Téama Dorcha" - -#: src/view/com/modals/DeleteAccount.tsx:87 -#~ msgid "Delete Account" -#~ msgstr "Scrios an Cuntas" - -#: src/view/screens/AccessibilitySettings.tsx:111 -#~ msgid "Disable autoplay for GIFs" -#~ msgstr "Ná seinn GIFanna go huathoibríoch" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable haptics" -#~ msgstr "Ná húsáid aiseolas haptach" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable vibrations" -#~ msgstr "Ná húsáid creathadh" - -#: src/tours/HomeTour.tsx:70 -#~ msgid "Discover learns which posts you like as you browse." -#~ msgstr "Foghlaimíonn Discover na postálacha a bhfuil suim agat iontu." - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 -#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." -#~ msgstr "De bharr pholasaí Apple, ní féidir ábhar do dhaoine fásta ar an nGréasán a fháil roimh an logáil isteach a chríochnú." - -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "Athraigh na fothaí sábháilte" - -#: src/components/dialogs/ThreadgateEditor.tsx:98 -#~ msgid "Either choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 -#~ msgid "Enable Adult Content" -#~ msgstr "Cuir ábhar do dhaoine fásta ar fáil" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 -#~ msgid "Enable adult content in your feeds" -#~ msgstr "Cuir ábhar do dhaoine fásta ar fáil i do chuid fothaí" - -#: src/view/screens/PreferencesFollowingFeed.tsx:145 -#~ msgid "Enable this setting to only see replies between people you follow." -#~ msgstr "Cuir an socrú seo ar siúl le gan ach freagraí i measc na ndaoine a leanann tú a fheiceáil." - -#: src/components/Lists.tsx:52 -#, fuzzy -#~ msgid "End of list" -#~ msgstr "Curtha leis an liosta" - -#: src/tours/Tooltip.tsx:159 -#~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." -#~ msgstr "Deireadh cuairte ar fháiltiú. Ná téigh ar aghaidh. Téigh siar le roghanna eile a fháil nó brúigh anseo le imeacht." - -#: src/screens/Messages/Conversation/MessageListError.tsx:28 -#, fuzzy -#~ msgid "Failed to load past messages." -#~ msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 -#~ msgid "Failed to load recommended feeds" -#~ msgstr "Teip ar lódáil na bhfothaí molta" - -#: src/screens/Messages/Conversation/MessageListError.tsx:29 -#, fuzzy -#~ msgid "Failed to send message(s)." -#~ msgstr "Teip ar theachtaireacht a scriosadh" - -#: src/view/screens/Feeds.tsx:709 -#~ msgid "Feed offline" -#~ msgstr "Fotha as líne" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:58 -#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." -#~ msgstr "Is iad na húsáideoirí a chruthaíonn na fothaí le hábhar is spéis leo a chur ar fáil. Roghnaigh cúpla fotha a bhfuil suim agat iontu." - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 -#~ msgid "Feeds can be topical as well!" -#~ msgstr "Is féidir le fothaí a bheith bunaithe ar chúrsaí reatha freisin!" - -#: src/tours/HomeTour.tsx:88 -#~ msgid "Find more feeds and accounts to follow in the Explore page." -#~ msgstr "Faigh tuilleadh fothaí agus cuntais le leanúint ar an leathanach Explore." - -#: src/view/screens/Search/Search.tsx:589 -#~ msgid "Find users on Bluesky" -#~ msgstr "Aimsigh úsáideoirí ar Bluesky" - -#: src/view/screens/Search/Search.tsx:587 -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Aimsigh úsáideoirí leis an uirlis chuardaigh ar dheis" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "Cuntais eile atá cosúil leis seo á n-aimsiú..." - -#: src/tours/Tooltip.tsx:149 -#~ msgid "Finish tour and begin using the application" -#~ msgstr "Críochnaigh an chuairt agus tosaigh ag baint úsáide as an aip" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 -#~ msgid "Follow All" -#~ msgstr "Lean iad uile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 -#~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Lean na cuntais roghnaithe agus téigh ar aghaidh go dtí an chéad chéim eile" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 -#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." -#~ msgstr "Lean cúpla cuntas mar thosú. Tig linn níos mó úsáideoirí a mholadh duit a mbeadh suim agat iontu." - -#: src/components/KnownFollowers.tsx:169 -#, fuzzy -#~ msgid "Followed by" -#~ msgstr "Leanta ag {0}" - -#: src/view/com/profile/ProfileCard.tsx:190 -#~ msgid "Followed by {0}" -#~ msgstr "Leanta ag {0}" - -#: src/view/screens/PreferencesFollowingFeed.tsx:152 -#~ msgid "Followed users only" -#~ msgstr "Cuntais a leanann tú amháin" - -#: src/tours/HomeTour.tsx:59 -#~ msgid "Following shows the latest posts from people you follow." -#~ msgstr "Taispeántar na postálacha is déanaí ó na daoine a leanann tú san fhotha Following." - -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -#~ msgid "Go back to previous screen" -#~ msgstr "Fill ar an scáileán roimhe seo" - -#: src/view/screens/Search/Search.tsx:827 src/view/shell/desktop/Search.tsx:263 -#~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "Téigh go dtí @{queryMaybeHandle}" - -#: src/tours/Tooltip.tsx:138 -#~ msgid "Go to the next step of the tour" -#~ msgstr "Lean ar aghaidh go dtí an chéad chéim eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 -#~ msgid "Here are some accounts for you to follow" -#~ msgstr "Seo cúpla cuntas le leanúint duit" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 -#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." -#~ msgstr "Seo cúpla fotha a bhfuil ráchairt orthu. Is féidir leat an méid acu is mian leat a leanúint." - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:84 -#~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." -#~ msgstr "Seo cúpla fotha a phléann le rudaí a bhfuil suim agat iontu: {interestsText}. Is féidir leat an méid acu is mian leat a leanúint." - -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 src/view/com/util/forms/PostDropdownBtn.tsx:392 -#~ msgid "Hide post" -#~ msgstr "Cuir an phostáil seo i bhfolach" - -#: src/screens/Login/LoginForm.tsx:221 -#~ msgid "Input the password tied to {identifier}" -#~ msgstr "Cuir isteach an pasfhocal ceangailte le {identifier}" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:65 -#~ msgid "It shows posts from the people you follow as they happen." -#~ msgstr "Taispeánann sé postálacha ó na daoine a leanann tú nuair a fhoilsítear iad." - -#: src/components/moderation/LabelsOnMe.tsx:59 -#~ msgid "label has been placed on this {labelTarget}" -#~ msgstr "cuireadh lipéad ar an {labelTarget} seo" - -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "labels have been placed on this {labelTarget}" -#~ msgstr "cuireadh lipéid ar an {labelTarget}" - -#: src/view/screens/Settings/index.tsx:310 -#~ msgid "Legacy storage cleared, you need to restart the app now." -#~ msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois." - -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Like" -#~ msgstr "Mol" - -#: src/view/com/feeds/FeedSourceCard.tsx:268 -#~ msgid "Liked by {0} {1}" -#~ msgstr "Molta ag {0} {1}" - -#: src/components/LabelingServiceCard/index.tsx:72 -#~ msgid "Liked by {count} {0}" -#~ msgstr "Molta ag {count} {0}" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 src/view/screens/ProfileFeed.tsx:600 -#~ msgid "Liked by {likeCount} {0}" -#~ msgstr "Molta ag {likeCount} {0}" - -#: src/screens/Feeds/NoFollowingFeed.tsx:38 -#, fuzzy -#~ msgid "Looks like you're missing a following feed." -#~ msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo le ceann a fháil." - -#: src/Navigation.tsx:307 -#, fuzzy -#~ msgid "Messaging settings" -#~ msgstr "Socruithe teachtaireachta" - -#: src/components/dialogs/MutedWords.tsx:148 -#~ msgid "Mute in tags only" -#~ msgstr "Ná cuir i bhfolach ach i gclibeanna" - -#: src/components/dialogs/MutedWords.tsx:133 -#~ msgid "Mute in text & tags" -#~ msgstr "Cuir i bhfolach i dtéacs agus i gclibeanna" - -#: src/components/dms/ConvoMenu.tsx:136 src/components/dms/ConvoMenu.tsx:142 -#, fuzzy -#~ msgid "Mute notifications" -#~ msgstr "Fógraí" - -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#~ msgid "Muted" -#~ msgstr "Curtha i bhfolach" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 src/view/com/auth/onboarding/WelcomeMobile.tsx:74 -#~ msgid "Never lose access to your followers and data." -#~ msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -#~ msgctxt "action" -#~ msgid "Next" -#~ msgstr "Ar aghaidh" - -#: src/components/dms/NewChat.tsx:240 -#, fuzzy -#~ msgid "No search results found for \"{searchText}\"." -#~ msgstr "Gan torthaí ar \"{search}\"." - -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#~ msgid "Nobody can reply" -#~ msgstr "Níl cead ag éinne freagra a thabhairt" - -#: src/view/com/modals/SelfLabel.tsx:135 -#~ msgid "Not Applicable." -#~ msgstr "Ní bhaineann sé sin le hábhar." - -#: src/screens/Signup/index.tsx:145 -#~ msgid "of" -#~ msgstr "de" - -#: src/components/StarterPack/QrCode.tsx:69 -#~ msgid "on" -#~ msgstr "ar" - -#: src/lib/hooks/useTimeAgo.ts:81 -#~ msgid "on {str}" -#~ msgstr "ar {str}" - -#: src/tours/Tooltip.tsx:118 -#~ msgid "Onboarding tour step {0}: {1}" -#~ msgstr "Céim {0} sa turas fáilte: {1}" - -#: src/components/WhoCanReply.tsx:245 -#~ msgid "Only {0} can reply" -#~ msgstr "Ní féidir ach le {0} freagra a thabhairt" - -#: src/view/com/notifications/FeedItem.tsx:349 -#~ msgid "Opens an expanded list of users in this notification" -#~ msgstr "Osclaíonn sé seo liosta méadaithe d’úsáideoirí san fhógra seo" - -#: src/view/com/home/HomeHeaderLayout.web.tsx:77 src/view/screens/Feeds.tsx:417 -#~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte a athrú" - -#: src/screens/Messages/List/index.tsx:86 -#, fuzzy -#~ msgid "Opens the message settings page" -#~ msgstr "Osclaíonn sé seo logleabhar an chórais" - -#: src/screens/Messages/Settings.tsx:97 src/screens/Messages/Settings.tsx:104 -#, fuzzy -#~ msgid "Play notification sounds" -#~ msgstr "Fuaimeanna fógra" - -#: src/components/dialogs/MutedWords.tsx:89 -#~ msgid "Posts can be muted based on their text, their tags, or both." -#~ msgstr "Is féidir postálacha a chuir i bhfolach de bharr a gcuid téacs, a gcuid clibeanna, nó an dá rud." - -#: src/screens/Messages/Conversation/MessagesList.tsx:47 src/screens/Messages/Conversation/MessagesList.tsx:53 -#, fuzzy -#~ msgid "Press to Retry" -#~ msgstr "Brúigh le iarracht eile a dhéanamh" - -#: src/tours/Tooltip.tsx:111 -#~ msgid "Quick tip" -#~ msgstr "Leid ghaste" - -#: src/view/com/modals/Repost.tsx:66 -#~ msgctxt "action" -#~ msgid "Quote post" -#~ msgstr "Luaigh an phostáil seo" - -#: src/view/com/modals/Repost.tsx:71 -#~ msgctxt "action" -#~ msgid "Quote Post" -#~ msgstr "Luaigh an phostáil seo" - -#: src/components/dms/MessageReportDialog.tsx:149 -#, fuzzy -#~ msgid "Reason: {0}" -#~ msgstr "Fáth:" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 -#~ msgid "Recommended Feeds" -#~ msgstr "Fothaí molta" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 -#~ msgid "Recommended Users" -#~ msgstr "Cuntais mholta" - -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 -#~ msgid "Remove image preview" -#~ msgstr "Bain réamhléiriú den íomhá" - -#: src/view/com/composer/ExternalEmbed.tsx:88 -#~ msgid "Removes default thumbnail from {0}" -#~ msgstr "Baineann sé seo an mhionsamhail réamhshocraithe de {0}" - -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -#, fuzzy -#~ msgid "Removes the image preview" -#~ msgstr "Bain réamhléiriú den íomhá" - -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#, fuzzy -#~ msgid "Replies on this thread are disabled" -#~ msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" - -#: src/components/WhoCanReply.tsx:243 -#~ msgid "Replies to this thread are disabled" -#~ msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" - -#: src/view/screens/PreferencesFollowingFeed.tsx:142 -#~ msgid "Reply Filters" -#~ msgstr "Scagairí freagra" - -#: src/view/com/post/Post.tsx:177 src/view/com/posts/FeedItem.tsx:285 -#~ msgctxt "description" -#~ msgid "Reply to <0/>" -#~ msgstr "Freagra ar <0/>" - -#: src/components/dms/ConvoMenu.tsx:146 src/components/dms/ConvoMenu.tsx:150 -#, fuzzy -#~ msgid "Report account" -#~ msgstr "Déan gearán faoi chuntas" - -#: src/view/com/posts/FeedItem.tsx:214 -#~ msgid "Reposted by <0/>" -#~ msgstr "Athphostáilte ag <0/>" - -#: src/screens/Messages/Conversation/MessageListError.tsx:54 -#, fuzzy -#~ msgid "Retry." -#~ msgstr "Bain triail eile as" - -#: src/view/com/lightbox/Lightbox.tsx:81 -#~ msgid "Saved to your camera roll." -#~ msgstr "Sábháilte i do rolla ceamara." - -#: src/components/dms/NewChat.tsx:226 -#~ msgid "Search for someone to start a conversation with." -#~ msgstr "Lorg duine éigin le comhrá a dhéanamh leo." - -#: src/view/com/notifications/FeedItem.tsx:411 src/view/com/util/UserAvatar.tsx:402 -#~ msgid "See profile" -#~ msgstr "Féach ar an bpróifíl" - -#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 -#~ msgid "See what's next" -#~ msgstr "Féach an chéad rud eile" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 -#~ msgid "Select some accounts below to follow" -#~ msgstr "Roghnaigh cúpla cuntas le leanúint" - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 -#~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "Roghnaigh fothaí le leanúint ón liosta thíos" - -#: src/screens/Onboarding/StepModeration/index.tsx:63 -#~ msgid "Select what you want to see (or not see), and we’ll handle the rest." -#~ msgstr "Roghnaigh na rudaí ba mhaith leat a fheiceáil (nó gan a fheiceáil), agus leanfaimid ar aghaidh as sin" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 -#~ msgid "Select your primary algorithmic feeds" -#~ msgstr "Roghnaigh do phríomhfhothaí algartamacha" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 -#~ msgid "Select your secondary algorithmic feeds" -#~ msgstr "Roghnaigh do chuid fothaí algartamacha tánaisteacha" - -#: src/view/screens/Settings/index.tsx:463 -#~ msgid "Sets color theme to dark" -#~ msgstr "Roghnaíonn sé seo an modh dorcha" - -#: src/view/screens/Settings/index.tsx:456 -#~ msgid "Sets color theme to light" -#~ msgstr "Roghnaíonn sé seo an modh sorcha" - -#: src/view/screens/Settings/index.tsx:450 -#~ msgid "Sets color theme to system setting" -#~ msgstr "Roghnaíonn sé seo scéim dathanna an chórais" - -#: src/view/screens/Settings/index.tsx:489 -#~ msgid "Sets dark theme to the dark theme" -#~ msgstr "Úsáideann sé seo an téama dorcha mar théama dorcha" - -#: src/view/screens/Settings/index.tsx:482 -#~ msgid "Sets dark theme to the dim theme" -#~ msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha" - -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "Taispeáin gach freagra" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 -#~ msgid "Show follows similar to {0}" -#~ msgstr "Taispeáin cuntais cosúil le {0}" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:119 -#~ msgid "Show quote-posts in Following feed" -#~ msgstr "Taispeáin postálacha athluaite san fhotha “Á Leanúint”" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:135 -#~ msgid "Show quotes in Following" -#~ msgstr "Taispeáin postálacha athluaite san fhotha “Á Leanúint”" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:95 -#~ msgid "Show re-posts in Following feed" -#~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:87 -#~ msgid "Show replies in Following" -#~ msgstr "Taispeáin freagraí san fhotha “Á Leanúint”" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:71 -#~ msgid "Show replies in Following feed" -#~ msgstr "Taispeáin freagraí san fhotha “Á Leanúint”" - -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "Taispeáin freagraí a bhfuil ar a laghad {value} {0} acu" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:111 -#~ msgid "Show reposts in Following" -#~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”" - -#: src/view/com/notifications/FeedItem.tsx:347 -#~ msgid "Show users" -#~ msgstr "Taispeáin úsáideoirí" - -#: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Foinse:" - -#: src/components/moderation/LabelsOnMeDialog.tsx:169 -#~ msgid "Source: <0>{0}" -#~ msgstr "Foinse: <0>{0}" - -#: src/tours/Tooltip.tsx:99 -#~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." -#~ msgstr "Tús cuairte ar fháiltiú. Ná téigh siar. Téigh ar aghaidh le roghanna eile a fháil nó brúigh anseo le imeacht." - -#: src/view/screens/Settings/index.tsx:862 -#~ msgid "Status page" -#~ msgstr "Leathanach stádais" - -#: src/screens/Signup/index.tsx:145 -#~ msgid "Step" -#~ msgstr "Céim" - -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 -#~ msgid "Subscribe to the {0} feed" -#~ msgstr "Liostáil leis an bhfotha {0}" - -#: src/view/screens/Search/Search.tsx:425 -#~ msgid "Suggested Follows" -#~ msgstr "Cuntais le leanúint" - -#: src/tours/HomeTour.tsx:48 -#~ msgid "Switch between feeds to control your experience." -#~ msgstr "Déan sealaíocht ar fhothaí le bheith i gceannas ar d’eispéireas anseo." - -#: src/components/dialogs/MutedWords.tsx:323 -#~ msgid "tag" -#~ msgstr "clib" - -#: src/view/com/util/images/AutoSizedImage.tsx:70 -#~ msgid "Tap to view fully" -#~ msgstr "Tapáil leis an rud iomlán a fheiceáil" - -#: src/components/dialogs/MutedWords.tsx:323 -#~ msgid "text" -#~ msgstr "téacs" - -#: src/components/moderation/ModerationDetailsDialog.tsx:127 -#~ msgid "the author" -#~ msgstr "an t-údar" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 -#~ msgid "There are many feeds to try:" -#~ msgstr "Tá a lán fothaí ann le blaiseadh:" - -#: src/screens/Messages/Conversation/MessageListError.tsx:23 -#, fuzzy -#~ msgid "There was an issue connecting to the chat." -#~ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 -#~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "Bhí fadhb ann maidir le do chuid roghanna a shioncronú leis an bhfreastalaí" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 -#~ msgid "These are popular accounts you might like:" -#~ msgstr "Is cuntais iad seo a bhfuil a lán leantóirí acu. Is féidir go dtaitneoidh siad leat." - -#: src/components/moderation/LabelsOnMeDialog.tsx:260 -#~ msgid "This appeal will be sent to <0>{0}." -#~ msgstr "Cuirfear an t-achomharc seo chuig <0>{0}." - -#: src/screens/Messages/Conversation/MessageListError.tsx:26 -#, fuzzy -#~ msgid "This chat was disconnected due to a network error." -#~ msgstr "Dínascadh an comhrá seo" - -#: src/screens/Profile/Sections/Feed.tsx:59 src/view/screens/ProfileFeed.tsx:471 src/view/screens/ProfileList.tsx:729 -#~ msgid "This feed is empty!" -#~ msgstr "Tá an fotha seo folamh!" - -#: src/components/moderation/ModerationDetailsDialog.tsx:124 -#~ msgid "This label was applied by {0}." -#~ msgstr "Cuireadh an lipéad seo ag {0}." - -#: src/components/moderation/LabelsOnMeDialog.tsx:165 -#, fuzzy -#~ msgid "This label was applied by you" -#~ msgstr "Chuir tusa an lipéad seo leis." - -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 -#~ msgid "This post will be hidden from feeds." -#~ msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí." - -#: src/view/com/modals/SelfLabel.tsx:137 -#~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Níl an rabhadh seo ar fáil ach le haghaidh postálacha a bhfuil meáin ceangailte leo." - -#: src/components/dialogs/MutedWords.tsx:283 -#~ msgid "This will delete {0} from your muted words. You can always add it back later." -#~ msgstr "Bainfidh sé seo {0} de do chuid focal i bhfolach. Tig leat é a chur ar ais níos déanaí." - -#: src/components/WhoCanReply.tsx:109 -#~ msgid "Thread settings updated" -#~ msgstr "Uasdátaíodh na socruithe snáithe" - -#: src/components/dialogs/MutedWords.tsx:112 -#~ msgid "Toggle between muted word options." -#~ msgstr "Scoránaigh idir na roghanna maidir le focail atá le cur i bhfolach." - -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 -#~ msgid "Unfollow" -#~ msgstr "Dílean" - -#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 -#~ msgid "Unlike" -#~ msgstr "Dímhol" - -#: src/components/dms/ConvoMenu.tsx:140 -#, fuzzy -#~ msgid "Unmute notifications" -#~ msgstr "Lódáil fógraí nua" - -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#, fuzzy -#~ msgid "Unmuted" -#~ msgstr "Ná coinnigh i bhfolach" - -#: src/lib/moderation/useReportOptions.ts:85 -#, fuzzy -#~ msgid "Unwanted sexual content" -#~ msgstr "Ábhar graosta nach mian liom" - -#: src/components/WhoCanReply.tsx:280 -#~ msgid "users followed by <0/>" -#~ msgstr "Úsáideoirí a bhfuil <0/> á leanúint" - -#: src/view/com/modals/ChangeHandle.tsx:510 -#~ msgid "Verify {0}" -#~ msgstr "Dearbhaigh {0}" - -#: src/view/screens/Settings/index.tsx:852 -#~ msgid "Version {0}" -#~ msgstr "Leagan {0}" - -#: src/components/dialogs/MutedWords.tsx:203 -#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#~ msgstr "Molaimid focail choitianta a bhíonn i go leor postálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr." - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 -#~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "Molaimid an fotha “Discover”." - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 -#~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." -#~ msgstr "Tá brón orainn! Ní féidir síntiúis a ghlacadh ach le deich lipéadóir, tá an teorainn sin sroichte agat." - -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 -#~ msgid "Welcome to <0>Bluesky" -#~ msgstr "Fáilte go <0>Bluesky" - -#: src/components/WhoCanReply.tsx:212 -#~ msgid "Who can reply dialog" -#~ msgstr "Dialóg: Cé atá in ann freagra a thabhairt" - -#: src/components/WhoCanReply.tsx:216 -#~ msgid "Who can reply?" -#~ msgstr "Cé atá in ann freagra a thabhairt?" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:143 -#~ msgid "You can change these settings later." -#~ msgstr "Is féidir leat na socruithe seo a athrú níos déanaí." - -#: src/view/screens/Feeds.tsx:477 -#~ msgid "You don't have any saved feeds!" -#~ msgstr "Níl aon fhothaí sábháilte agat!" - -#: src/screens/Messages/List/index.tsx:200 -#, fuzzy -#~ msgid "You have no messages yet. Start a conversation with someone!" -#~ msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!" - -#: src/screens/StarterPack/Wizard/State.tsx:95 -#~ msgid "You may only add up to 50 feeds" -#~ msgstr "Ní féidir leat ach suas le 50 fotha a chur leis seo" - -#: src/screens/StarterPack/Wizard/State.tsx:78 -#~ msgid "You may only add up to 50 profiles" -#~ msgstr "Ní féidir leat ach suas le 50 próifíl a chur leis seo" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 -#~ msgid "You must be 18 years or older to enable adult content" -#~ msgstr "Caithfidh tú a bheith 18 mbliana d’aois nó níos sine le hábhar do dhaoine fásta a fháil." - -#: src/screens/Onboarding/StepModeration/index.tsx:60 -#~ msgid "You're in control" -#~ msgstr "Tá sé faoi do stiúir" - -#: src/screens/Onboarding/StepFollowingFeed.tsx:62 -#~ msgid "Your default feed is \"Following\"" -#~ msgstr "Is é “Following” d’fhotha réamhshocraithe" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 94b1cfa4c5..d7ba6f3a27 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -62,7 +62,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -101,19 +101,19 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" @@ -143,7 +143,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "" @@ -217,12 +217,12 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "" @@ -240,13 +240,13 @@ msgstr "" #~ msgid "{invitesAvailable} invite codes available" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "" @@ -270,12 +270,12 @@ msgstr "" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -284,15 +284,15 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" @@ -300,7 +300,7 @@ msgstr "" #~ msgid "<0>{0} following" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -308,6 +308,10 @@ msgstr "" msgid "<0>{0} members" msgstr "" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "" @@ -330,18 +334,18 @@ msgstr "" #~ msgstr "<0>इधर आपका ऐप पासवर्ड है। इसे अपने हैंडल के साथ दूसरे ऐप में साइन करने के लिए उपयोग करें।।" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "" @@ -349,7 +353,7 @@ msgstr "" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "" @@ -373,8 +377,8 @@ msgstr "" #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "ऐप का एक नया संस्करण उपलब्ध है. कृपया ऐप का उपयोग जारी रखने के लिए अपडेट करें।" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "" @@ -382,17 +386,16 @@ msgstr "" msgid "Access profile and other navigation links" msgstr "" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "प्रवेर्शयोग्यता" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "" @@ -400,21 +403,21 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "अकाउंट" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "" @@ -435,27 +438,27 @@ msgstr "अकाउंट के विकल्प" msgid "Account removed from quick access" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "ऐड करो" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "" @@ -463,27 +466,29 @@ msgstr "" msgid "Add {displayName} to starter pack" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "सामग्री चेतावनी जोड़ें" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "इस सूची में किसी को जोड़ें" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "अकाउंट जोड़ें" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "इस फ़ोटो में विवरण जोड़ें" @@ -491,13 +496,13 @@ msgstr "इस फ़ोटो में विवरण जोड़ें" #~ msgid "Add ALT text" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "" @@ -534,7 +539,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" @@ -542,16 +547,16 @@ msgstr "" msgid "Add the default feed of only people you follow" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "अपने डोमेन में निम्नलिखित DNS रिकॉर्ड जोड़ें:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "सूचियों में जोड़ें" @@ -564,7 +569,7 @@ msgstr "इस फ़ीड को सहेजें" #~ msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "" @@ -576,9 +581,10 @@ msgstr "" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "पसंद की संख्या को समायोजित करें उत्तर को आपके फ़ीड में दिखाया जाना चाहिए।।" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "वयस्क सामग्री" @@ -586,16 +592,21 @@ msgstr "वयस्क सामग्री" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "विकसित" @@ -603,11 +614,11 @@ msgstr "विकसित" msgid "Algorithm training complete!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -621,53 +632,58 @@ msgstr "" #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "वैकल्पिक पाठ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "ऑल्ट टेक्स्ट अंधा और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और हर किसी को संदर्भ देने में मदद करता है।।" +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0} को ईमेल भेजा गया है। इसमें एक OTP कोड शामिल है जिसे आप नीचे दर्ज कर सकते हैं।।" @@ -675,7 +691,11 @@ msgstr "{0} को ईमेल भेजा गया है। इसमें msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "{0} को ईमेल भेजा गया है। इसमें एक OTP कोड शामिल है जिसे आप नीचे दर्ज कर सकते हैं।।" -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -683,15 +703,15 @@ msgstr "" #~ msgid "An error occured" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -704,19 +724,19 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" @@ -724,12 +744,12 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -741,40 +761,40 @@ msgstr "" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "और" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "" @@ -782,15 +802,20 @@ msgstr "" msgid "Anti-Social Behavior" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "ऐप भाषा" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "" @@ -802,7 +827,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "" @@ -810,18 +835,18 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "ऐप पासवर्ड" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "" @@ -834,8 +859,8 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -843,10 +868,10 @@ msgstr "" #~ msgid "Appeal submitted." #~ msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "" @@ -854,16 +879,16 @@ msgstr "" #~ msgid "Appeal this decision." #~ msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "दिखावट" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -876,7 +901,7 @@ msgstr "" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "क्या आप वाकई ऐप पासवर्ड \"{name}\" हटाना चाहते हैं?" @@ -888,10 +913,14 @@ msgstr "क्या आप वाकई ऐप पासवर्ड \"{name}\" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -904,11 +933,11 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "क्या आप वाकई इस ड्राफ्ट को हटाना करना चाहेंगे?" @@ -925,11 +954,11 @@ msgid "Are you writing in <0>{0}?" msgstr "" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "कलात्मक या गैर-कामुक नग्नता।।" @@ -938,22 +967,22 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "वापस" @@ -966,20 +995,20 @@ msgstr "वापस" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "मूल बातें" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "जन्मदिन" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "जन्मदिन:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "" @@ -988,24 +1017,24 @@ msgstr "" msgid "Block account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "खाता ब्लॉक करें" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "खाता ब्लॉक करें" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "खाता ब्लॉक करें?" @@ -1013,24 +1042,24 @@ msgstr "खाता ब्लॉक करें?" #~ msgid "Block this List" #~ msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "ब्लॉक किए गए खाते" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "ब्लॉक किए गए खाते" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपके साथ बातचीत नहीं कर सकते।" -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपके साथ बातचीत नहीं कर सकते। आप उनकी सामग्री नहीं देख पाएंगे और उन्हें आपकी सामग्री देखने से रोका जाएगा।" @@ -1042,25 +1071,29 @@ msgstr "ब्लॉक पोस्ट।" msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "अवरोधन सार्वजनिक है. अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपके साथ बातचीत नहीं कर सकते।" -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." msgstr "" #: src/components/ProgressGuide/List.tsx:55 @@ -1083,18 +1116,18 @@ msgstr "" #~ msgstr "Bluesky सार्वजनिक है।।" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:70 #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "ब्लूस्की एक स्वस्थ समुदाय बनाने के लिए आमंत्रित करता है। यदि आप किसी को आमंत्रित नहीं करते हैं, तो आप प्रतीक्षा सूची के लिए साइन अप कर सकते हैं और हम जल्द ही एक भेज देंगे।।" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "" @@ -1111,13 +1144,13 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1148,7 +1181,7 @@ msgstr "" #~ msgid "Build version {0} {1}" #~ msgstr "Build version {0} {1}" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "" @@ -1164,7 +1197,7 @@ msgstr "" #~ msgid "by {0}" #~ msgstr "" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "" @@ -1177,14 +1210,26 @@ msgid "by <0/>" msgstr "" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "कैमरा" @@ -1193,33 +1238,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "केवल अक्षर, संख्या, रिक्त स्थान, डैश और अंडरस्कोर हो सकते हैं। कम से कम 4 अक्षर लंबा होना चाहिए, लेकिन 32 अक्षरों से अधिक लंबा नहीं होना चाहिए।।" #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "कैंसिल" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1231,19 +1275,19 @@ msgstr "" msgid "Cancel account deletion" msgstr "अकाउंट बंद मत करो" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "नाम मत बदलो" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "तस्वीर को क्रॉप मत करो" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "प्रोफ़ाइल संपादन मत करो" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "प्रोफ़ाइल संपादन मत करो" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "कोटे पोस्ट मत करो" @@ -1252,6 +1296,7 @@ msgid "Cancel reactivation and log out" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "खोज मत करो" @@ -1263,14 +1308,14 @@ msgstr "खोज मत करो" msgid "Cancels opening the linked website" msgstr "" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1279,24 +1324,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "परिवर्तन" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "हैंडल बदलें" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "हैंडल बदलें" @@ -1304,12 +1353,12 @@ msgstr "हैंडल बदलें" msgid "Change my email" msgstr "मेरा ईमेल बदलें" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -1325,9 +1374,10 @@ msgstr "" msgid "Change Your Email" msgstr "मेरा ईमेल बदलें" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "" @@ -1337,14 +1387,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "" @@ -1369,7 +1419,7 @@ msgstr "" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "कुछ अनुशंसित उपयोगकर्ताओं की जाँच करें। ऐसे ही उपयोगकर्ता देखने के लिए उनका अनुसरण करें।" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1393,23 +1443,27 @@ msgstr "नीचे प्रवेश करने के लिए OTP को #~ msgid "Choose at least {0} more" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "सेवा चुनें" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -1435,7 +1489,7 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "अपना पासवर्ड चुनें" @@ -1447,16 +1501,15 @@ msgstr "अपना पासवर्ड चुनें" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "खोज क्वेरी साफ़ करें" @@ -1464,11 +1517,11 @@ msgstr "खोज क्वेरी साफ़ करें" #~ msgid "Clears all legacy storage data" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "" @@ -1492,15 +1545,15 @@ msgstr "" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "" @@ -1512,27 +1565,25 @@ msgstr "" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "चेतावनी को बंद करो" @@ -1540,12 +1591,11 @@ msgstr "चेतावनी को बंद करो" msgid "Close bottom drawer" msgstr "बंद करो" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "" @@ -1558,29 +1608,29 @@ msgid "Close image viewer" msgstr "छवि बंद करें" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "नेविगेशन पाद बंद करें" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1590,41 +1640,49 @@ msgstr "" msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "जवाब लिखो" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1637,17 +1695,19 @@ msgstr "जवाब लिखो" msgid "Configure content filtering setting for category: {name}" msgstr "" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "हो गया" @@ -1674,34 +1734,39 @@ msgstr "खाते को हटा दें" #~ msgid "Confirm your age to enable adult content." #~ msgstr "" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "OTP कोड" +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + #: src/view/com/modals/Waitlist.tsx:120 #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "कनेक्टिंग ..।" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "" @@ -1721,12 +1786,12 @@ msgstr "" #~ msgid "Content Filtering" #~ msgstr "सामग्री फ़िल्टरिंग" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "सामग्री भाषा" @@ -1736,13 +1801,13 @@ msgid "Content Not Available" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "सामग्री चेतावनी" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "सामग्री चेतावनी" @@ -1750,12 +1815,12 @@ msgstr "सामग्री चेतावनी" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "आगे बढ़ें" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "" @@ -1763,9 +1828,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "" @@ -1777,7 +1842,7 @@ msgstr "" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "" @@ -1790,20 +1855,21 @@ msgstr "" msgid "Copied" msgstr "कॉपी कर ली" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "" @@ -1811,17 +1877,17 @@ msgstr "" msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "कॉपी" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "" @@ -1833,12 +1899,12 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "" @@ -1851,17 +1917,17 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "पोस्ट टेक्स्ट कॉपी करें" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" @@ -1873,11 +1939,11 @@ msgstr "कॉपीराइट नीति" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "फ़ीड लोड नहीं कर सकता" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "सूची लोड नहीं कर सकता" @@ -1901,34 +1967,39 @@ msgstr "" #~ msgid "Country" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "नया खाता बनाएं" +#~ msgid "Create a new account" +#~ msgstr "नया खाता बनाएं" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "खाता बनाएँ" @@ -1937,11 +2008,11 @@ msgstr "खाता बनाएँ" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "" @@ -1950,7 +2021,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "नया खाता बनाएं" @@ -1962,7 +2033,7 @@ msgstr "नया खाता बनाएं" msgid "Create report for {0}" msgstr "" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "बनाया गया {0}" @@ -1979,29 +2050,29 @@ msgstr "बनाया गया {0}" #~ msgstr "" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "कस्टम डोमेन" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" @@ -2009,20 +2080,16 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "खतरा क्षेत्र" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "डार्क मोड" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" @@ -2030,38 +2097,43 @@ msgstr "" #~ msgid "Dark Theme" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "खाता हटाएं" @@ -2073,16 +2145,16 @@ msgstr "खाता हटाएं" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "अप्प पासवर्ड हटाएं" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -2090,7 +2162,7 @@ msgstr "" msgid "Delete for me" msgstr "" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "सूची हटाएँ" @@ -2110,33 +2182,33 @@ msgstr "मेरा खाता हटाएं" #~ msgid "Delete my account…" #~ msgstr "मेरा खाता हटाएं…" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "पोस्ट को हटाएं" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "इस पोस्ट को डीलीट करें?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "" @@ -2144,27 +2216,35 @@ msgstr "" msgid "Deleted post." msgstr "यह पोस्ट मिटाई जा चुकी है" -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "विवरण" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -2176,32 +2256,31 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "" @@ -2209,7 +2288,7 @@ msgstr "" #~ msgid "Disable haptics" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" @@ -2220,26 +2299,31 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + #: src/view/com/composer/Composer.tsx:145 #~ msgid "Discard draft" #~ msgstr "ड्राफ्ट हटाएं" -#: src/view/com/composer/Composer.tsx:837 +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "" @@ -2256,15 +2340,15 @@ msgstr "" msgid "Discover new feeds" msgstr "नए फ़ीड की खोज करें" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -2272,19 +2356,29 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "नाम" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "प्रदर्शन का नाम" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "प्रदर्शन का नाम" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "" @@ -2292,6 +2386,14 @@ msgstr "" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "" @@ -2300,11 +2402,11 @@ msgstr "" msgid "Doesn't begin or end with a hyphen" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "डोमेन सत्यापित!" @@ -2312,30 +2414,29 @@ msgstr "डोमेन सत्यापित!" #~ msgid "Don't have an invite code?" #~ msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "खत्म" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "" @@ -2344,11 +2445,15 @@ msgstr "" msgid "Done{extraText}" msgstr "खत्म {extraText}" +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + #: src/view/com/auth/login/ChooseAccountForm.tsx:46 #~ msgid "Double tap to sign in" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "" @@ -2356,16 +2461,16 @@ msgstr "" #~ msgid "Download Bluesky account data (repository)" #~ msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "" @@ -2377,39 +2482,43 @@ msgstr "" msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "" +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "" @@ -2417,58 +2526,59 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "छवि संपादित करें" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "सूची विवरण संपादित करें" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "मेरी फ़ीड संपादित करें" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "मेरी प्रोफ़ाइल संपादित करें" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "मेरी प्रोफ़ाइल संपादित करें" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "" @@ -2477,13 +2587,15 @@ msgstr "" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" @@ -2492,11 +2604,11 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे #~ msgid "Edit Saved Feeds" #~ msgstr "एडिट सेव्ड फीड" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "" @@ -2504,20 +2616,20 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "" @@ -2525,7 +2637,7 @@ msgstr "" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "ईमेल" @@ -2534,11 +2646,11 @@ msgstr "ईमेल" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "ईमेल" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2555,21 +2667,21 @@ msgstr "ईमेल अपडेट किया गया" msgid "Email verified" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "ईमेल:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "" @@ -2577,11 +2689,11 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "" @@ -2594,8 +2706,8 @@ msgstr "" #~ msgid "Enable adult content in your feeds" #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "" @@ -2603,16 +2715,16 @@ msgstr "" #~ msgid "Enable External Media" #~ msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" @@ -2620,17 +2732,17 @@ msgstr "" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "इस सेटिंग को केवल उन लोगों के बीच जवाब देखने में सक्षम करें जिन्हें आप फॉलो करते हैं।।" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "" @@ -2642,7 +2754,7 @@ msgstr "" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2650,7 +2762,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "" @@ -2659,6 +2771,10 @@ msgstr "" msgid "Enter a word or tag" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "" @@ -2667,15 +2783,15 @@ msgstr "" msgid "Enter the code you received to change your password." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "आप जिस डोमेन का उपयोग करना चाहते हैं उसे दर्ज करें" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "वह ईमेल दर्ज करें जिसका उपयोग आपने अपना खाता बनाने के लिए किया था। हम आपको एक \"reset code\" भेजेंगे ताकि आप एक नया पासवर्ड सेट कर सकें।" -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "" @@ -2683,8 +2799,8 @@ msgstr "" #~ msgid "Enter your email" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "अपना ईमेल पता दर्ज करें" @@ -2700,10 +2816,14 @@ msgstr "नीचे अपना नया ईमेल पता दर्ज #~ msgid "Enter your phone number" #~ msgstr "" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "अपने यूज़रनेम और पासवर्ड दर्ज करें" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "" @@ -2712,12 +2832,12 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "" @@ -2729,10 +2849,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "" @@ -2752,7 +2870,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2760,11 +2878,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "" @@ -2788,12 +2906,16 @@ msgstr "ऑल्ट टेक्स्ट" msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2813,32 +2935,32 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "" @@ -2847,12 +2969,12 @@ msgstr "" msgid "Failed to create app password." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "" @@ -2860,11 +2982,11 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "" @@ -2873,12 +2995,11 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "" @@ -2900,7 +3021,11 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "" @@ -2908,7 +3033,7 @@ msgstr "" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "" @@ -2916,36 +3041,35 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "" @@ -2963,19 +3087,23 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "सभी फ़ीड" @@ -2991,7 +3119,7 @@ msgstr "सभी फ़ीड" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "सामग्री को व्यवस्थित करने के लिए उपयोगकर्ताओं द्वारा फ़ीड बनाए जाते हैं। कुछ फ़ीड चुनें जो आपको दिलचस्प लगें।" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "फ़ीड कस्टम एल्गोरिदम हैं जिन्हें उपयोगकर्ता थोड़ी कोडिंग विशेषज्ञता के साथ बनाते हैं। <0/> अधिक जानकारी के लिए." @@ -2999,11 +3127,12 @@ msgstr "फ़ीड कस्टम एल्गोरिदम हैं ज #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "" @@ -3015,7 +3144,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "" @@ -3029,7 +3158,7 @@ msgstr "" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "" @@ -3045,7 +3174,7 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "मिलते-जुलते खाते ढूँढना" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "" @@ -3053,11 +3182,11 @@ msgstr "" #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "अपने मुख्य फ़ीड की स्क्रीन पर दिखाई देने वाली सामग्री को ठीक करें।।" -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "चर्चा धागे को ठीक-ट्यून करें।।" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "" @@ -3069,25 +3198,25 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "" +#~ msgid "Flip horizontal" +#~ msgstr "" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "" +#~ msgid "Flip vertically" +#~ msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "फॉलो" @@ -3096,12 +3225,12 @@ msgctxt "action" msgid "Follow" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "" @@ -3109,13 +3238,13 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "" @@ -3123,13 +3252,13 @@ msgstr "" #~ msgid "Follow All" #~ msgstr "" -#: src/view/com/profile/FollowButton.tsx:79 -msgctxt "action" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" msgid "Follow Back" msgstr "" @@ -3169,7 +3298,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "" @@ -3185,49 +3314,49 @@ msgstr "" msgid "followed you back" msgstr "" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "यह यूजर आपका फ़ोलो करता है" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "फोल्लोविंग" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "" @@ -3235,16 +3364,26 @@ msgstr "" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "यह यूजर आपका फ़ोलो करता है" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "" @@ -3256,6 +3395,11 @@ msgstr "सुरक्षा कारणों के लिए, हमें msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "सुरक्षा कारणों के लिए, आप इसे फिर से देखने में सक्षम नहीं होंगे। यदि आप इस पासवर्ड को खो देते हैं, तो आपको एक नया उत्पन्न करना होगा।।" +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" @@ -3268,16 +3412,16 @@ msgstr "" #~ msgid "Forgot password" #~ msgstr "पासवर्ड भूल गए" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "पासवर्ड भूल गए" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "" @@ -3285,34 +3429,34 @@ msgstr "" msgid "Frequently Posts Unwanted Content" msgstr "" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "गैलरी" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3327,7 +3471,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -3335,14 +3479,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "वापस जाओ" @@ -3350,10 +3493,10 @@ msgstr "वापस जाओ" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "वापस जाओ" @@ -3361,24 +3504,24 @@ msgstr "वापस जाओ" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "" @@ -3387,11 +3530,11 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "अगला" @@ -3409,6 +3552,8 @@ msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "" @@ -3416,11 +3561,11 @@ msgstr "" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "हैंडल" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "" @@ -3428,7 +3573,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "" @@ -3436,20 +3581,20 @@ msgstr "" #~ msgid "Hashtag: {tag}" #~ msgstr "" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "सहायता" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -3469,22 +3614,22 @@ msgstr "" msgid "Here is your app password." msgstr "यहां आपका ऐप पासवर्ड है." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "इसे छिपाएं" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "" @@ -3494,36 +3639,36 @@ msgstr "" #~ msgid "Hide post" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "उपयोगकर्ता सूची छुपाएँ" @@ -3551,7 +3696,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3559,16 +3704,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "होम फीड" @@ -3579,32 +3723,37 @@ msgstr "होम फीड" #~ msgid "Home Feed Preferences" #~ msgstr "होम फ़ीड प्राथमिकताएं" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "होस्टिंग प्रदाता" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "मेरे पास एक OTP कोड है" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "मेरे पास अपना डोमेन है" @@ -3618,18 +3767,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "यदि किसी को चुना जाता है, तो सभी उम्र के लिए उपयुक्त है।।" +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "यदि किसी को चुना जाता है, तो सभी उम्र के लिए उपयुक्त है।।" -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3645,21 +3794,20 @@ msgstr "" msgid "Illegal and Urgent" msgstr "" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "छवि alt पाठ" +#~ msgid "Image alt text" +#~ msgstr "छवि alt पाठ" #: src/view/com/util/UserAvatar.tsx:311 #: src/view/com/util/UserBanner.tsx:118 #~ msgid "Image options" #~ msgstr "छवि विकल्प" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3675,7 +3823,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "" @@ -3695,7 +3843,7 @@ msgstr "" msgid "Input name for app password" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "" @@ -3707,7 +3855,7 @@ msgstr "" #~ msgid "Input phone number for SMS verification" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "" @@ -3715,7 +3863,7 @@ msgstr "" #~ msgid "Input the password tied to {identifier}" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "" @@ -3727,11 +3875,11 @@ msgstr "" #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "" @@ -3739,15 +3887,19 @@ msgstr "" msgid "Input your user handle" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3756,12 +3908,12 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "अवैध उपयोगकर्ता नाम या पासवर्ड" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3773,7 +3925,7 @@ msgstr "" msgid "Invite a Friend" msgstr "एक दोस्त को आमंत्रित करें" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "आमंत्रण कोड" @@ -3805,30 +3957,39 @@ msgstr "" msgid "Invites, but personal" msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" @@ -3846,11 +4007,11 @@ msgstr "" #~ msgstr "वेटरलिस्ट में शामिल हों" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "" @@ -3858,18 +4019,23 @@ msgstr "" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -3890,25 +4056,30 @@ msgstr "" msgid "Language selection" msgstr "अपनी भाषा चुने" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "भाषा सेटिंग्स" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "भाषा" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + #: src/view/com/auth/create/StepHeader.tsx:20 #~ msgid "Last step!" #~ msgstr "" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "" @@ -3916,30 +4087,35 @@ msgstr "" #~ msgid "Learn more" #~ msgstr "" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "अधिक जानें" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "इस चेतावनी के बारे में अधिक जानें" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "" @@ -3960,7 +4136,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "उन्हें किसी भी भाषा को देखने के लिए अनचेक छोड़ दें।।" @@ -3976,16 +4152,16 @@ msgstr "" #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "चलो अपना पासवर्ड रीसेट करें!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "" @@ -3994,8 +4170,7 @@ msgstr "" #~ msgid "Library" #~ msgstr "चित्र पुस्तकालय" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "लाइट मोड" @@ -4012,21 +4187,21 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "इस फ़ीड को लाइक करो" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "इन यूजर ने लाइक किया है" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "" @@ -4052,7 +4227,7 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "" @@ -4060,24 +4235,24 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "सूची अवतार" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "" @@ -4085,32 +4260,31 @@ msgstr "" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "सूची का नाम" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "सूची" @@ -4135,18 +4309,18 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "नई सूचनाएं लोड करें" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "नई पोस्ट लोड करें" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "" @@ -4154,7 +4328,7 @@ msgstr "" #~ msgid "Local dev server" #~ msgstr "स्थानीय देव सर्वर" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "" @@ -4170,19 +4344,27 @@ msgstr "" msgid "Log out" msgstr "" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "उस खाते में लॉग इन करें जो सूचीबद्ध नहीं है" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "" @@ -4202,7 +4384,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -4227,30 +4409,35 @@ msgstr "" #~ msgid "May only contain letters and numbers" #~ msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "मेनू" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -4258,23 +4445,23 @@ msgstr "" msgid "Message from server: {0}" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" @@ -4291,63 +4478,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "मॉडरेशन" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "" @@ -4356,7 +4543,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "" @@ -4364,7 +4551,8 @@ msgstr "" msgid "More feeds" msgstr "अधिक फ़ीड" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "अधिक विकल्प" @@ -4372,15 +4560,15 @@ msgstr "अधिक विकल्प" #~ msgid "More post options" #~ msgstr "पोस्ट विकल्प" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" @@ -4388,13 +4576,13 @@ msgstr "" #~ msgid "Must be at least 3 characters" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" msgid "Mute" msgstr "" @@ -4402,16 +4590,16 @@ msgstr "" msgid "Mute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "खाता म्यूट करें" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "खातों को म्यूट करें" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "" @@ -4436,7 +4624,7 @@ msgstr "" msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "" @@ -4445,7 +4633,7 @@ msgstr "" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "इन खातों को म्यूट करें?" @@ -4477,13 +4665,13 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "थ्रेड म्यूट करें" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "" @@ -4491,16 +4679,16 @@ msgstr "" #~ msgid "Muted" #~ msgstr "" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "म्यूट किए गए खातों की पोस्ट आपके फ़ीड और आपकी सूचनाओं से हटा दी जाती हैं। म्यूट पूरी तरह से निजी हैं." @@ -4508,32 +4696,32 @@ msgstr "म्यूट किए गए खातों की पोस्ट msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "म्यूट करना निजी है. म्यूट किए गए खाते आपके साथ इंटरैक्ट कर सकते हैं, लेकिन आप उनकी पोस्ट नहीं देखेंगे या उनसे सूचनाएं प्राप्त नहीं करेंगे।" -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "जन्मदिन" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "मेरी फ़ीड" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "मेरी प्रोफाइल" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "मेरी फ़ीड" @@ -4542,11 +4730,11 @@ msgstr "मेरी फ़ीड" #~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "नाम" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "" @@ -4558,28 +4746,32 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "" @@ -4594,7 +4786,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "अपने फ़ॉलोअर्स और डेटा तक पहुंच कभी न खोएं।" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "" @@ -4602,30 +4794,34 @@ msgstr "" #~ msgid "Nevermind" #~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "नया" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "" @@ -4637,22 +4833,22 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "नई पोस्ट" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "नई पोस्ट" @@ -4661,30 +4857,30 @@ msgstr "नई पोस्ट" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4699,35 +4895,39 @@ msgstr "अगला" msgid "Next image" msgstr "अगली फोटो" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "नहीं" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "कोई विवरण नहीं" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "" @@ -4735,11 +4935,11 @@ msgstr "" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4747,10 +4947,8 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4758,16 +4956,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4775,19 +4981,18 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "{query} के लिए कोई परिणाम नहीं मिला\"" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "" @@ -4795,12 +5000,12 @@ msgstr "" #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "" @@ -4808,12 +5013,21 @@ msgstr "" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4825,8 +5039,8 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "लागू नहीं।" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "" @@ -4835,49 +5049,48 @@ msgstr "" msgid "Not right now" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "सूचनाएं" @@ -4885,11 +5098,12 @@ msgstr "सूचनाएं" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "" @@ -4909,29 +5123,28 @@ msgstr "" msgid "Off" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "अरे नहीं!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "ठीक है" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "" @@ -4943,11 +5156,11 @@ msgstr "" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "" @@ -4955,11 +5168,11 @@ msgstr "" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियाँ alt पाठ याद आती हैं।।" -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "" @@ -4975,7 +5188,11 @@ msgstr "" msgid "Only contains letters, numbers, and hyphens" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4984,23 +5201,23 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" @@ -5008,22 +5225,26 @@ msgstr "" #~ msgid "Open content filtering settings" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "" @@ -5031,7 +5252,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "" @@ -5043,20 +5264,20 @@ msgstr "" msgid "Open navigation" msgstr "ओपन नेविगेशन" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "" @@ -5064,15 +5285,19 @@ msgstr "" msgid "Opens {numItems} options" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "" @@ -5080,27 +5305,27 @@ msgstr "" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "भाषा सेटिंग्स खोलें" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "" @@ -5108,17 +5333,17 @@ msgstr "" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "" @@ -5142,11 +5367,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -5154,31 +5379,31 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "कस्टम डोमेन का उपयोग करने के लिए मोडल खोलें" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "मॉडरेशन सेटिंग्स खोलें" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "" @@ -5187,11 +5412,11 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "सभी बचाया फ़ीड के साथ स्क्रीन खोलें" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "" @@ -5199,7 +5424,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "ऐप पासवर्ड सेटिंग पेज खोलें" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "" @@ -5215,25 +5440,25 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "स्टोरीबुक पेज खोलें" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "सिस्टम लॉग पेज खोलें" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "धागे वरीयताओं को खोलता है" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -5241,8 +5466,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "" @@ -5250,7 +5475,7 @@ msgstr "" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "" @@ -5267,14 +5492,15 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "अन्य खाता" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "" @@ -5286,21 +5512,21 @@ msgstr "" msgid "Other..." msgstr "अन्य..।" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "पृष्ठ नहीं मिला" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -5310,42 +5536,42 @@ msgstr "पासवर्ड" msgid "Password Changed" msgstr "" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "पासवर्ड अद्यतन!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" @@ -5354,7 +5580,7 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "" @@ -5362,38 +5588,47 @@ msgstr "" #~ msgid "Phone number" #~ msgstr "" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "चित्र वयस्कों के लिए थे।।" -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "पिन किया गया फ़ीड" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "" @@ -5402,21 +5637,21 @@ msgstr "" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "" @@ -5425,7 +5660,7 @@ msgid "Please choose your handle." msgstr "" #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "" @@ -5462,11 +5697,11 @@ msgstr "" #~ msgstr "" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -5474,16 +5709,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "कृपया अपना पासवर्ड भी दर्ज करें:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -5497,15 +5732,16 @@ msgid "Please Verify Your Email" msgstr "" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "" @@ -5513,8 +5749,8 @@ msgstr "" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "" @@ -5528,17 +5764,21 @@ msgstr "पोस्ट" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "छुपा पोस्ट" @@ -5553,7 +5793,7 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -5561,7 +5801,7 @@ msgstr "" msgid "Post language" msgstr "पोस्ट भाषा" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "पोस्ट भाषा" @@ -5570,12 +5810,20 @@ msgstr "पोस्ट भाषा" msgid "Post not found" msgstr "पोस्ट नहीं मिला" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "" @@ -5599,7 +5847,7 @@ msgstr "शायद एक भ्रामक लिंक" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5609,8 +5857,8 @@ msgstr "" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -5627,79 +5875,83 @@ msgstr "" msgid "Previous image" msgstr "पिछली छवि" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "प्राथमिक भाषा" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "अपने फ़ॉलोअर्स को प्राथमिकता दें" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "गोपनीयता" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "गोपनीयता नीति" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "प्रसंस्करण..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "प्रोफ़ाइल" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "अपने ईमेल को सत्यापित करके अपने खाते को सुरक्षित रखें।।" -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "सार्वजनिक, साझा करने योग्य सूचियाँ जो फ़ीड चला सकती हैं।" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5717,8 +5969,8 @@ msgstr "" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5734,32 +5986,32 @@ msgstr "कोटे पोस्ट" #~ msgid "Quote Post" #~ msgstr "कोटे पोस्ट" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5767,16 +6019,16 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "अनुपात" +#~ msgid "Ratios" +#~ msgstr "अनुपात" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5784,19 +6036,21 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "" @@ -5804,7 +6058,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "" @@ -5816,26 +6070,25 @@ msgstr "" #~ msgid "Recommended Users" #~ msgstr "अनुशंसित लोग" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5853,11 +6106,11 @@ msgstr "" msgid "Remove account" msgstr "खाता हटाएं" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "" @@ -5865,7 +6118,7 @@ msgstr "" msgid "Remove Banner" msgstr "" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5881,13 +6134,14 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "" @@ -5900,7 +6154,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "छवि निकालें" @@ -5912,24 +6166,24 @@ msgstr "छवि निकालें" msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5945,16 +6199,16 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "इस फ़ीड को सहेजे गए फ़ीड से हटा दें?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "" @@ -5968,8 +6222,8 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "" @@ -5977,13 +6231,13 @@ msgstr "" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5994,7 +6248,7 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "" @@ -6014,7 +6268,7 @@ msgstr "" #~ msgid "Replies to this thread are disabled" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "" @@ -6033,11 +6287,11 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -6047,33 +6301,33 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -6092,8 +6346,8 @@ msgstr "" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "रिपोर्ट" @@ -6103,16 +6357,16 @@ msgstr "रिपोर्ट" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "रिपोर्ट फ़ीड" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "रिपोर्ट सूची" @@ -6120,13 +6374,13 @@ msgstr "रिपोर्ट सूची" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "रिपोर्ट पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -6142,8 +6396,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -6160,9 +6414,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "" @@ -6172,19 +6426,19 @@ msgstr "" msgid "Repost" msgstr "पुन: पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "पोस्ट दोबारा पोस्ट करें या उद्धृत करे" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "द्वारा दोबारा पोस्ट किया गया" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "" @@ -6192,12 +6446,12 @@ msgstr "" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -6223,7 +6477,7 @@ msgstr "अनुरोध बदलें" msgid "Request Code" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "पोस्ट करने से पहले वैकल्पिक टेक्स्ट की आवश्यकता है" @@ -6231,20 +6485,26 @@ msgstr "पोस्ट करने से पहले वैकल्पि msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "इस प्रदाता के लिए आवश्यक" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -6260,12 +6520,12 @@ msgstr "" #~ msgid "Reset onboarding" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "पासवर्ड रीसेट" @@ -6273,20 +6533,20 @@ msgstr "पासवर्ड रीसेट" #~ msgid "Reset preferences" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "प्राथमिकताओं को रीसेट करें" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "प्राथमिकताओं की स्थिति को रीसेट करें" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "" @@ -6295,16 +6555,16 @@ msgstr "" msgid "Retries the last action, which errored out" msgstr "" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -6318,17 +6578,17 @@ msgstr "फिर से कोशिश करो" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "" @@ -6336,37 +6596,48 @@ msgstr "" #~ msgid "SANDBOX. Posts and accounts are not permanent." #~ msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "सेव करो" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "सेव ऑल्ट टेक्स्ट" +#~ msgid "Save alt text" +#~ msgstr "सेव ऑल्ट टेक्स्ट" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "बदलाव सेव करो" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "बदलाव सेव करो" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "बदलाव सेव करो" @@ -6375,24 +6646,24 @@ msgstr "बदलाव सेव करो" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "फोटो बदलाव सेव करो" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" @@ -6400,79 +6671,76 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "खोज" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "" #: src/components/TagMenu/index.tsx:145 #~ msgid "Search for all posts by @{authorHandle} with tag {tag}" #~ msgstr "" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "" #: src/components/TagMenu/index.tsx:90 #~ msgid "Search for all posts with tag {tag}" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -6484,18 +6752,16 @@ msgstr "" msgid "Search for users" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "" @@ -6511,11 +6777,11 @@ msgstr "" msgid "See {truncatedTag} posts by user" msgstr "" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "" @@ -6527,7 +6793,7 @@ msgstr "" #~ msgid "See <0>{tag} posts by this user" #~ msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" @@ -6536,7 +6802,7 @@ msgstr "" #~ msgid "See profile" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "" @@ -6544,7 +6810,7 @@ msgstr "" #~ msgid "See what's next" #~ msgstr "आगे क्या है" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6556,7 +6822,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "" @@ -6572,7 +6838,7 @@ msgstr "" #~ msgid "Select Bluesky Social" #~ msgstr "Bluesky Social का चयन करें" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "मौजूदा खाते से चुनें" @@ -6580,7 +6846,7 @@ msgstr "मौजूदा खाते से चुनें" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -6588,15 +6854,15 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "" @@ -6613,7 +6879,7 @@ msgstr "" #~ msgid "Select some accounts below to follow" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6621,11 +6887,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "" @@ -6637,7 +6903,7 @@ msgstr "" #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6649,7 +6915,7 @@ msgstr "" #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "चुनें कि आप अपनी सदस्यता वाली फ़ीड में कौन सी भाषाएँ शामिल करना चाहते हैं। यदि कोई भी चयनित नहीं है, तो सभी भाषाएँ दिखाई जाएंगी।" @@ -6657,15 +6923,15 @@ msgstr "चुनें कि आप अपनी सदस्यता वा #~ msgid "Select your app language for the default text to display in the app" #~ msgstr "ऐप में प्रदर्शित होने वाले डिफ़ॉल्ट टेक्स्ट के लिए अपनी ऐप भाषा चुनें" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "" @@ -6673,7 +6939,7 @@ msgstr "" #~ msgid "Select your phone's country" #~ msgstr "" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।" @@ -6689,6 +6955,14 @@ msgstr "अपने फ़ीड में अनुवाद के लिए msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6703,23 +6977,23 @@ msgctxt "action" msgid "Send Email" msgstr "ईमेल भेजें" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "प्रतिक्रिया भेजें" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "" @@ -6727,17 +7001,17 @@ msgstr "" #~ msgid "Send Report" #~ msgstr "रिपोर्ट भेजें" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6745,7 +7019,7 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "" @@ -6759,7 +7033,7 @@ msgstr "" #~ msgid "Set Age" #~ msgstr "" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "" @@ -6783,7 +7057,7 @@ msgstr "" #~ msgid "Set dark theme to the dim theme" #~ msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "नया पासवर्ड सेट करें" @@ -6791,19 +7065,19 @@ msgstr "नया पासवर्ड सेट करें" #~ msgid "Set password" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "अपने फ़ीड से सभी उद्धरण पदों को छिपाने के लिए इस सेटिंग को \"नहीं\" में सेट करें। Reposts अभी भी दिखाई देगा।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "इस सेटिंग को अपने फ़ीड से सभी उत्तरों को छिपाने के लिए \"नहीं\" पर सेट करें।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "इस सेटिंग को अपने फ़ीड से सभी पोस्ट छिपाने के लिए \"नहीं\" करने के लिए सेट करें।।" -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "इस सेटिंग को \"हाँ\" में सेट करने के लिए एक थ्रेडेड व्यू में जवाब दिखाने के लिए। यह एक प्रयोगात्मक विशेषता है।।" @@ -6811,7 +7085,7 @@ msgstr "इस सेटिंग को \"हाँ\" में सेट क #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "इस सेटिंग को अपने निम्नलिखित फ़ीड में अपने सहेजे गए फ़ीड के नमूने दिखाने के लिए \"हाँ\" पर सेट करें। यह एक प्रयोगात्मक विशेषता है।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -6819,7 +7093,7 @@ msgstr "" msgid "Set up your account" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "" @@ -6843,7 +7117,7 @@ msgstr "" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "" @@ -6852,31 +7126,30 @@ msgstr "" #~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" #: src/view/com/auth/create/Step1.tsx:97 #: src/view/com/auth/login/LoginForm.tsx:154 #~ msgid "Sets server for the Bluesky client" #~ msgstr "" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "सेटिंग्स" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "यौन गतिविधि या कामुक नग्नता।।" @@ -6884,20 +7157,19 @@ msgstr "यौन गतिविधि या कामुक नग्नत msgid "Sexually Suggestive" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "शेयर" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "" @@ -6910,28 +7182,28 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6949,7 +7221,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6961,7 +7233,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6969,23 +7241,27 @@ msgstr "" msgid "Shares the linked website" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "दिखाओ" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "दिखाओ" @@ -7011,8 +7287,8 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -7020,14 +7296,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -7035,11 +7311,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "मेरी फीड से पोस्ट दिखाएं" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "उद्धरण पोस्ट दिखाओ" @@ -7055,11 +7331,11 @@ msgstr "उद्धरण पोस्ट दिखाओ" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "उत्तर दिखाएँ" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "अन्य सभी उत्तरों से पहले उन लोगों के उत्तर दिखाएं जिन्हें आप फ़ॉलो करते हैं।" @@ -7075,12 +7351,12 @@ msgstr "अन्य सभी उत्तरों से पहले उन #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "रीपोस्ट दिखाएँ" @@ -7088,7 +7364,7 @@ msgstr "रीपोस्ट दिखाएँ" #~ msgid "Show reposts in Following" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "" @@ -7110,27 +7386,26 @@ msgstr "" #~ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "साइन इन करें" @@ -7140,11 +7415,11 @@ msgstr "साइन इन करें" #~ msgid "Sign In" #~ msgstr "साइन इन करें" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "{0} के रूप में साइन इन करें" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "... के रूप में साइन इन करें" @@ -7160,42 +7435,41 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "साइन आउट" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "आपने इस रूप में साइन इन करा है:" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "" @@ -7207,8 +7481,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -7216,21 +7490,26 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "स्किप" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:82 #~ msgid "SMS verification" #~ msgstr "" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "" @@ -7246,7 +7525,7 @@ msgstr "" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -7259,14 +7538,14 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "" @@ -7274,30 +7553,30 @@ msgstr "" #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "उत्तर क्रमबद्ध करें" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "उसी पोस्ट के उत्तरों को इस प्रकार क्रमबद्ध करें:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "" +msgid "Source:" +msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -7309,53 +7588,57 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "स्क्वायर" +#~ msgid "Square" +#~ msgstr "स्क्वायर" #: src/view/com/modals/ServerInput.tsx:62 #~ msgid "Staging" #~ msgstr "स्टेजिंग" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -7363,7 +7646,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "स्थिति पृष्ठ" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" @@ -7371,7 +7654,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" @@ -7379,23 +7662,23 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "सब्सक्राइब" @@ -7403,7 +7686,7 @@ msgstr "सब्सक्राइब" msgid "Subscribe to @{0} to use these labels:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "" @@ -7412,14 +7695,18 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "इस सूची को सब्सक्राइब करें" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" @@ -7432,13 +7719,14 @@ msgstr "" msgid "Suggested for you" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "सहायता" @@ -7446,8 +7734,8 @@ msgstr "सहायता" #~ msgid "Swipe up to see more" #~ msgstr "" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "खाते बदलें" @@ -7455,20 +7743,21 @@ msgstr "खाते बदलें" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "प्रणाली" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "सिस्टम लॉग" @@ -7476,7 +7765,7 @@ msgstr "सिस्टम लॉग" #~ msgid "tag" #~ msgstr "" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "" @@ -7489,22 +7778,22 @@ msgid "Tags only" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "लंबा" +#~ msgid "Tall" +#~ msgstr "लंबा" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -7526,7 +7815,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "" @@ -7534,23 +7823,27 @@ msgstr "" msgid "Tell a joke!" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "शर्तें" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "सेवा की शर्तें" @@ -7569,25 +7862,33 @@ msgstr "" msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "पाठ इनपुट फ़ील्ड" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "" @@ -7595,21 +7896,21 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "अनब्लॉक करने के बाद अकाउंट आपसे इंटरैक्ट कर सकेगा।" @@ -7622,15 +7923,15 @@ msgstr "अनब्लॉक करने के बाद अकाउंट msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "सामुदायिक दिशानिर्देशों को <0/> पर स्थानांतरित कर दिया गया है" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "कॉपीराइट नीति को <0/> पर स्थानांतरित कर दिया गया है" @@ -7643,7 +7944,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7668,30 +7969,35 @@ msgstr "" msgid "The post may have been deleted." msgstr "हो सकता है कि यह पोस्ट हटा दी गई हो।" -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "समर्थन प्रपत्र स्थानांतरित कर दिया गया है. यदि आपको सहायता की आवश्यकता है, तो कृपया <0/> या हमसे संपर्क करने के लिए {HELP_DESK_URL} पर जाएं।" -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "सेवा की शर्तों को स्थानांतरित कर दिया गया है" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "" @@ -7700,23 +8006,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "" #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "" +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "" +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "" @@ -7724,15 +8029,18 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7742,21 +8050,25 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "" #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -7764,21 +8076,27 @@ msgstr "" #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "" @@ -7786,16 +8104,15 @@ msgstr "" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "एप्लिकेशन में एक अप्रत्याशित समस्या थी. कृपया हमें बताएं कि क्या आपके साथ ऐसा हुआ है!" @@ -7811,11 +8128,11 @@ msgstr "" #~ msgid "These are popular accounts you might like:" #~ msgstr "" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "यह {screenDescription} फ्लैग किया गया है:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -7827,15 +8144,15 @@ msgstr "" #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" @@ -7851,7 +8168,7 @@ msgstr "" msgid "This content has received a general warning from moderators." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "" @@ -7864,7 +8181,7 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" @@ -7872,7 +8189,7 @@ msgstr "" #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -7891,8 +8208,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7900,7 +8217,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "यह जानकारी अन्य उपयोगकर्ताओं के साथ साझा नहीं की जाती है।।" @@ -7912,11 +8229,11 @@ msgstr "अगर आपको कभी अपना ईमेल बदलन #~ msgid "This label was applied by {0}." #~ msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" @@ -7924,7 +8241,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7940,7 +8257,7 @@ msgstr "यह लिंक आपको निम्नलिखित वे msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "" @@ -7952,16 +8269,16 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "इस पोस्ट को हटा दिया गया है।।" -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -7969,15 +8286,15 @@ msgstr "" #~ msgid "This post will be hidden from feeds." #~ msgstr "" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7985,7 +8302,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "" @@ -8054,16 +8371,16 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकता" @@ -8071,15 +8388,15 @@ msgstr "थ्रेड प्राथमिकता" #~ msgid "Thread settings updated" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "थ्रेड मोड" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "" @@ -8087,18 +8404,22 @@ msgstr "" msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "" @@ -8107,25 +8428,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "ड्रॉपडाउन टॉगल करें" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "परिवर्तन" +#~ msgid "Transformations" +#~ msgstr "परिवर्तन" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "अनुवाद" @@ -8134,40 +8455,40 @@ msgctxt "action" msgid "Try again" msgstr "फिर से कोशिश करो" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपने इंटरनेट कनेक्शन की जांच करें।।" -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -8175,14 +8496,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "अनब्लॉक" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "" @@ -8192,17 +8513,17 @@ msgstr "" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "अनब्लॉक खाता" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -8217,12 +8538,12 @@ msgstr "" #~ msgid "Unfollow" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "" @@ -8234,18 +8555,18 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" msgid "Unmute" msgstr "" @@ -8253,12 +8574,12 @@ msgstr "" msgid "Unmute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "अनम्यूट खाता" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "" @@ -8274,12 +8595,12 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "थ्रेड को अनम्यूट करें" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" @@ -8287,20 +8608,25 @@ msgstr "" #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" @@ -8308,7 +8634,7 @@ msgstr "" #~ msgid "Unsave" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "" @@ -8317,7 +8643,7 @@ msgstr "" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "" @@ -8325,7 +8651,7 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -8339,79 +8665,96 @@ msgid "Unwanted Sexual Content" msgstr "" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "सूची में {displayName} अद्यतन करें" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "सूची में {displayName} अद्यतन करें" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" #: src/lib/hooks/useOTAUpdate.ts:15 #~ msgid "Update Available" #~ msgstr "उपलब्ध अद्यतन" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "अद्यतन..।" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "एक पाठ फ़ाइल अपलोड करने के लिए:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "अपने खाते या पासवर्ड को पूर्ण एक्सेस देने के बिना अन्य ब्लूस्की ग्राहकों को लॉगिन करने के लिए ऐप पासवर्ड का उपयोग करें।।" -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "डिफ़ॉल्ट प्रदाता का उपयोग करें" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "" @@ -8419,7 +8762,7 @@ msgstr "" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "" @@ -8464,36 +8807,36 @@ msgstr "" #~ msgid "User handle" #~ msgstr "यूजर हैंडल" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "लोग सूचियाँ" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "यूजर नाम या ईमेल पता" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "यूजर लोग" @@ -8505,22 +8848,20 @@ msgstr "यूजर लोग" msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "" @@ -8528,7 +8869,7 @@ msgstr "" #~ msgid "Verification code" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" @@ -8536,23 +8877,24 @@ msgstr "" #~ msgid "Verify {0}" #~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "ईमेल सत्यापित करें" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "मेरी ईमेल सत्यापित करें" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "मेरी ईमेल सत्यापित करें" @@ -8561,14 +8903,15 @@ msgstr "मेरी ईमेल सत्यापित करें" msgid "Verify New Email" msgstr "नया ईमेल सत्यापित करें" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "" @@ -8577,21 +8920,21 @@ msgstr "" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "" @@ -8599,11 +8942,15 @@ msgstr "" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -8611,12 +8958,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "" @@ -8629,15 +8976,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "डीबग प्रविष्टि देखें" @@ -8657,11 +9012,13 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "" @@ -8669,28 +9026,28 @@ msgstr "" msgid "View the avatar" msgstr "अवतार देखें" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8717,11 +9074,11 @@ msgstr "" #~ msgid "We also think you'll like \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8729,11 +9086,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -8753,19 +9110,19 @@ msgstr "" #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -8777,19 +9134,23 @@ msgstr "" #~ msgid "We'll look into your appeal promptly." #~ msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "हम आपके हमारी सेवा में शामिल होने को लेकर बहुत उत्साहित हैं!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -8797,16 +9158,16 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "हम क्षमा चाहते हैं! हमें वह पेज नहीं मिल रहा जिसे आप ढूंढ रहे थे।" @@ -8814,7 +9175,7 @@ msgstr "हम क्षमा चाहते हैं! हमें वह #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8830,7 +9191,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "" @@ -8842,17 +9203,17 @@ msgstr "" #~ msgid "What is the issue with this {collectionName}?" #~ msgstr "इस {collectionName} के साथ क्या मुद्दा है?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "इस पोस्ट में किस भाषा का उपयोग किया जाता है?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "कौन से भाषाएं आपको अपने एल्गोरिदमिक फ़ीड में देखना पसंद करती हैं?" @@ -8862,8 +9223,8 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8878,7 +9239,7 @@ msgstr "" #~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8911,25 +9272,25 @@ msgid "Why should this user be reviewed?" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "चौड़ा" +#~ msgid "Wide" +#~ msgstr "चौड़ा" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "पोस्ट लिखो" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "अपना जवाब दें" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "" @@ -8938,12 +9299,12 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "हाँ" @@ -8952,15 +9313,15 @@ msgstr "हाँ" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8968,11 +9329,14 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" + #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8989,7 +9353,7 @@ msgstr "" msgid "You are in line." msgstr "" -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8997,6 +9361,10 @@ msgstr "" msgid "You are not following anyone." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -9015,15 +9383,15 @@ msgstr "" #~ msgstr "" #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "अब आप अपने नए पासवर्ड के साथ साइन इन कर सकते हैं।।" @@ -9035,7 +9403,7 @@ msgstr "" msgid "You do not have any followers." msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -9043,7 +9411,7 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "आपके पास अभी तक कोई आमंत्रण कोड नहीं है! जब आप कुछ अधिक समय के लिए Bluesky पर रहेंगे तो हम आपको कुछ भेजेंगे।" -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "आपके पास कोई पिन किया हुआ फ़ीड नहीं है." @@ -9051,7 +9419,7 @@ msgstr "आपके पास कोई पिन किया हुआ फ़ #~ msgid "You don't have any saved feeds!" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "आपके पास कोई सहेजी गई फ़ीड नहीं है." @@ -9069,8 +9437,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -9097,7 +9465,7 @@ msgstr "" #~ msgid "You have muted this user." #~ msgstr "" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -9105,8 +9473,8 @@ msgstr "" msgid "You have no feeds." msgstr "" -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "आपके पास कोई सूची नहीं है।।" @@ -9114,7 +9482,7 @@ msgstr "आपके पास कोई सूची नहीं है।।" #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "" @@ -9122,11 +9490,11 @@ msgstr "" #~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." #~ msgstr "आपने अभी तक कोई भी अकाउंट ब्लॉक नहीं किया है. किसी खाते को ब्लॉक करने के लिए, उनकी प्रोफ़ाइल पर जाएं और उनके खाते के मेनू से \"खाता ब्लॉक करें\" चुनें।" -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "आपने अभी तक कोई ऐप पासवर्ड नहीं बनाया है। आप नीचे बटन दबाकर एक बना सकते हैं।।" -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "" @@ -9138,11 +9506,11 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -9179,7 +9547,11 @@ msgstr "" #~ msgid "You may only add up to 50 profiles" #~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "" @@ -9191,7 +9563,7 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -9199,12 +9571,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "" @@ -9212,47 +9583,51 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "आपको \"reset code\" के साथ एक ईमेल प्राप्त होगा। उस कोड को यहाँ दर्ज करें, फिर अपना नया पासवर्ड दर्ज करें।।" -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "" @@ -9271,7 +9646,7 @@ msgstr "" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "" @@ -9284,15 +9659,15 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "आपका खाता" @@ -9300,15 +9675,15 @@ msgstr "आपका खाता" msgid "Your account has been deleted" msgstr "" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "जन्म तिथि" @@ -9316,11 +9691,11 @@ msgstr "जन्म तिथि" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "" @@ -9328,9 +9703,9 @@ msgstr "" #~ msgid "Your default feed is \"Following\"" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "" @@ -9359,7 +9734,7 @@ msgstr "" msgid "Your full handle will be" msgstr "आपका पूरा हैंडल होगा" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "" @@ -9377,15 +9752,15 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "आपकी पोस्ट, पसंद और ब्लॉक सार्वजनिक हैं। म्यूट निजी हैं।।" -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "आपकी प्रोफ़ाइल" @@ -9393,14 +9768,14 @@ msgstr "आपकी प्रोफ़ाइल" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "आपका यूजर हैंडल" diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po new file mode 100644 index 0000000000..df51337bb3 --- /dev/null +++ b/src/locale/locales/hu/messages.po @@ -0,0 +1,7993 @@ +msgid "" +msgstr "" +"Project-Id-Version: Bluesky Social\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"PO-Revision-Date: \n" +"Last-Translator: Levente Pál Szíjártó \n" +"Language-Team: Levente Pál Szíjártó – szijartoleventepal@gmail.com\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.5\n" + +#: src/screens/Messages/components/ChatListItem.tsx:130 +msgid "(contains embedded content)" +msgstr "(beágyazott tartalom)" + +#: src/view/com/modals/VerifyEmail.tsx:150 +msgid "(no email)" +msgstr "(nincs megadott email-cím)" + +#: src/view/com/notifications/FeedItem.tsx:232 +#: src/view/com/notifications/FeedItem.tsx:327 +msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" +msgstr "{formattedCount} további" + +#: src/lib/hooks/useTimeAgo.ts:156 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "{0} nappal" + +#: src/lib/hooks/useTimeAgo.ts:146 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "{0} órával" + +#: src/components/moderation/LabelsOnMe.tsx:54 +msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgstr "{0} feljegyzést helyeztek erre a fiókra" + +#: src/components/moderation/LabelsOnMe.tsx:60 +msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgstr "{0} feljegyzést helyeztek erre a tartalomra" + +#: src/lib/hooks/useTimeAgo.ts:136 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "{0} perccel" + +#: src/lib/hooks/useTimeAgo.ts:167 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "{0} hónappal" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "{0} megosztás" + +#: src/lib/hooks/useTimeAgo.ts:126 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "{0} másodperccel" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "követő" + +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 +msgid "{0, plural, one {following} other {following}}" +msgstr "követett" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 +msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" +msgstr "Tetszik ({0} kedvelés)" + +#: src/view/com/post-thread/PostThreadItem.tsx:434 +msgid "{0, plural, one {like} other {likes}}" +msgstr "kedvelés" + +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:300 +msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{0} felhasználó kedveli" + +#: src/screens/Profile/Header/Metrics.tsx:59 +msgid "{0, plural, one {post} other {posts}}" +msgstr "bejegyzés" + +#: src/view/com/post-thread/PostThreadItem.tsx:418 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "idézés" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 +msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" +msgstr "Válaszírás ({0} válasz)" + +#: src/view/com/post-thread/PostThreadItem.tsx:400 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "megosztás" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 +msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" +msgstr "Mégse tetszik ({0} kedvelés)" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "{0} <0>a <1>címkékben" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "{0} <0>a <1>szövegekben és címkékben" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 +msgid "{0} joined this week" +msgstr "{0} felhasználó csatlakozott ezen a héten" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "{0} of {1}" +msgstr "{1}/{0}" + +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +msgid "{0} people have used this starter pack!" +msgstr "Eddig {0} személy vette igénybe ezt a kezdőcsomagot." + +#: src/view/com/util/UserAvatar.tsx:435 +msgid "{0}'s avatar" +msgstr "{0} profilképe" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:68 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "{0} kedvenc hírfolyamai és személyei – csatlakozz!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:47 +msgid "{0}'s starter pack" +msgstr "{0} kezdőcsomagja" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:158 +msgid "{0}d" +msgstr "{0} napja" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:148 +msgid "{0}h" +msgstr "{0} órája" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:138 +msgid "{0}m" +msgstr "{0} perce" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0}mo" +msgstr "{0} hónapja" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:128 +msgid "{0}s" +msgstr "{0} másodperce" + +#: src/components/LabelingServiceCard/index.tsx:96 +msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{count} felhasználó kedveli" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:183 +msgid "{displayName}'s Starter Pack" +msgstr "{displayName} kezdőcsomagja" + +#: src/screens/SignupQueued.tsx:207 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "órával" + +#: src/screens/SignupQueued.tsx:213 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "perccel" + +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 +msgid "{following} following" +msgstr "{following} követett" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 +msgid "{handle} can't be messaged" +msgstr "{handle} jelenleg nem fogad üzeneteket" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 +msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{likeCount} felhasználó kedveli" + +#: src/view/shell/Drawer.tsx:477 +msgid "{numUnreadNotifications} unread" +msgstr "{numUnreadNotifications} olvasatlan értesítés" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével" + +#: src/screens/StarterPack/Wizard/index.tsx:475 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" + +#: src/screens/StarterPack/Wizard/index.tsx:528 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" + +#: src/view/shell/Drawer.tsx:97 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "<0>{0} követő" + +#: src/view/shell/Drawer.tsx:108 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "<0>{0} követett" + +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "<0>{0} és<1> <2>{1} szerepel a kezdőcsomagodban" + +#: src/screens/StarterPack/Wizard/index.tsx:509 +msgid "<0>{0} is included in your starter pack" +msgstr "<0>{0} szerepel a kezdőcsomagodban" + +#: src/components/WhoCanReply.tsx:274 +msgid "<0>{0} members" +msgstr "<0>{0} tag" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date}, {time}" + +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Nem alkalmazható. Ez a figyelmeztetés csak a csatolt médiatartalommal rendelkező bejegyzésekhez használható fel." + +#: src/screens/StarterPack/Wizard/index.tsx:466 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>Te és<1> <2>{0} szerepeltek a kezdőcsomagodban" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "⚠Érvénytelen felhasználónév" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "24 óráig" + +#: src/screens/Login/LoginForm.tsx:250 +msgid "2FA Confirmation" +msgstr "Kétlépcsős azonosítás" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "30 napig" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "7 napig" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 +msgid "Access navigation links and settings" +msgstr "Navigációs hivatkozások és beállítások" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 +msgid "Access profile and other navigation links" +msgstr "Profil és egyéb navigációs hivatkozások" + +#: src/view/screens/Settings/index.tsx:464 +msgid "Accessibility" +msgstr "Kisegítő lehetőségek" + +#: src/view/screens/Settings/index.tsx:455 +msgid "Accessibility settings" +msgstr "Kisegítő lehetőségek" + +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 +msgid "Accessibility Settings" +msgstr "Kisegítő lehetőségek" + +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 +msgid "Account" +msgstr "Fiók" + +#: src/view/com/profile/ProfileMenu.tsx:132 +msgid "Account blocked" +msgstr "Letiltottad a fiókot" + +#: src/view/com/profile/ProfileMenu.tsx:145 +msgid "Account followed" +msgstr "Mostantól követed a fiókot" + +#: src/view/com/profile/ProfileMenu.tsx:108 +msgid "Account muted" +msgstr "Elnémítottad a fiókot" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 +msgid "Account Muted" +msgstr "Elnémított fiók" + +#: src/components/moderation/ModerationDetailsDialog.tsx:88 +msgid "Account Muted by List" +msgstr "Elnémított fiók (lista által)" + +#: src/view/com/util/AccountDropdownBtn.tsx:43 +msgid "Account options" +msgstr "Fióklehetőségek" + +#: src/view/com/util/AccountDropdownBtn.tsx:59 +msgid "Account removed from quick access" +msgstr "Eltávolítva a fióklistáról" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 +msgid "Account unblocked" +msgstr "Feloldottad a fiók tiltását" + +#: src/view/com/profile/ProfileMenu.tsx:157 +msgid "Account unfollowed" +msgstr "Mostantól már nem követed a fiókot" + +#: src/view/com/profile/ProfileMenu.tsx:98 +msgid "Account unmuted" +msgstr "Feloldottad a fiók némítását" + +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 +msgid "Add" +msgstr "Felvesz" + +#: src/screens/StarterPack/Wizard/index.tsx:577 +msgid "Add {0} more to continue" +msgstr "A folytatáshoz még {0} fiókot kell felvenned" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "{displayName} felvétele egy kezdőcsomaghoz" + +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 +msgid "Add a content warning" +msgstr "Tartalomfigyelmeztetés felvétele" + +#: src/view/screens/ProfileList.tsx:930 +msgid "Add a user to this list" +msgstr "Felhasználó felvétele a listára" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 +msgid "Add account" +msgstr "Fiók felvétele a listára" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "Helyettesítő szöveg hozzáadása" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Add alt text (optional)" +msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)" + +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 +msgid "Add App Password" +msgstr "Alkalmazásjelszó létrehozása" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word for configured settings" +msgstr "Elnémított szó felvétele beállítások alapján" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "Elnémított szavak és címkék felvétele" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "Ajánlott hírfolyamok felvétele" + +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "Add some feeds to your starter pack!" +msgstr "Vegyél fel néhány hírfolyamot a kezdőcsomagodhoz!" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "Az alapértelmezett hírfolyamban az általad követett személyek bejegyzései jelennek meg" + +#: src/view/com/modals/ChangeHandle.tsx:403 +msgid "Add the following DNS record to your domain:" +msgstr "Vedd fel az alábbi DNS-rekordot a tartományodhoz:" + +#: src/components/FeedCard.tsx:296 +msgid "Add this feed to your feeds" +msgstr "Add hozzá ezt a hírfolyamot a gyűjteményedhez!" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 +msgid "Add to Lists" +msgstr "Felvétel listára" + +#: src/view/com/feeds/FeedSourceCard.tsx:266 +msgid "Add to my feeds" +msgstr "Felvétel a hírfolyamgyűjteménybe" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "A felhasználó felkerült a listára" + +#: src/view/com/feeds/FeedSourceCard.tsx:125 +msgid "Added to my feeds" +msgstr "Felvetted a hírfolyamot a hírfolyamgyűjteményedbe" + +#: src/components/moderation/ContentHider.tsx:83 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +msgid "Adult Content" +msgstr "Felnőtt tartalom" + +#: src/screens/Moderation/index.tsx:366 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app honlapon engedélyezheted." + +#: src/components/moderation/LabelPreference.tsx:241 +msgid "Adult content is disabled." +msgstr "A felnőtt tartalmak le vannak tiltva." + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "Felnőtt tartalmi feljegyzések" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 +msgid "Advanced" +msgstr "Haladó beállítások" + +#: src/state/shell/progress-guide.tsx:171 +msgid "Algorithm training complete!" +msgstr "Az algoritmus idomítása befejeződött!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:381 +msgid "All accounts have been followed!" +msgstr "Mostantól mindegyik fiókot követed!" + +#: src/view/screens/Feeds.tsx:735 +msgid "All the feeds you've saved, right in one place." +msgstr "Itt egy helyen megtalálod az összes elmentett hírfolyamot." + +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 +msgid "Allow access to your direct messages" +msgstr "Hozzáférés megadása a személyes üzenetekhez" + +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 +msgid "Allow new messages from" +msgstr "Bejövő üzenetek fogadása" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 +msgid "Allow replies from:" +msgstr "Válaszok fogadása:" + +#: src/view/screens/AppPasswords.tsx:272 +msgid "Allows access to direct messages" +msgstr "Megengedi a személyes üzenetekhez való hozzáférést" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 +msgid "Already have a code?" +msgstr "Már van kódod?" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "Már bejelentkeztél, mint @{0}" + +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +msgid "ALT" +msgstr "HLYT" + +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 +msgid "Alt text" +msgstr "Helyettesítő szöveg" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +msgid "Alt Text" +msgstr "Helyettesítő szöveg" + +#: src/view/com/composer/photos/Gallery.tsx:252 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki számára további információval szolgál." + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "A helyettesítő szöveg le lesz vágva! Korlát: {0} karakter." + +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "Küldtünk egy emailt a(z) {0} címre. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." + +#: src/view/com/modals/ChangeEmail.tsx:114 +msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." +msgstr "Küldtünk egy emailt a korábbi email címedre: {0}. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." + +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "Küldtünk egy emailt. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "Hiba történt" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 +msgid "An error occurred" +msgstr "Hiba történt" + +#: src/view/com/composer/state/video.ts:412 +msgid "An error occurred while compressing the video." +msgstr "A videó tömörítése meghiúsult." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:135 +msgid "An error occurred while loading the video. Please try again later." +msgstr "A videó betöltése meghiúsult. Próbáld újra később!" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 +msgid "An error occurred while loading the video. Please try again." +msgstr "A videó betöltése meghiúsult. Próbáld újra!" + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "An error occurred while saving the QR code!" +msgstr "A QR-kód mentése meghiúsult!" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 +msgid "An error occurred while selecting the video" +msgstr "A videó kiválasztása meghiúsult" + +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 +msgid "An error occurred while trying to follow all" +msgstr "Az összes felhasználó követése meghiúsult" + +#: src/view/com/composer/state/video.ts:449 +msgid "An error occurred while uploading the video." +msgstr "A videó feltöltése meghiúsult." + +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "Olyan probléma, amit nem lehet a többi kategóriába sorolni" + +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "A csevegés indítása meghiúsult" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "A csevegés megnyitása meghiúsult" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 +msgid "An issue occurred, please try again." +msgstr "Hiba történt. Próbáld újra!" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "ismeretlen hiba történt" + +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +msgid "an unknown labeler" +msgstr "ismeretlen feljegyző" + +#: src/components/WhoCanReply.tsx:295 +#: src/view/com/notifications/FeedItem.tsx:231 +#: src/view/com/notifications/FeedItem.tsx:324 +msgid "and" +msgstr "és" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 +msgid "Animals" +msgstr "Állatok" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +msgid "Animated GIF" +msgstr "Animált GIF" + +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "Antiszociális viselkedés" + +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Bármely nyelv" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "Bárki kapcsolatba léphet" + +#: src/view/screens/LanguageSettings.tsx:94 +msgid "App Language" +msgstr "Az alkalmazás nyelve" + +#: src/view/screens/AppPasswords.tsx:232 +msgid "App password deleted" +msgstr "Törölted az alkalmazásjelszót" + +#: src/view/com/modals/AddAppPasswords.tsx:138 +msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." +msgstr "Egy alkalmazásjelszó neve csak az angol ábécé betűit, számokat, szóközöket, kötőjeleket és alsókötőjeleket tartalmazhat." + +#: src/view/com/modals/AddAppPasswords.tsx:103 +msgid "App Password names must be at least 4 characters long." +msgstr "Egy alkalmazásjelszónak legalább 4-karakter hosszúnak kell lennie." + +#: src/view/screens/Settings/index.tsx:664 +msgid "App password settings" +msgstr "Alkalmazásjelszó-beállítások" + +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 +msgid "App Passwords" +msgstr "Alkalmazásjelszók" + +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +msgid "Appeal" +msgstr "Fellebbezés" + +#: src/components/moderation/LabelsOnMeDialog.tsx:243 +msgid "Appeal \"{0}\" label" +msgstr "A(z) „{0}” feljegyzés fellebbezése" + +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgid "Appeal submitted" +msgstr "Elküldted a fellebbezést" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "Döntés fellebbezése" + +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 +msgid "Appearance" +msgstr "Megjelenítés" + +#: src/view/screens/Settings/index.tsx:476 +msgid "Appearance settings" +msgstr "Megjelenítési beállítások" + +#: src/Navigation.tsx:325 +msgid "Appearance Settings" +msgstr "Megjelenítési beállítások" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "Ajánlott hírfolyamok elfogadása" + +#: src/view/screens/AppPasswords.tsx:283 +msgid "Are you sure you want to delete the app password \"{name}\"?" +msgstr "Biztosan törölni akarod a(z) „{name}” nevű alkalmazásjelszót?" + +#: src/components/dms/MessageMenu.tsx:149 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a másik fél számára nem." + +#: src/screens/StarterPack/StarterPackScreen.tsx:632 +msgid "Are you sure you want to delete this starter pack?" +msgstr "Biztosan törölni akarod ezt a kezdőcsomagot?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "Biztosan el akarod vetni a változtatásokat?" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a másik fél viszont igen." + +#: src/view/com/feeds/FeedSourceCard.tsx:313 +msgid "Are you sure you want to remove {0} from your feeds?" +msgstr "Biztosan el akarod távolítani a(z) {0} c. hírfolyamot a gyűjteményedből?" + +#: src/components/FeedCard.tsx:313 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?" + +#: src/view/com/composer/Composer.tsx:532 +msgid "Are you sure you'd like to discard this draft?" +msgstr "Biztosan el akarod vetni ezt a piszkozatot?" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "Biztos vagy benne?" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 +msgid "Are you writing in <0>{0}?" +msgstr "Jelenleg <0>{0} nyelven írsz?" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 +msgid "Art" +msgstr "Művészet" + +#: src/view/com/composer/labels/LabelsBtn.tsx:170 +msgid "Artistic or non-erotic nudity." +msgstr "Művészi- vagy nem erotikus meztelenség" + +#: src/screens/Signup/StepHandle.tsx:173 +msgid "At least 3 characters" +msgstr "Adj meg legalább 3 karaktert" + +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 +msgid "Back" +msgstr "Vissza" + +#: src/view/screens/Settings/index.tsx:442 +msgid "Basics" +msgstr "Alapbeállítások" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "Birthday" +msgstr "Születésnap" + +#: src/view/screens/Settings/index.tsx:348 +msgid "Birthday:" +msgstr "Születésnap" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +msgid "Block" +msgstr "Letiltás" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Block account" +msgstr "Fiók letiltása" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 +msgid "Block Account" +msgstr "Fiók letiltása" + +#: src/view/com/profile/ProfileMenu.tsx:324 +msgid "Block Account?" +msgstr "Fiók letiltása" + +#: src/view/screens/ProfileList.tsx:643 +msgid "Block accounts" +msgstr "Fiókok letiltása" + +#: src/view/screens/ProfileList.tsx:747 +msgid "Block list" +msgstr "Lista letiltása" + +#: src/view/screens/ProfileList.tsx:742 +msgid "Block these accounts?" +msgstr "Fiókok letiltása" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 +msgid "Blocked" +msgstr "Letiltva" + +#: src/screens/Moderation/index.tsx:280 +msgid "Blocked accounts" +msgstr "Letiltott fiókok" + +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 +msgid "Blocked Accounts" +msgstr "Letiltott fiókok" + +#: src/view/com/profile/ProfileMenu.tsx:336 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." + +#: src/view/screens/ModerationBlockedAccounts.tsx:116 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes." + +#: src/view/com/post-thread/PostThread.tsx:412 +msgid "Blocked post." +msgstr "Letiltott bejegyzés." + +#: src/screens/Profile/Sections/Labels.tsx:173 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket helyezzen a fiókodra." + +#: src/view/screens/ProfileList.tsx:744 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "A letiltás nyilvános. Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." + +#: src/view/com/profile/ProfileMenu.tsx:333 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "A fiók letiltása nem fogja megakadályozni a feljegyzések hozzárendelését a saját fiókodhoz, viszont a letiltott fiók nem lesz képes válaszolni a bejegyzéseidre és egyéb módon kapcsolatba lépni Veled." + +#: src/view/com/auth/SplashScreen.web.tsx:172 +msgid "Blog" +msgstr "Blog" + +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "A Bluesky egy nyílt hálózat, ahol saját szolgáltatót választhatsz. Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz." + +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "A Bluesky ismerősökkel még jobb!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon." + +#: src/screens/Moderation/index.tsx:571 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "A Bluesky nem fogja mutatni a profilodat és a bejegyzéseidet a kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi priváttá a profilodat." + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "Képek elhomályosítása" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "Képek elhomályosítása és kiszűrés a hírfolyamokból" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 +msgid "Books" +msgstr "Könyvek" + +#: src/components/FeedInterstitials.tsx:350 +msgid "Browse more accounts on the Explore page" +msgstr "További fiókokat a Felfedezés oldalon találsz" + +#: src/components/FeedInterstitials.tsx:483 +msgid "Browse more feeds on the Explore page" +msgstr "További hírfolyamokat a Felfedezés oldalon találsz" + +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 +msgid "Browse more suggestions" +msgstr "További javaslatok" + +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 +msgid "Browse more suggestions on the Explore page" +msgstr "További javaslatokat a Felfedezés oldalon találsz" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "További hírfolyamok" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +msgid "Business" +msgstr "Honlap" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "by —" +msgstr "Szerző: —" + +#: src/components/LabelingServiceCard/index.tsx:62 +msgid "By {0}" +msgstr "Szerző: {0}" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:164 +msgid "by <0/>" +msgstr "Szerző: <0/>" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "A fiók létrehozásával elfogadod az <0>adatvédelmi irányelveket." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket és az <1>adatvédelmi irányelveket." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket." + +#: src/view/com/profile/ProfileSubpageHeader.tsx:162 +msgid "by you" +msgstr "Saját" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 +msgid "Camera" +msgstr "Kamera" + +#: src/view/com/modals/AddAppPasswords.tsx:180 +msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." +msgstr "A jelszó neve csak az angol ábécé betűit, számokat, szóközöket, kötőjeleket és alsókötőjeleket tartalmazhat. Legalább 4, de legfeljebb 32 karakter hosszú lehet." + +#: src/components/Menu/index.tsx:235 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 +#: src/screens/Deactivated.tsx:161 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 +msgid "Cancel" +msgstr "Mégse" + +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 +msgctxt "action" +msgid "Cancel" +msgstr "Mégse" + +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 +msgid "Cancel account deletion" +msgstr "Fióktörlés megszakítása" + +#: src/view/com/modals/ChangeHandle.tsx:137 +msgid "Cancel change handle" +msgstr "Felhasználónévváltás megszakítása" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "Képkivágás megszakítása" + +#~ msgid "Cancel profile editing" +#~ msgstr "Profilszerkesztés megszakítása" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 +msgid "Cancel quote post" +msgstr "Idézés megszakítása" + +#: src/screens/Deactivated.tsx:155 +msgid "Cancel reactivation and log out" +msgstr "Újraaktiválás megszakítása és kilépés" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 +msgid "Cancel search" +msgstr "Keresés megszakítása" + +#: src/view/com/modals/LinkWarning.tsx:106 +msgid "Cancels opening the linked website" +msgstr "A hivatkozás megnyitásának megszakítása" + +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 +msgid "Cannot interact with a blocked user" +msgstr "Egy letiltott felhasználóval nem léphetsz kapcsolatba" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 +msgid "Captions (.vtt)" +msgstr "Feliratok (.vtt)" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +msgid "Captions & alt text" +msgstr "Feliratok és helyettesítő szöveg" + +#: src/view/com/modals/VerifyEmail.tsx:160 +msgid "Change" +msgstr "Megváltoztatás" + +#: src/view/screens/Settings/index.tsx:342 +msgctxt "action" +msgid "Change" +msgstr "Megváltoztatás" + +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "Email-cím megváltoztatása" + +#: src/view/screens/Settings/index.tsx:685 +msgid "Change handle" +msgstr "Felhasználónév megváltoztatása" + +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 +msgid "Change Handle" +msgstr "Felhasználónév megváltoztatása" + +#: src/view/com/modals/VerifyEmail.tsx:155 +msgid "Change my email" +msgstr "Email-cím megváltoztatása" + +#: src/view/screens/Settings/index.tsx:730 +msgid "Change password" +msgstr "Jelszó megváltoztatása" + +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:741 +msgid "Change Password" +msgstr "Jelszó megváltoztatása" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 +msgid "Change post language to {0}" +msgstr "Bejegyzés nyelvének megváltoztatása erre: {0}" + +#: src/view/com/modals/ChangeEmail.tsx:104 +msgid "Change Your Email" +msgstr "Email-cím megváltoztatása" + +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 +msgid "Chat" +msgstr "Csevegés" + +#: src/components/dms/ConvoMenu.tsx:82 +msgid "Chat muted" +msgstr "Elnémítottad a csevegést" + +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 +msgid "Chat settings" +msgstr "Csevegések" + +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 +msgid "Chat Settings" +msgstr "Csevegések" + +#: src/components/dms/ConvoMenu.tsx:84 +msgid "Chat unmuted" +msgstr "Feloldottad a csevegés némítását" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "Állapot ellenőrzése" + +#: src/screens/Login/LoginForm.tsx:275 +msgid "Check your email for a login code and enter it here." +msgstr "Add meg az emailben kapott megerősítőkódot!" + +#: src/view/com/modals/DeleteAccount.tsx:231 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "Küldtünk egy emailt. Add meg a benne található ellenőrzőkódot:" + +#: src/screens/StarterPack/Wizard/index.tsx:199 +msgid "Choose Feeds" +msgstr "Hírfolyamok böngészése" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 +msgid "Choose for me" +msgstr "Létrehozás automatikusan" + +#: src/screens/StarterPack/Wizard/index.tsx:195 +msgid "Choose People" +msgstr "Személyek kiválasztása" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "Válaszd ki a médiatartalomra alkalmazható feljegyzési kategóriákat! Ha egyet sem választasz ki, akkor a bejegyzést bármilyen közönség által megtekinthetőnek vesszük." + +#: src/view/com/auth/server-input/index.tsx:76 +msgid "Choose Service" +msgstr "Szolgáltatás kiválasztása" + +#: src/screens/Onboarding/StepFinished.tsx:271 +msgid "Choose the algorithms that power your custom feeds." +msgstr "Válaszd ki az algoritmusokat, amelyek az egyéni hírfolyamaidat működtetik!" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "Szín használata profilképként" + +#: src/screens/Signup/StepInfo/index.tsx:201 +msgid "Choose your password" +msgstr "Jelszó megadása" + +#: src/view/screens/Settings/index.tsx:877 +msgid "Clear all storage data" +msgstr "Összes adat törlése" + +#: src/view/screens/Settings/index.tsx:880 +msgid "Clear all storage data (restart after this)" +msgstr "Összes adat törlése (A program újra fog indulni)" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "Keresési kifejezés törlése" + +#: src/view/screens/Settings/index.tsx:878 +msgid "Clears all storage data" +msgstr "Az összes adat törlése" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "kattints ide" + +#: src/view/com/modals/DeleteAccount.tsx:208 +msgid "Click here for more information on deactivating your account" +msgstr "További információ a fiókod törléséről" + +#: src/view/com/modals/DeleteAccount.tsx:216 +msgid "Click here for more information." +msgstr "További információ." + +#: src/components/TagMenu/index.web.tsx:152 +msgid "Click here to open tag menu for {tag}" +msgstr "A(z) {tag} címke menüjének megnyitása" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +msgid "Click to disable quote posts of this post." +msgstr "Kattints ide a bejegyzés idézésének letiltásához." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "Kattints ide a bejegyzés idézésének engedélyezéséhez." + +#: src/components/dms/MessageItem.tsx:240 +msgid "Click to retry failed message" +msgstr "Üzenetküldés megkísérlése ismét" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "Éghajlat" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "Kipp 🐴 kopp 🐴" + +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 +msgid "Close" +msgstr "Bezárás" + +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 +msgid "Close active dialog" +msgstr "Az előtérben lévő párbeszédablak bezárása" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "Figyelmeztetés bezárása" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "Alsó kinyíló menü bezárása" + +#: src/components/dialogs/GifSelect.tsx:276 +msgid "Close dialog" +msgstr "Párbeszédablak bezárása" + +#: src/components/dialogs/GifSelect.tsx:169 +msgid "Close GIF dialog" +msgstr "GIF-párbeszédablak bezárása" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 +msgid "Close image" +msgstr "Kép bezárása" + +#: src/view/com/lightbox/Lightbox.web.tsx:129 +msgid "Close image viewer" +msgstr "Képnézegető bezárása" + +#: src/view/shell/index.web.tsx:67 +msgid "Close navigation footer" +msgstr "Navigációs lábléc bezárása" + +#: src/components/Menu/index.tsx:229 +#: src/components/TagMenu/index.tsx:261 +msgid "Close this dialog" +msgstr "Párbeszédablak bezárása" + +#: src/view/shell/index.web.tsx:68 +msgid "Closes bottom navigation bar" +msgstr "Alsó navigációs sáv bezárása" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "Jelszófrissítési figyelmeztetés bezárása" + +#: src/view/com/composer/Composer.tsx:549 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Bejegyzésíró bezárása és a piszkozat elvetése" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 +msgid "Closes viewer for header image" +msgstr "Borítókép-nézegető bezárása" + +#: src/view/com/notifications/FeedItem.tsx:265 +msgid "Collapse list of users" +msgstr "Lista összecsukása" + +#: src/view/com/notifications/FeedItem.tsx:470 +msgid "Collapses list of users for a given notification" +msgstr "Egy értesítés felhasználólistájának összecsukása" + +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Színmód" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 +msgid "Comedy" +msgstr "Humor" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 +msgid "Comics" +msgstr "Képregények" + +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "Közösségi irányelvek" + +#: src/screens/Onboarding/StepFinished.tsx:284 +msgid "Complete onboarding and start using your account" +msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése" + +#: src/screens/Signup/index.tsx:144 +msgid "Complete the challenge" +msgstr "Biztonsági kihívás" + +#: src/view/com/composer/Composer.tsx:632 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "Írj legfeljebb {MAX_GRAPHEME_LENGTH} karakter hosszú bejegyzéseket" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +msgid "Compose reply" +msgstr "Válaszírás" + +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "Videó tömörítése folyamatban…" + +#: src/components/moderation/LabelPreference.tsx:81 +msgid "Configure content filtering setting for category: {name}" +msgstr "A(z) „{name}” tartalomkategória szűrési beállításai" + +#: src/components/moderation/LabelPreference.tsx:243 +msgid "Configured in <0>moderation settings." +msgstr "A <0>moderálási beállításokban módosítható." + +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 +#: src/view/com/modals/VerifyEmail.tsx:239 +#: src/view/com/modals/VerifyEmail.tsx:241 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 +msgid "Confirm" +msgstr "Megerősítés" + +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 +msgid "Confirm Change" +msgstr "Változtatások megerősítése" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 +msgid "Confirm content language settings" +msgstr "Tartalomnyelvi beállítások megerősítése" + +#: src/view/com/modals/DeleteAccount.tsx:282 +msgid "Confirm delete account" +msgstr "Fiók törlésének megerősítése" + +#: src/screens/Moderation/index.tsx:314 +msgid "Confirm your age:" +msgstr "Életkor megerősítése:" + +#: src/screens/Moderation/index.tsx:305 +msgid "Confirm your birthdate" +msgstr "Születési dátum megerősítése" + +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 +msgid "Confirmation code" +msgstr "Megerősítőkód" + +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "Megerősítőkód" + +#: src/screens/Login/LoginForm.tsx:309 +msgid "Connecting..." +msgstr "Csatlakozás folyamatban…" + +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 +msgid "Contact support" +msgstr "Támogatás" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "Letiltottad a tartalmat" + +#: src/screens/Moderation/index.tsx:298 +msgid "Content filters" +msgstr "Tartalomszűrés" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 +msgid "Content Languages" +msgstr "Tartalmak nyelve" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 +msgid "Content Not Available" +msgstr "Ez a tartalom nem elérhető" + +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 +msgid "Content Warning" +msgstr "Tartalomfigyelmeztetés" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "Tartalomfigyelmeztetések" + +#: src/components/Menu/index.web.tsx:83 +msgid "Context menu backdrop, click to close the menu." +msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásához!" + +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 +msgid "Continue" +msgstr "Folytatás" + +#: src/components/AccountList.tsx:121 +msgid "Continue as {0} (currently signed in)" +msgstr "Folytatás, mint {0} (Bejelentkezve)" + +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "Válaszlánc folytatása…" + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "Következő lépés" + +#: src/screens/Messages/components/ChatListItem.tsx:164 +msgid "Conversation deleted" +msgstr "Törölted a beszélgetést" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "Sütés-főzés" + +#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "Vágólapra helyezve" + +#: src/view/screens/Settings/index.tsx:234 +msgid "Copied build version to clipboard" +msgstr "Buildszám a vágólapra helyezve" + +#: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 +#: src/view/com/modals/AddAppPasswords.tsx:80 +#: src/view/com/modals/ChangeHandle.tsx:313 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 +msgid "Copied to clipboard" +msgstr "Vágólapra helyezve" + +#: src/components/dialogs/Embed.tsx:136 +msgid "Copied!" +msgstr "Vágólapra helyezve." + +#: src/view/com/modals/AddAppPasswords.tsx:215 +msgid "Copies app password" +msgstr "Alkalmazásjelszó másolása" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:214 +msgid "Copy" +msgstr "Másolás" + +#: src/view/com/modals/ChangeHandle.tsx:467 +msgid "Copy {0}" +msgstr "{0} másolása" + +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 +msgid "Copy code" +msgstr "Kód másolása" + +#: src/components/StarterPack/ShareDialog.tsx:124 +msgid "Copy link" +msgstr "Hivatkozás másolása" + +#: src/components/StarterPack/ShareDialog.tsx:131 +msgid "Copy Link" +msgstr "Hivatkozás másolása" + +#: src/view/screens/ProfileList.tsx:487 +msgid "Copy link to list" +msgstr "Lista hivatkozásának másolása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +msgid "Copy link to post" +msgstr "Bejegyzés hivatkozásának másolása" + +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 +msgid "Copy message text" +msgstr "Üzenet szövegének másolása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +msgid "Copy post text" +msgstr "Bejegyzés szövegének másolása" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Copy QR code" +msgstr "QR-kód másolása" + +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "Jogi irányelvek" + +#: src/components/dms/LeaveConvoPrompt.tsx:39 +msgid "Could not leave chat" +msgstr "A csevegés elhagyása meghiúsult" + +#: src/view/screens/ProfileFeed.tsx:104 +msgid "Could not load feed" +msgstr "A hírfolyam betöltése meghiúsult" + +#: src/view/screens/ProfileList.tsx:1020 +msgid "Could not load list" +msgstr "A lista betöltése meghiúsult" + +#: src/components/dms/ConvoMenu.tsx:88 +msgid "Could not mute chat" +msgstr "A csevegés elnémítása meghiúsult" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:56 +msgid "Could not process your video" +msgstr "A videó feldolgozása meghiúsult." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 +msgid "Create" +msgstr "Létrehozás" + +#: src/view/screens/Settings/index.tsx:403 +msgid "Create a new Bluesky account" +msgstr "Új Bluesky-fiók létrehozása" + +#: src/components/StarterPack/QrCodeDialog.tsx:153 +msgid "Create a QR code for a starter pack" +msgstr "QR-kód létrehozása egy kezdőcsomaghoz" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 +msgid "Create a starter pack" +msgstr "Kezdőcsomag létrehozása" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 +msgid "Create a starter pack for me" +msgstr "Automatikus létrehozás" + +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "Regisztráció" + +#: src/screens/Signup/index.tsx:93 +msgid "Create Account" +msgstr "Regisztráció" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +msgid "Create an account" +msgstr "Regisztráció" + +#: src/screens/Onboarding/StepProfile/index.tsx:292 +msgid "Create an avatar instead" +msgstr "Profilkép létrehozása" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 +msgid "Create another" +msgstr "Másik létrehozása" + +#: src/view/com/modals/AddAppPasswords.tsx:243 +msgid "Create App Password" +msgstr "Alkalmazásjelszó létrehozása" + +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "Regisztráció" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:101 +msgid "Create report for {0}" +msgstr "Jelentés neki: {0}" + +#: src/view/screens/AppPasswords.tsx:252 +msgid "Created {0}" +msgstr "Létrehozás dátuma: {0}" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 +msgid "Culture" +msgstr "Kultúra" + +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "Egyéni" + +#: src/view/com/modals/ChangeHandle.tsx:375 +msgid "Custom domain" +msgstr "Egyéni tartomány" + +#: src/view/screens/Feeds.tsx:761 +#: src/view/screens/Search/Explore.tsx:391 +msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." +msgstr "A közösség által épített egyéni hírfolyamok új élményekkel ruháznak fel, és segítenek megtalálni a Téged érdeklő tartalmakat." + +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 +msgid "Customize media from external sites." +msgstr "A külső forrásból származó médiatartalmak testreszabása." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 +msgid "Customize who can interact with this post." +msgstr "Add meg, hogy ki léphet kapcsolatba ezzel a bejegyzéssel!" + +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 +msgid "Dark" +msgstr "Sötét" + +#: src/view/screens/Debug.tsx:70 +msgid "Dark mode" +msgstr "Sötét mód" + +#: src/screens/Settings/AppearanceSettings.tsx:122 +msgid "Dark theme" +msgstr "Sötét téma" + +#: src/screens/Signup/StepInfo/index.tsx:222 +msgid "Date of birth" +msgstr "Születési dátum" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:773 +msgid "Deactivate account" +msgstr "Fiók deaktiválása" + +#: src/view/screens/Settings/index.tsx:785 +msgid "Deactivate my account" +msgstr "Fiók deaktiválása" + +#: src/view/screens/Settings/index.tsx:840 +msgid "Debug Moderation" +msgstr "Moderálási hibakeresés" + +#: src/view/screens/Debug.tsx:90 +msgid "Debug panel" +msgstr "Hibakeresési panel" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "Alapértelmezett" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 +msgid "Delete" +msgstr "Törlés" + +#: src/view/screens/Settings/index.tsx:795 +msgid "Delete account" +msgstr "Fiók törlése" + +#: src/view/com/modals/DeleteAccount.tsx:105 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "<0>\"<1>{0}<2>\" fiókjának törlése" + +#: src/view/screens/AppPasswords.tsx:245 +msgid "Delete app password" +msgstr "Alkalmazásjelszó törlése" + +#: src/view/screens/AppPasswords.tsx:281 +msgid "Delete app password?" +msgstr "Alkalmazásjelszó törlése" + +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 +msgid "Delete chat declaration record" +msgstr "Csevegéskijelentési jegyzőkönyv ürítése" + +#: src/components/dms/MessageMenu.tsx:124 +msgid "Delete for me" +msgstr "Törlés helyileg" + +#: src/view/screens/ProfileList.tsx:530 +msgid "Delete List" +msgstr "Lista törlése" + +#: src/components/dms/MessageMenu.tsx:147 +msgid "Delete message" +msgstr "Üzenet törlése" + +#: src/components/dms/MessageMenu.tsx:122 +msgid "Delete message for me" +msgstr "Üzenet törlése helyileg" + +#: src/view/com/modals/DeleteAccount.tsx:285 +msgid "Delete my account" +msgstr "Fiók törlése" + +#: src/view/screens/Settings/index.tsx:807 +msgid "Delete My Account…" +msgstr "Fiók törlése…" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +msgid "Delete post" +msgstr "Bejegyzés törlése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 +msgid "Delete starter pack" +msgstr "Kezdőcsomag törlése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:629 +msgid "Delete starter pack?" +msgstr "Kezdőcsomag törlése" + +#: src/view/screens/ProfileList.tsx:721 +msgid "Delete this list?" +msgstr "Lista törlése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +msgid "Delete this post?" +msgstr "Bejegyzés törlése" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 +msgid "Deleted" +msgstr "Törölted a tartalmat" + +#: src/view/com/post-thread/PostThread.tsx:398 +msgid "Deleted post." +msgstr "Törölted a bejegyzést." + +#: src/view/screens/Settings/index.tsx:858 +msgid "Deletes the chat declaration record" +msgstr "Csevegéskijelentési jegyzőkönyv ürítése" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 +msgid "Description" +msgstr "Leírás" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "A leírás túl hosszú" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "A leírás túl hosszú. A korlát {DESCRIPTION_MAX_GRAPHEMES} karakter." + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "Helyettesítő szöveg" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +msgid "Detach quote" +msgstr "Idézet leválasztása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +msgid "Detach quote post?" +msgstr "Idézet leválasztása" + +#: src/components/WhoCanReply.tsx:175 +msgid "Dialog: adjust who can interact with this post" +msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak testreszabása" + +#: src/view/com/composer/Composer.tsx:325 +msgid "Did you want to say anything?" +msgstr "Szeretnél mondani valamit?" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Dim" +msgstr "Félhomályos" + +#: src/view/screens/AccessibilitySettings.tsx:109 +msgid "Disable autoplay for videos and GIFs" +msgstr "Videók és GIF-ek automatikus lejátszásának letiltása" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "Kétlépcsős azonosítás kikapcsolása" + +#: src/view/screens/AccessibilitySettings.tsx:123 +msgid "Disable haptic feedback" +msgstr "Rezgés letiltása" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 +msgid "Disable subtitles" +msgstr "Feliratok letiltása" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 +msgid "Disabled" +msgstr "Letiltva" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 +msgid "Discard" +msgstr "Elvetés" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "Változtatások elvetése" + +#: src/view/com/composer/Composer.tsx:531 +msgid "Discard draft?" +msgstr "Piszkozat elvetése" + +#: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "A fiók kijelentkezett felhasználók elől való elrejtésének kérelmezése" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "Egyéni hírfolyamok felfedezése" + +#: src/view/screens/Search/Explore.tsx:389 +msgid "Discover new feeds" +msgstr "Új hírfolyamok felfedezése" + +#: src/view/screens/Feeds.tsx:758 +msgid "Discover New Feeds" +msgstr "Új hírfolyamok felfedezése" + +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Bezárás" + +#: src/view/com/composer/Composer.tsx:1265 +msgid "Dismiss error" +msgstr "Hiba bezárása" + +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "Gyorstalpaló bezárása" + +#: src/view/screens/AccessibilitySettings.tsx:97 +msgid "Display larger alt text badges" +msgstr "A helyettesítő szövegek jelvényeinek megnagyobbítása" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 +msgid "Display name" +msgstr "Megjelenítendő név" + +#~ msgid "Display Name" +#~ msgstr "Megjelenítendő név" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "A megjelenítendő név túl hosszú" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "A megjelenítendő név túl hosszú. A korlát {DISPLAY_NAME_MAX_GRAPHEMES} karakter." + +#: src/view/com/modals/ChangeHandle.tsx:384 +msgid "DNS Panel" +msgstr "DNS-panellel" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "A követett felhasználók kivételt élveznek a némítás alól" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "Nem ábrázol felnőtt tartalmakat." + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "Nem tartalmaz a nyugalom megzavarására alkalmas tartalmakat." + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "Nem ábrázol meztelenséget." + +#: src/screens/Signup/StepHandle.tsx:159 +msgid "Doesn't begin or end with a hyphen" +msgstr "Nem kezdődhet vagy végződhet kötőjellel" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "Domain Value" +msgstr "Tartományérték" + +#: src/view/com/modals/ChangeHandle.tsx:475 +msgid "Domain verified!" +msgstr "A tartományellenőrzés kész." + +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 +#: src/view/com/auth/server-input/index.tsx:170 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 +msgid "Done" +msgstr "Kész" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "Kész" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 +msgid "Done{extraText}" +msgstr "Kész{extraText}" + +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "Koppints kétszer a párbeszédablak bezárásához" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "A Bluesky letöltése" + +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 +msgid "Download CAR file" +msgstr "CAR fájl letöltése" + +#: src/view/com/composer/text-input/TextInput.web.tsx:300 +msgid "Drop to add images" +msgstr "A csatoláshoz húzd ide a képet!" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "Időtartam:" + +#: src/view/com/modals/ChangeHandle.tsx:245 +msgid "e.g. alice" +msgstr "pl.: janos" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "pl.: Minta Janos" + +#~ msgid "e.g. Alice Roberts" +#~ msgstr "pl.: Minta János" + +#: src/view/com/modals/ChangeHandle.tsx:367 +msgid "e.g. alice.com" +msgstr "pl.: janos.hu" + +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "pl.: Művész, kutyabarát, könyvmoly." + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "Pl.: művészi meztelen képek." + +#: src/view/com/modals/CreateOrEditList.tsx:263 +msgid "e.g. Great Posters" +msgstr "pl.: Nagyszerű emberek" + +#: src/view/com/modals/CreateOrEditList.tsx:264 +msgid "e.g. Spammers" +msgstr "pl.: Spammelők" + +#: src/view/com/modals/CreateOrEditList.tsx:292 +msgid "e.g. The posters who never miss." +msgstr "pl.: Akik sosem fognak mellé." + +#: src/view/com/modals/CreateOrEditList.tsx:293 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "pl.: Akik folyton csak reklámokkal válaszolnak." + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "Mindegyik meghívó csak egyszer használható fel. Időközönként újakat fogsz kapni." + +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 +msgid "Edit" +msgstr "Szerkesztés" + +#: src/view/com/lists/ListMembers.tsx:146 +msgctxt "action" +msgid "Edit" +msgstr "Szerkesztés" + +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 +msgid "Edit avatar" +msgstr "Profilkép szerkesztése" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "Hírfolyamok szerkesztése" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 +msgid "Edit image" +msgstr "Kép szerkesztése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +msgid "Edit interaction settings" +msgstr "Kapcsolatbalépési beállítások szerkesztése" + +#: src/view/screens/ProfileList.tsx:518 +msgid "Edit list details" +msgstr "Lista szerkesztése" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "Edit Moderation List" +msgstr "Moderálólista szerkesztése" + +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 +msgid "Edit My Feeds" +msgstr "Hírfolyamgyűjtemény szerkesztése" + +#~ msgid "Edit my profile" +#~ msgstr "Profil szerkesztése" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "Személyek szerkesztése" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +msgid "Edit post interaction settings" +msgstr "A bejegyzés kapcsolatbalépési beállításainak szerkesztése" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 +msgid "Edit profile" +msgstr "Profil szerkesztése" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +msgid "Edit Profile" +msgstr "Profil szerkesztése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:565 +msgid "Edit starter pack" +msgstr "Kezdőcsomag szerkesztése" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "Edit User List" +msgstr "Felhasználólista szerkesztése" + +#: src/components/WhoCanReply.tsx:87 +msgid "Edit who can reply" +msgstr "Válaszjogosultsági beállítások szerkesztése" + +#~ msgid "Edit your display name" +#~ msgstr "Megjelenítendő név szerkesztése" + +#~ msgid "Edit your profile description" +#~ msgstr "Profilleírás szerkesztése" + +#: src/Navigation.tsx:372 +msgid "Edit your starter pack" +msgstr "Kezdőcsomag szerkesztése" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 +msgid "Education" +msgstr "Tanítás-tanulás" + +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 +msgid "Email" +msgstr "Email-cím" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 +msgid "Email 2FA disabled" +msgstr "Kikapcsoltad a kétlépcsős azonosítást" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "Email-cím" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "Email újraküldve" + +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 +msgid "Email updated" +msgstr "Frissítetted az email-címedet" + +#: src/view/com/modals/ChangeEmail.tsx:106 +msgid "Email Updated" +msgstr "Frissítetted az email-címedet" + +#: src/view/com/modals/VerifyEmail.tsx:85 +msgid "Email verified" +msgstr "Visszaigazoltad az email-címedet" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "Visszaigazoltad az email-címedet" + +#: src/view/screens/Settings/index.tsx:320 +msgid "Email:" +msgstr "Email-cím:" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed HTML code" +msgstr "HTML-kód beágyazása" + +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +msgid "Embed post" +msgstr "Bejegyzés beágyazása" + +#: src/components/dialogs/Embed.tsx:101 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kódrészletet és illeszd be a honlapod HTML-kódjába." + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "Csak a(z) {0} engedélyezése" + +#: src/screens/Moderation/index.tsx:343 +msgid "Enable adult content" +msgstr "Felnőtt tartalmak engedélyezése" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "Külső médiatartalmak engedélyezése" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 +msgid "Enable media players for" +msgstr "Az alábbi külső médialejátszók vannak engedélyezve:" + +#: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 +msgid "Enable priority notifications" +msgstr "Előnyben részesített értesítések engedélyezése" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 +msgid "Enable subtitles" +msgstr "Feliratok engedélyezése" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "Csak ezen forrás engedélyezése" + +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 +msgid "Enabled" +msgstr "Engedélyezve" + +#: src/screens/Profile/Sections/Feed.tsx:114 +msgid "End of feed" +msgstr "A hírfolyam véget ért" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "Minden feliratfájlhoz rendelj hozzá egy nyelvet!" + +#: src/view/com/modals/AddAppPasswords.tsx:161 +msgid "Enter a name for this App Password" +msgstr "Alkalmazásjelszó nevének megadása" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Enter a password" +msgstr "Jelszó megadása" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "Szó vagy címke megadása" + +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "Kód megadása" + +#: src/view/com/modals/VerifyEmail.tsx:113 +msgid "Enter Confirmation Code" +msgstr "Ellenőrzőkód megadása" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Enter the code you received to change your password." +msgstr "Add meg a kapott kódot a jelszavad megváltoztatásához!" + +#: src/view/com/modals/ChangeHandle.tsx:357 +msgid "Enter the domain you want to use" +msgstr "Add meg a használni kívánt tartományt" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "Add meg a regisztrációkor használt email-címedet! Küldeni fogunk egy „helyreállítási kódot”, amivel megváltoztathatod a jelszavad." + +#: src/components/dialogs/BirthDateSettings.tsx:107 +msgid "Enter your birth date" +msgstr "Add meg a születési dátumod" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 +msgid "Enter your email address" +msgstr "Add meg az email-címed" + +#: src/view/com/modals/ChangeEmail.tsx:42 +msgid "Enter your new email above" +msgstr "Add meg felül az új email-címed" + +#: src/view/com/modals/ChangeEmail.tsx:112 +msgid "Enter your new email address below." +msgstr "Add meg alább az új email-címed!" + +#: src/screens/Login/index.tsx:98 +msgid "Enter your username and password" +msgstr "Add meg a felhasználóneved és a jelszavad" + +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "Hiba" + +#: src/view/screens/Settings/ExportCarDialog.tsx:46 +msgid "Error occurred while saving file" +msgstr "A fájl mentése meghiúsult" + +#: src/screens/Signup/StepCaptcha/index.tsx:56 +msgid "Error receiving captcha response." +msgstr "A captcha válaszának fogadása meghiúsult." + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 +msgid "Error:" +msgstr "Hiba:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 +msgid "Everybody" +msgstr "Bárkitől" + +#: src/components/WhoCanReply.tsx:67 +msgid "Everybody can reply" +msgstr "Bárki válaszolhat" + +#: src/components/WhoCanReply.tsx:213 +msgid "Everybody can reply to this post." +msgstr "Bárki válaszolhat erre a bejegyzésre." + +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 +msgid "Everyone" +msgstr "Bárkitől" + +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "Túl sok említés vagy válasz" + +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "Túl sok- vagy nem kívánt üzenetek" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "Követett felhasználók kihagyása a szűrésből" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "A követett felhasználók bejegyzéseit nem szűri" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 +msgid "Exit fullscreen" +msgstr "Kilépés a teljes képernyős módból" + +#: src/view/com/modals/DeleteAccount.tsx:293 +msgid "Exits account deletion process" +msgstr "Fióktörlés megszakítása" + +#: src/view/com/modals/ChangeHandle.tsx:138 +msgid "Exits handle change process" +msgstr "Felhasználónévváltás megszakítása" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "Képkivágás megszakítása" + +#: src/view/com/lightbox/Lightbox.web.tsx:130 +msgid "Exits image view" +msgstr "Képnézegető bezárása" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +msgid "Exits inputting search query" +msgstr "Keresési kifejezés megadásának megszakítása" + +#: src/view/com/lightbox/Lightbox.web.tsx:183 +msgid "Expand alt text" +msgstr "Helyettesítő szöveg folytatásának mutatása" + +#: src/view/com/notifications/FeedItem.tsx:266 +msgid "Expand list of users" +msgstr "Lista kibontása" + +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 +msgid "Expand or collapse the full post you are replying to" +msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása" + +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "Az URI nem old fel egy rekordot" + +#: src/view/screens/NotificationsSettings.tsx:78 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "Kísérleti: Ha ez a funkció engedélyezve van, akkor csak az általad követett felhasználók válaszairól és idézéseiről fogsz értesítést kapni. Ezeket a beállításokat idővel bővíteni fogjuk." + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "Lejárt" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "{0} lejár" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +msgid "Explicit or potentially disturbing media." +msgstr "A nyugalom megzavarására alkalmas képek és videók." + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "Szexuális tartalmakat ábrázoló képek." + +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "Adatok exportálása" + +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "Adatok exportálása" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "Külső médiatartalom" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le." + +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 +msgid "External Media Preferences" +msgstr "Külső médiatartalmak" + +#: src/view/screens/Settings/index.tsx:637 +msgid "External media settings" +msgstr "Külső médiatartalmak" + +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 +msgid "Failed to create app password." +msgstr "Az alkalmazásjelszó létrehozása meghiúsult." + +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 +msgid "Failed to create starter pack" +msgstr "A kezdőcsomag létrehozása meghiúsult" + +#: src/view/com/modals/CreateOrEditList.tsx:186 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "A lista létrehozása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/components/dms/MessageMenu.tsx:73 +msgid "Failed to delete message" +msgstr "Az üzenet törlése meghiúsult" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Failed to delete post, please try again" +msgstr "A bejegyzés törlése meghiúsult. Próbáld újra!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:697 +msgid "Failed to delete starter pack" +msgstr "A kezdőcsomag törlése meghiúsult" + +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 +msgid "Failed to load feeds preferences" +msgstr "A hírfolyambeállítások betöltése meghiúsult" + +#: src/components/dialogs/GifSelect.tsx:224 +msgid "Failed to load GIFs" +msgstr "A GIF-ek betöltése meghiúsult" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "A korábbi üzenetek betöltése meghiúsult" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 +msgid "Failed to load suggested feeds" +msgstr "Az ajánlott hírfolyamok betöltése meghiúsult" + +#: src/view/screens/Search/Explore.tsx:378 +msgid "Failed to load suggested follows" +msgstr "A javasolt személyek betöltése meghiúsult" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "A bejegyzés kitűzése meghiúsult" + +#: src/view/com/lightbox/Lightbox.tsx:97 +msgid "Failed to save image: {0}" +msgstr "A kép mentése meghiúsult: {0}" + +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "Az értesítési beállítások mentése meghiúsult. Próbáld újra!" + +#: src/lib/api/index.ts:NaN +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "A kapcsolatbalépési beállítások mentése meghiúsult. A bejegyzés létrejött, de lehetséges, hogy nem kívánt felhasználók is kapcsolatba léphetnek vele." + +#: src/components/dms/MessageItem.tsx:233 +msgid "Failed to send" +msgstr "A küldés meghiúsult" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra!" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +msgid "Failed to toggle thread mute, please try again" +msgstr "A beszélgetés némításának ki-/bekapcsolása meghiúsult. Próbáld újra!" + +#: src/components/FeedCard.tsx:276 +msgid "Failed to update feeds" +msgstr "A hírfolyamok frissítése meghiúsult" + +#: src/screens/Messages/Settings.tsx:36 +msgid "Failed to update settings" +msgstr "A beállítások mentése meghiúsult" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "A videó feltöltése meghiúsult" + +#: src/Navigation.tsx:225 +msgid "Feed" +msgstr "Hírfolyam" + +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:250 +msgid "Feed by {0}" +msgstr "Hírfolyam – Szerző: {0}" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "Hírfolyam ki/be" + +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:348 +msgid "Feedback" +msgstr "Visszajelzés" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "Megkaptuk a visszajelzést!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 +msgid "Feeds" +msgstr "Hírfolyamok" + +#: src/view/screens/SavedFeeds.tsx:205 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy kis programozási tudással. További információért <0/>!" + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 +msgid "Feeds updated!" +msgstr "Hírfolyamok frissítve" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "File Contents" +msgstr "A fájl tartalmának" + +#: src/view/screens/Settings/ExportCarDialog.tsx:42 +msgid "File saved successfully!" +msgstr "A fájl sikeresen elmentve!" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "Kiszűrés a hírfolyamokból" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Finalizing" +msgstr "Befejezés folyamatban…" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "Követendő fiókok felfedezése" + +#: src/view/screens/Search/Search.tsx:612 +msgid "Find posts and users on Bluesky" +msgstr "Bejegyzések és felhasználók felfedezése a Blueskyon" + +#: src/view/screens/PreferencesFollowingFeed.tsx:52 +msgid "Fine-tune the content you see on your Following feed." +msgstr "A Követett hírfolyam tartalmának személyre szabása." + +#: src/view/screens/PreferencesThreads.tsx:55 +msgid "Fine-tune the discussion threads." +msgstr "Válaszláncok személyre szabása." + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Finish" +msgstr "Befejezés" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "Fitnesz" + +#: src/screens/Onboarding/StepFinished.tsx:267 +msgid "Flexible" +msgstr "Rugalmas" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 +msgid "Follow" +msgstr "Követés" + +#: src/view/com/profile/FollowButton.tsx:70 +msgctxt "action" +msgid "Follow" +msgstr "Követés" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 +msgid "Follow {0}" +msgstr "{0} követése" + +#: src/view/com/posts/AviFollowButton.tsx:68 +msgid "Follow {name}" +msgstr "{name} követése" + +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "Kövess 7 fiókot!" + +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 +msgid "Follow Account" +msgstr "Fiók követése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 +msgid "Follow all" +msgstr "Összes követése" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Követés kölcsönzése" + +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" +msgid "Follow Back" +msgstr "Követés kölcsönzése" + +#: src/view/screens/Search/Explore.tsx:334 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "Kövess további felhasználókat, ha szeretnél az érdeklődési köröd alapján kapcsolatokat építeni!" + +#: src/components/KnownFollowers.tsx:231 +msgid "Followed by <0>{0}" +msgstr "<0>{0} követi" + +#: src/components/KnownFollowers.tsx:217 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "<0>{0} és {1} további személy követi" + +#: src/components/KnownFollowers.tsx:204 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "<0>{0} és <1>{1} követi" + +#: src/components/KnownFollowers.tsx:186 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "<0>{0}, <1>{1} és {2} további személy követi" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 +msgid "Followed users" +msgstr "A követett felhasználóktól" + +#: src/view/com/notifications/FeedItem.tsx:207 +msgid "followed you" +msgstr "mostantól követ Téged" + +#: src/view/com/notifications/FeedItem.tsx:205 +msgid "followed you back" +msgstr "kölcsönözte a követésedet" + +#: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 +msgid "Followers" +msgstr "Követők" + +#: src/Navigation.tsx:186 +msgid "Followers of @{0} that you know" +msgstr "@{0} általad ismert követői" + +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 +msgid "Followers you know" +msgstr "Ismert követők" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 +msgid "Following" +msgstr "Követett" + +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 +msgid "Following {0}" +msgstr "Mostantól követed: {0}" + +#: src/view/com/posts/AviFollowButton.tsx:50 +msgid "Following {name}" +msgstr "Mostantól követed: {name}" + +#: src/view/screens/Settings/index.tsx:540 +msgid "Following feed preferences" +msgstr "Követett hírfolyam" + +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 +msgid "Following Feed Preferences" +msgstr "Követett hírfolyam" + +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "Követ Téged" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "Követ Téged" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "Betűtípus" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "Betűméret" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 +msgid "Food" +msgstr "Étel-ital" + +#: src/view/com/modals/DeleteAccount.tsx:129 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "Biztonsági okokból egy ellenőrzőkódot fogunk küldeni az email-címedre." + +#: src/view/com/modals/AddAppPasswords.tsx:233 +msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." +msgstr "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a jelszót, akkor újat kell létrehoznod." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasoljuk." + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "Örökké" + +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 +msgid "Forgot Password" +msgstr "Elfelejtett jelszó" + +#: src/screens/Login/LoginForm.tsx:230 +msgid "Forgot password?" +msgstr "Elfelejtett jelszó" + +#: src/screens/Login/LoginForm.tsx:241 +msgid "Forgot?" +msgstr "Elfelejtetted?" + +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "Gyakran tesz közzé kéretlen tartalmakat" + +#: src/screens/Hashtag.tsx:117 +msgid "From @{sanitizedAuthor}" +msgstr "Forrás: @{sanitizedAuthor}" + +#: src/view/com/posts/FeedItem.tsx:273 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "A(z) <0/> hírfolyamból" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 +msgid "Fullscreen" +msgstr "Teljes képernyős mód" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "Galéria" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +msgid "Generate a starter pack" +msgstr "Kezdőcsomag létrehozása" + +#: src/view/shell/Drawer.tsx:352 +msgid "Get help" +msgstr "Súgó" + +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 +msgid "Get Started" +msgstr "Gyorstalpaló" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "Gyorstalpaló" + +#: src/components/MediaPreview.tsx:122 +msgid "GIF" +msgstr "GIF" + +#: src/screens/Onboarding/StepProfile/index.tsx:234 +msgid "Give your profile a face" +msgstr "Adj arcot a profilodnak!" + +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "A törvény vagy a felhasználási feltételek egyértelmű megszegése" + +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 +msgid "Go back" +msgstr "Vissza" + +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 +msgid "Go Back" +msgstr "Vissza" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "Vissza az előző lépéshez" + +#: src/screens/StarterPack/Wizard/index.tsx:308 +msgid "Go back to the previous step" +msgstr "Vissza az előző lépéshez" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "Ugrás a kezdőlapra" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "Ugrás a kezdőlapra" + +#: src/screens/Messages/components/ChatListItem.tsx:264 +msgid "Go to conversation with {0}" +msgstr "Ugrás a beszélgetéshez vele: {0}" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Go to next" +msgstr "Tovább" + +#: src/components/dms/ConvoMenu.tsx:167 +msgid "Go to profile" +msgstr "Profil megnyitása" + +#: src/components/dms/ConvoMenu.tsx:164 +msgid "Go to user's profile" +msgstr "Ugrás a felhasználó profiljára" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 +msgid "Graphic Media" +msgstr "Grafikus médiatartalom" + +#: src/state/shell/progress-guide.tsx:161 +msgid "Half way there!" +msgstr "Már félúton vagy!" + +#: src/view/com/modals/ChangeHandle.tsx:253 +msgid "Handle" +msgstr "Felhasználónév" + +#: src/view/screens/AccessibilitySettings.tsx:118 +msgid "Haptics" +msgstr "Rezgés" + +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "Zaklatás, gúnyolódás vagy tűrélytelenség" + +#: src/Navigation.tsx:332 +msgid "Hashtag" +msgstr "Címke" + +#: src/components/RichText.tsx:225 +msgid "Hashtag: #{tag}" +msgstr "Címke: #{tag}" + +#: src/screens/Signup/index.tsx:173 +msgid "Having trouble?" +msgstr "Problémába ütköztél?" + +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:361 +msgid "Help" +msgstr "Súgó" + +#: src/screens/Onboarding/StepProfile/index.tsx:237 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!" + +#: src/view/com/modals/AddAppPasswords.tsx:204 +msgid "Here is your app password." +msgstr "Elkészült az alkalmazásjelszó." + +#: src/components/ListCard.tsx:130 +msgid "Hidden list" +msgstr "Rejtett lista" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:122 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 +msgid "Hide" +msgstr "Elrejtés" + +#: src/view/com/notifications/FeedItem.tsx:477 +msgctxt "action" +msgid "Hide" +msgstr "Elrejtés" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +msgid "Hide post for me" +msgstr "Bejegyzés elrejtése helyileg" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +msgid "Hide reply for everyone" +msgstr "Válasz elrejtése mindenkinek" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +msgid "Hide reply for me" +msgstr "Válasz elrejtése helyileg" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/components/moderation/PostHider.tsx:79 +msgid "Hide the content" +msgstr "Tartalom elrejtése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +msgid "Hide this post?" +msgstr "Bejegyzés elrejtése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +msgid "Hide this reply?" +msgstr "Válasz elrejtése" + +#: src/view/com/notifications/FeedItem.tsx:468 +msgid "Hide user list" +msgstr "Felhasználólista elrejtése" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "Hmm… Hiba történt a hírfolyamkiszolgálóval történő kapcsolatfelvétel közben. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nincs helyesen beállítva. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nem elérhető. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló helytelen választ adott. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "Hmm… A hírfolyam felkeresése meghiúsult. Lehetséges, hogy már nem létezik." + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább láthatod. Ha a probléma fennáll, jelentsd nekünk!" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található." + +#: src/view/com/composer/state/video.ts:427 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később!" + +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 +msgid "Home" +msgstr "Kezdőlap" + +#: src/view/com/modals/ChangeHandle.tsx:407 +msgid "Host:" +msgstr "Gazda:" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 +msgid "Hosting provider" +msgstr "Tárhelyszolgáltató" + +#: src/view/com/modals/InAppBrowserConsent.tsx:41 +msgid "How should we open this link?" +msgstr "Hogyan nyissuk meg ezt a hivatkozást?" + +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 +msgid "I have a code" +msgstr "Kóddal rendelkezem" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "Kóddal rendelkezem" + +#: src/view/com/modals/VerifyEmail.tsx:224 +msgid "I have a confirmation code" +msgstr "Ellenőrzőkóddal rendelkezem" + +#: src/view/com/modals/ChangeHandle.tsx:271 +msgid "I have my own domain" +msgstr "Saját tartománnyal rendelkezem" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 +msgid "I understand" +msgstr "Értettem" + +#: src/view/com/lightbox/Lightbox.web.tsx:185 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "Hosszabb helyettesítő szövegek mutatása/levágása" + +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Ha egyet sem jelölsz ki, akkor a tartalom minden korosztály számára megtekinthető marad." + +#: src/screens/Signup/StepInfo/Policies.tsx:110 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "Ha még nem töltötted be az országod által meghatározott nagykorúsági életkort, akkor az alábbi feltételeket a szülődnek vagy törvényes gondviselődnek kell elolvasnia." + +#: src/view/screens/ProfileList.tsx:723 +msgid "If you delete this list, you won't be able to recover it." +msgstr "A lista törlése nem vonható vissza." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +msgid "If you remove this post, you won't be able to recover it." +msgstr "A bejegyzés törlése nem vonható vissza." + +#: src/view/com/modals/ChangePassword.tsx:149 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted." + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "Ha meg akarod változtatni a felhasználóneved vagy az email-címed, azt még a deaktiválás előtt tedd meg!" + +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "Illegális és sürgős" + +#: src/view/com/util/images/Gallery.tsx:57 +msgid "Image" +msgstr "Kép" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Image saved to your camera roll!" +msgstr "A kép mentése sikeres" + +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "Megszemélyesítés vagy a kilétéről/hovatartozásáról szóló valótlan állítások" + +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "Megszemélyesítés, dezinformáció vagy valótlan állítások" + +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "Illetlen üzenetek vagy hivatkozások" + +#: src/screens/Login/SetNewPasswordForm.tsx:121 +msgid "Input code sent to your email for password reset" +msgstr "A jelszó visszaállításához add meg az emailben kapott ellenőrzőkódot!" + +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Input confirmation code for account deletion" +msgstr "A fiókod törléséhez add meg az ellenőrzőkódot!" + +#: src/view/com/modals/AddAppPasswords.tsx:175 +msgid "Input name for app password" +msgstr "Alkalmazásjelszó nevének megadása" + +#: src/screens/Login/SetNewPasswordForm.tsx:145 +msgid "Input new password" +msgstr "Új jelszó megadása" + +#: src/view/com/modals/DeleteAccount.tsx:265 +msgid "Input password for account deletion" +msgstr "Jelszó megadása a fiók törléséhez" + +#: src/screens/Login/LoginForm.tsx:270 +msgid "Input the code which has been emailed to you" +msgstr "Emailben kapott kód megadása" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Input the username or email address you used at signup" +msgstr "A regisztrációkor használt felhasználónév vagy email-cím megadása" + +#: src/screens/Login/LoginForm.tsx:225 +msgid "Input your password" +msgstr "Jelszó megadása" + +#: src/view/com/modals/ChangeHandle.tsx:376 +msgid "Input your preferred hosting provider" +msgstr "Kívánt tárhelyszolgáltató megadása" + +#: src/screens/Signup/StepHandle.tsx:114 +msgid "Input your user handle" +msgstr "Felhasználónév megadása" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 +msgid "Interaction limited" +msgstr "A kapcsolatbalépés korlátozott" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "Új betűtípus-beállítások váltak elérhetővé" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "Érvénytelen kétlépcsős azonosítási kód." + +#: src/view/com/post-thread/PostThreadItem.tsx:264 +msgid "Invalid or unsupported post record" +msgstr "A megadott bejegyzésrekord érvénytelen vagy nem támogatott" + +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 +msgid "Invalid username or password" +msgstr "Érvénytelen felhasználónév vagy jelszó" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "Érvénytelen ellenőrzőkód" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "Barát meghívása" + +#: src/screens/Signup/StepInfo/index.tsx:151 +msgid "Invite code" +msgstr "Meghívókód" + +#: src/screens/Signup/state.ts:258 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "Érvénytelen meghívókód. Ellenőrizd a helyességét, majd próbáld újra!" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "Meghívókódok: Még {0} felhasználható" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "Meghívókódok: Még 1 felhasználható" + +#: src/components/StarterPack/ShareDialog.tsx:97 +msgid "Invite people to this starter pack!" +msgstr "Hívj meg másokat is ebbe a kezdőcsomagba!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:35 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "Könnyen oszd meg a barátaiddal a kedvenc hírfolyamaidat és személyeidet!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:32 +msgid "Invites, but personal" +msgstr "Olyan, mint egy meghívó, csak személyesebb" + +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "Úgy tűnik, hogy ez az email-cím érvénytelen. Biztos, hogy helyesen adtad meg?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "Igen, helyes" + +#: src/screens/StarterPack/Wizard/index.tsx:461 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz." + +#: src/view/com/composer/Composer.tsx:1284 +msgid "Job ID: {0}" +msgstr "Állásazonosító: {0}" + +#: src/view/com/auth/SplashScreen.web.tsx:177 +msgid "Jobs" +msgstr "Karrier" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 +msgid "Join Bluesky" +msgstr "Csatlakozz a Blueskyhoz!" + +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "Csatlakozz hozzánk!" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 +msgid "Journalism" +msgstr "Sajtó" + +#: src/components/moderation/ContentHider.tsx:209 +msgid "Labeled by {0}." +msgstr "Feljegyezte a(z) {0}." + +#: src/components/moderation/ContentHider.tsx:207 +msgid "Labeled by the author." +msgstr "Feljegyezte a szerző." + +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 +msgid "Labels" +msgstr "Feljegyzések" + +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "Alkalmaztad a feljegyzéseket" + +#: src/screens/Profile/Sections/Labels.tsx:163 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére." + +#: src/components/moderation/LabelsOnMeDialog.tsx:71 +msgid "Labels on your account" +msgstr "A fiókodra helyezett feljegyzések" + +#: src/components/moderation/LabelsOnMeDialog.tsx:73 +msgid "Labels on your content" +msgstr "A tartalmadra helyezett feljegyzések" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:105 +msgid "Language selection" +msgstr "Nyelvválasztás" + +#: src/view/screens/Settings/index.tsx:497 +msgid "Language settings" +msgstr "Nyelvi beállítások" + +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 +msgid "Language Settings" +msgstr "Nyelvi beállítások" + +#: src/view/screens/Settings/index.tsx:506 +msgid "Languages" +msgstr "Nyelvek" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "Nagyobb" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 +msgid "Latest" +msgstr "Legújabb" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "További információ" + +#: src/view/com/auth/SplashScreen.web.tsx:165 +msgid "Learn more about Bluesky" +msgstr "További információ a Blueskyról" + +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "További információ a személyes adatkiszolgálók üzemeltetéséről." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 +msgid "Learn more about the moderation applied to this content." +msgstr "További információ a tartalommoderálásról." + +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "További információ erről a figyelmeztetésről" + +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 +msgid "Learn more about what is public on Bluesky." +msgstr "További információ a Bluesky-tartalmak nyilvánosságáról." + +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 +msgid "Learn more." +msgstr "További információ." + +#: src/components/dms/LeaveConvoPrompt.tsx:50 +msgid "Leave" +msgstr "Elhagyás" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 +msgid "Leave chat" +msgstr "Csevegés elhagyása" + +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Leave conversation" +msgstr "Beszélgetés elhagyása" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 +msgid "Leave them all unchecked to see any language." +msgstr "Az összes nyelv megjelenítéséhez kapcsolj ki minden nyelvet." + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Leaving Bluesky" +msgstr "A Bluesky elhagyása" + +#: src/screens/SignupQueued.tsx:134 +msgid "left to go." +msgstr "maradt." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 +msgid "Let me choose" +msgstr "Fiókok választása kézileg" + +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 +msgid "Let's get your password reset!" +msgstr "Állítsuk helyre a jelszavad!" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Let's go!" +msgstr "Gyerünk!" + +#: src/screens/Settings/AppearanceSettings.tsx:105 +msgid "Light" +msgstr "Világos" + +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "Kedvelj 10 megjegyzést!" + +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 +msgid "Like 10 posts to train the Discover feed" +msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Like this feed" +msgstr "Hírfolyam kedvelése" + +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 +msgid "Liked by" +msgstr "Kedvelők" + +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "Kedvelők" + +#: src/view/com/notifications/FeedItem.tsx:211 +msgid "liked your custom feed" +msgstr "kedvelte az egyéni hírfolyamodat" + +#: src/view/com/notifications/FeedItem.tsx:178 +msgid "liked your post" +msgstr "kedvelte a bejegyzésedet" + +#: src/view/screens/Profile.tsx:231 +msgid "Likes" +msgstr "Kedvelések" + +#: src/view/com/post-thread/PostThreadItem.tsx:204 +msgid "Likes on this post" +msgstr "A bejegyzést kedvelők" + +#: src/Navigation.tsx:192 +msgid "List" +msgstr "Lista" + +#: src/view/com/modals/CreateOrEditList.tsx:241 +msgid "List Avatar" +msgstr "Lista profilképe" + +#: src/view/screens/ProfileList.tsx:422 +msgid "List blocked" +msgstr "Letiltottad a listán szereplő személyeket" + +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:252 +msgid "List by {0}" +msgstr "Lisa – Szerző: {0}" + +#: src/view/screens/ProfileList.tsx:459 +msgid "List deleted" +msgstr "Törölted a listát" + +#: src/screens/List/ListHiddenScreen.tsx:126 +msgid "List has been hidden" +msgstr "Elrejtetted a listát" + +#: src/view/screens/ProfileList.tsx:170 +msgid "List Hidden" +msgstr "Elrejtett lista" + +#: src/view/screens/ProfileList.tsx:396 +msgid "List muted" +msgstr "Elnémítottad a listát" + +#: src/view/com/modals/CreateOrEditList.tsx:255 +msgid "List Name" +msgstr "Listacím" + +#: src/view/screens/ProfileList.tsx:435 +msgid "List unblocked" +msgstr "Feloldottad a listán szereplő személyek letiltását" + +#: src/view/screens/ProfileList.tsx:409 +msgid "List unmuted" +msgstr "Feloldottad a lista némítását" + +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 +msgid "Lists" +msgstr "Listák" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "Ez a felhasználó az alábbi tiltólistákon szerepel:" + +#: src/view/screens/Search/Explore.tsx:131 +msgid "Load more" +msgstr "Továbbiak" + +#: src/view/screens/Search/Explore.tsx:219 +msgid "Load more suggested feeds" +msgstr "További javasolt hírfolyamok" + +#: src/view/screens/Search/Explore.tsx:217 +msgid "Load more suggested follows" +msgstr "További javasolt személyek" + +#: src/view/screens/Notifications.tsx:215 +msgid "Load new notifications" +msgstr "Új értesítések betöltése" + +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 +msgid "Load new posts" +msgstr "Új bejegyzések betöltése" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +msgid "Loading..." +msgstr "Betöltés…" + +#: src/Navigation.tsx:255 +msgid "Log" +msgstr "Napló" + +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 +msgid "Log in or sign up" +msgstr "Jelentkezz be vagy regisztrálj!" + +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 +msgid "Log out" +msgstr "Kijelentkezés" + +#: src/screens/Moderation/index.tsx:480 +msgid "Logged-out visibility" +msgstr "Láthatóság kijelentkezett felhasználók számára" + +#: src/components/AccountList.tsx:65 +msgid "Login to account that is not listed" +msgstr "Bejelentkezés egy másik felhasználói fiókba" + +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "A logót készítette: <0/>" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "A logót készítette: <0>@sawaratsuki.bsky.social" + +#: src/components/RichText.tsx:226 +msgid "Long press to open tag menu for #{tag}" +msgstr "Tartsd lenyomva a(z) #{tag} címkét a menü megnyitásához" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "Minta: XXXXX-XXXXX" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "Úgy tűnik, hogy még egy hírfolyamot sem mentettél el. Nézd meg az ajánlott hírfolyamokat vagy böngéssz lejjebb a többi közül!" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "Úgy tűnik, hogy egy hírfolyamot sem tűztél ki. De ne aggódj – alább kitűzhetsz néhányat 😄" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, ha ki szeretnéd tűzni!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 +msgid "Make one for me" +msgstr "Automatikus létrehozás" + +#: src/view/com/modals/LinkWarning.tsx:79 +msgid "Make sure this is where you intend to go!" +msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "Elnémított szavak és címkék kezelése" + +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 +msgid "Mark as read" +msgstr "Megjelölés olvasottként" + +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 +msgid "Media" +msgstr "Média" + +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló médiatartalom." + +#: src/components/WhoCanReply.tsx:254 +msgid "mentioned users" +msgstr "megemlített felhasználó" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +msgid "Mentioned users" +msgstr "A megemlített felhasználóktól" + +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 +msgid "Menu" +msgstr "Menü" + +#: src/components/dms/MessageProfileButton.tsx:62 +msgid "Message {0}" +msgstr "Üzenetküldés neki: {0}" + +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 +msgid "Message deleted" +msgstr "Törölted az üzenetet" + +#: src/view/com/posts/FeedErrorMessage.tsx:201 +msgid "Message from server: {0}" +msgstr "A kiszolgáló üzenete: {0}" + +#: src/screens/Messages/components/MessageInput.tsx:140 +msgid "Message input field" +msgstr "Üzenetbeviteli mező" + +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 +msgid "Message is too long" +msgstr "Az üzenet túl hosszú" + +#: src/screens/Messages/ChatList.tsx:318 +msgid "Message settings" +msgstr "Üzenetbeállítások" + +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 +msgid "Messages" +msgstr "Üzenetek" + +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "Félrevezető fiók" + +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "Félrevezető bejegyzés" + +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 +msgid "Moderation" +msgstr "Moderálás" + +#: src/components/moderation/ModerationDetailsDialog.tsx:133 +msgid "Moderation details" +msgstr "Moderálási részletek" + +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "Moderálólista – Szerző: {0}" + +#: src/view/screens/ProfileList.tsx:902 +msgid "Moderation list by <0/>" +msgstr "Moderálólista – Szerző: <0/>" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 +msgid "Moderation list by you" +msgstr "Moderálólista – Saját" + +#: src/view/com/modals/CreateOrEditList.tsx:177 +msgid "Moderation list created" +msgstr "Létrehoztad a moderálólistát" + +#: src/view/com/modals/CreateOrEditList.tsx:163 +msgid "Moderation list updated" +msgstr "Frissítetted a moderálólistát" + +#: src/screens/Moderation/index.tsx:250 +msgid "Moderation lists" +msgstr "Moderálólisták" + +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "Moderálólisták" + +#: src/components/moderation/LabelPreference.tsx:246 +msgid "moderation settings" +msgstr "moderálási beállítások" + +#: src/view/screens/Settings/index.tsx:522 +msgid "Moderation settings" +msgstr "Moderálási beállítások" + +#: src/Navigation.tsx:245 +msgid "Moderation states" +msgstr "Moderálási állapotok" + +#: src/screens/Moderation/index.tsx:219 +msgid "Moderation tools" +msgstr "Moderálási eszközök" + +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "Ezen a tartalmon általános figyelmeztetés van érvényben, egy moderátor döntése alapján." + +#: src/view/com/post-thread/PostThreadItem.tsx:619 +msgid "More" +msgstr "Továbbiak" + +#: src/view/shell/desktop/Feeds.tsx:55 +msgid "More feeds" +msgstr "További hírfolyamok" + +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 +msgid "More options" +msgstr "További lehetőségek" + +#: src/view/screens/PreferencesThreads.tsx:77 +msgid "Most-liked replies first" +msgstr "A legtöbb kedveléssel rendelkező válaszok elöl" + +#: src/screens/Onboarding/state.ts:92 +msgid "Movies" +msgstr "Filmek" + +#: src/screens/Onboarding/state.ts:93 +msgid "Music" +msgstr "Zene" + +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Elnémítás" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "Elnémítás" + +#: src/components/TagMenu/index.web.tsx:116 +msgid "Mute {truncatedTag}" +msgstr "A(z) {truncatedTag} címke elnémítása" + +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Mute Account" +msgstr "Fiók elnémítása" + +#: src/view/screens/ProfileList.tsx:631 +msgid "Mute accounts" +msgstr "Fiókok elnémítása" + +#: src/components/TagMenu/index.tsx:205 +msgid "Mute all {displayTag} posts" +msgstr "Az összes {displayTag} címkével rendelkező bejegyzés elnémítása" + +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 +msgid "Mute conversation" +msgstr "Beszélgetés elnémítása" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "Hatáskör:" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Mute list" +msgstr "Lista elnémítása" + +#: src/view/screens/ProfileList.tsx:732 +msgid "Mute these accounts?" +msgstr "Biztosan el akarod némítani az alábbi fiókokat?" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "Szó elnémítása 24 órára" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "Szó elnémítása 30 napra" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "Szó elnémítása 7 napra" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "Szó elnémítása szövegben és címkékben is" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "Szó elnémítása csak címkékben" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "Szó elnémítása a némítás feloldásáig" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +msgid "Mute thread" +msgstr "Válaszlánc elnémítása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +msgid "Mute words & tags" +msgstr "Szavak és címkék elnémítása" + +#: src/screens/Moderation/index.tsx:265 +msgid "Muted accounts" +msgstr "Elnémított fiókok" + +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 +msgid "Muted Accounts" +msgstr "Elnémított fiókok" + +#: src/view/screens/ModerationMutedAccounts.tsx:116 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kapsz tőle értesítéseket. A némított fiókok listája nem nyilvános." + +#: src/lib/moderation/useModerationCauseDescription.ts:90 +msgid "Muted by \"{0}\"" +msgstr "Némítás forrása: {0}" + +#: src/screens/Moderation/index.tsx:235 +msgid "Muted words & tags" +msgstr "Elnémított szavak és címkék" + +#: src/view/screens/ProfileList.tsx:734 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó képes a fiókoddal kapcsolatba lépni, de ezekről a történésekről nem fogsz értesítéseket kapni és az összes bejegyzésük el lesz rejtve a számodra." + +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 +msgid "My Birthday" +msgstr "Születésnap megadása" + +#: src/view/screens/Feeds.tsx:732 +msgid "My Feeds" +msgstr "Hírfolyamgyűjtemény" + +#: src/view/shell/desktop/LeftNav.tsx:85 +msgid "My Profile" +msgstr "Saját profil" + +#: src/view/screens/Settings/index.tsx:583 +msgid "My saved feeds" +msgstr "Elmentett hírfolyamok" + +#: src/view/screens/Settings/index.tsx:589 +msgid "My Saved Feeds" +msgstr "Elmentett hírfolyamok" + +#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/CreateOrEditList.tsx:270 +msgid "Name" +msgstr "Név" + +#: src/view/com/modals/CreateOrEditList.tsx:135 +msgid "Name is required" +msgstr "A név megadása kötelező" + +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "A címe vagy a leírása megszegi a közösségi irányelveket" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 +msgid "Nature" +msgstr "Természet" + +#: src/components/StarterPack/StarterPackCard.tsx:124 +msgid "Navigate to {0}" +msgstr "Ugrás: {0}" + +#~ msgid "Navigate to starter pack" +#~ msgstr "Ugrás a kezdőcsomaghoz" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Navigates to the next screen" +msgstr "Ugrás a következő képernyőre" + +#: src/view/shell/Drawer.tsx:72 +msgid "Navigates to your profile" +msgstr "Ugrás a profilodra" + +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "Meg akarod változtatni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:130 +msgid "Need to report a copyright violation?" +msgstr "A szerzői jog megszegését akarod jelenteni?" + +#: src/screens/Onboarding/StepFinished.tsx:255 +msgid "Never lose access to your followers or data." +msgstr "Sose veszítsd el a követőid vagy az adataid!" + +#: src/view/com/modals/ChangeHandle.tsx:508 +msgid "Nevermind, create a handle for me" +msgstr "Mégse – hozzon létre egy felhasználónevet automatikusan" + +#: src/view/screens/Lists.tsx:84 +msgctxt "action" +msgid "New" +msgstr "Létrehozás" + +#: src/view/screens/ModerationModlists.tsx:80 +msgid "New" +msgstr "Létrehozás" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 +msgid "New chat" +msgstr "Új csevegés" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "Új betűtípus-beállítások váltak elérhetővé ✨" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "Új üzenetek" + +#: src/view/com/modals/CreateOrEditList.tsx:232 +msgid "New Moderation List" +msgstr "Moderálólista létrehozása" + +#: src/view/com/modals/ChangePassword.tsx:213 +msgid "New password" +msgstr "Új jelszó" + +#: src/view/com/modals/ChangePassword.tsx:218 +msgid "New Password" +msgstr "Új jelszó" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgctxt "action" +msgid "New post" +msgstr "Új bejegyzés" + +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 +msgid "New post" +msgstr "Új bejegyzés" + +#: src/view/shell/desktop/LeftNav.tsx:311 +msgctxt "action" +msgid "New Post" +msgstr "Új bejegyzés" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "Új felhasználó információs párbeszédablaka" + +#: src/view/com/modals/CreateOrEditList.tsx:227 +msgid "New User List" +msgstr "Felhasználólista létrehozása" + +#: src/view/screens/PreferencesThreads.tsx:74 +msgid "Newest replies first" +msgstr "A legújabb válaszok elöl" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 +msgid "News" +msgstr "Hírek" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 +msgid "Next" +msgstr "Tovább" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "Következő kép" + +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "No" +msgstr "Nem" + +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 +msgid "No description" +msgstr "Nincs leírás" + +#: src/view/com/modals/ChangeHandle.tsx:392 +msgid "No DNS Panel" +msgstr "DNS-panel nélkül" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hibája." + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 +msgid "No feeds found. Try searching for something else." +msgstr "Nincs találat. Próbálj megadni egy másik keresési kifejezést!" + +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "Még nincsenek kedvelések" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 +msgid "No longer following {0}" +msgstr "Abbahagytad {0} követését" + +#: src/screens/Signup/StepHandle.tsx:169 +msgid "No longer than 253 characters" +msgstr "Legfeljebb 253 karakter" + +#: src/screens/Messages/components/ChatListItem.tsx:116 +msgid "No messages yet" +msgstr "Még nincsenek üzenetek" + +#: src/screens/Messages/ChatList.tsx:271 +msgid "No more conversations to show" +msgstr "Nincs több megjeleníthető beszélgetés" + +#: src/view/com/notifications/Feed.tsx:121 +msgid "No notifications yet!" +msgstr "Még nincsenek értesítéseid!" + +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 +msgid "No one" +msgstr "Senkitől" + +#: src/components/WhoCanReply.tsx:237 +msgid "No one but the author can quote this post." +msgstr "Ezt a bejegyzést csak a szerző idézheti." + +#: src/screens/Profile/Sections/Feed.tsx:65 +msgid "No posts yet." +msgstr "Még nincsenek bejegyzések." + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "Még nincsenek idézések" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "Még nincsenek megosztások" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 +msgid "No result" +msgstr "Nincs találat" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 +msgid "No results" +msgstr "Nincs találat" + +#: src/components/Lists.tsx:215 +msgid "No results found" +msgstr "Nincs találat" + +#: src/view/screens/Feeds.tsx:513 +msgid "No results found for \"{query}\"" +msgstr "A(z) „{query}” kifejezésre nincs találat" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 +msgid "No results found for {query}" +msgstr "A(z) „{query}” kifejezésre nincs találat" + +#: src/components/dialogs/GifSelect.tsx:228 +msgid "No search results found for \"{search}\"." +msgstr "A(z) „{search}” kifejezésre nincs találat." + +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "Erre a bejegyzésre nem alkalmazhatsz feljegyzéseket, mert nem csatoltál hozzá médiatartalmat." + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "Köszönöm, nem" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 +msgid "Nobody" +msgstr "Senkitől" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "Ezt a tartalmat még senki sem kedvelte. Talán Te lehetnél az első!" + +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "Ezt a tartalmat még senki sem idézte. Talán Te lehetnél az első!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "Ezt a tartalmat még senki sem osztotta meg. Talán Te lehetnél az első!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 +msgid "Nobody was found. Try searching for someone else." +msgstr "Nincs találat. Próbálj rákeresni valaki másra!" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "Nem szexuális meztelenség" + +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 +msgid "Not Found" +msgstr "Ez a tartalom nem található" + +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 +msgid "Not right now" +msgstr "Talán máskor" + +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 +msgid "Note about sharing" +msgstr "Megjegyzés a megosztásról" + +#: src/screens/Moderation/index.tsx:578 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid kijelentkezett felhasználók számára is." + +#: src/screens/Messages/ChatList.tsx:213 +msgid "Nothing here" +msgstr "Nincs itt semmi" + +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Notification filters" +msgstr "Értesítések szűrése" + +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 +msgid "Notification settings" +msgstr "Értesítési beállítások" + +#: src/view/screens/NotificationsSettings.tsx:42 +msgid "Notification Settings" +msgstr "Értesítési beállítások" + +#: src/screens/Messages/Settings.tsx:117 +msgid "Notification sounds" +msgstr "Értesítési hangok" + +#: src/screens/Messages/Settings.tsx:114 +msgid "Notification Sounds" +msgstr "Értesítési hangok" + +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 +msgid "Notifications" +msgstr "Értesítések" + +#: src/lib/hooks/useTimeAgo.ts:122 +msgid "now" +msgstr "épp most" + +#: src/components/dms/MessageItem.tsx:197 +msgid "Now" +msgstr "Épp most" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Nudity" +msgstr "Meztelenség" + +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "Nem megjelölt meztelenség vagy felnőtt tartalom" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +msgid "Off" +msgstr "Ki" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "Jaj, ne!" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "Jaj, ne! Valami balul sült el." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 +msgid "OK" +msgstr "OK" + +#: src/screens/Login/PasswordUpdatedForm.tsx:38 +msgid "Okay" +msgstr "Oké" + +#: src/view/screens/PreferencesThreads.tsx:73 +msgid "Oldest replies first" +msgstr "A legrégebbi válaszok elöl" + +#: src/components/StarterPack/QrCode.tsx:75 +msgid "on<0><1/><2><3/>" +msgstr "ekkor:<0><1/><2><3/>" + +#: src/view/screens/Settings/index.tsx:227 +msgid "Onboarding reset" +msgstr "Regisztrációs varázsló alaphelyzetbe állítása" + +#: src/view/com/composer/Composer.tsx:739 +msgid "One or more images is missing alt text." +msgstr "Legalább egy képről hiányzik a helyettesítő szöveg." + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "Csak a .jpg és a .png formátumok támogatottak" + +#: src/components/WhoCanReply.tsx:217 +msgid "Only {0} can reply." +msgstr "Csak {0} válaszolhat." + +#: src/screens/Signup/StepHandle.tsx:152 +msgid "Only contains letters, numbers, and hyphens" +msgstr "Csak az angol ábécé betűit, számokat és kötőjeleket tartalmazhat" + +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "Csak a képfájlok támogatottak" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "Csak a WebVTT (.vtt) formátum támogatott" + +#: src/components/Lists.tsx:88 +msgid "Oops, something went wrong!" +msgstr "Hoppá! Valami balul sült el!" + +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 +msgid "Oops!" +msgstr "Hoppá!" + +#: src/screens/Onboarding/StepFinished.tsx:251 +msgid "Open" +msgstr "Megnyitás" + +#: src/view/com/posts/AviFollowButton.tsx:86 +msgid "Open {name} profile shortcut menu" +msgstr "A menü megnyitása {name} profilján" + +#: src/screens/Onboarding/StepProfile/index.tsx:286 +msgid "Open avatar creator" +msgstr "Profilképkészítő megnyitása" + +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 +msgid "Open conversation options" +msgstr "Beszélgetési beállítások megnyitása" + +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 +msgid "Open emoji picker" +msgstr "Emojiválasztó megnyitása" + +#: src/view/screens/ProfileFeed.tsx:301 +msgid "Open feed options menu" +msgstr "Hírfolyambeállítások megnyitása" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "A(z) {niceUrl} hivatkozás megnyitása" + +#: src/view/screens/Settings/index.tsx:703 +msgid "Open links with in-app browser" +msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészőben" + +#: src/components/dms/ActionsWrapper.tsx:87 +msgid "Open message options" +msgstr "Üzenetlehetőségek megnyitása" + +#: src/screens/Moderation/index.tsx:231 +msgid "Open muted words and tags settings" +msgstr "Elnémított szavak és címkék beállításainak megnyitása" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +msgid "Open navigation" +msgstr "Navigációs ablak megnyitása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +msgid "Open post options menu" +msgstr "Bejegyzéslehetőségek megnyitása" + +#: src/screens/StarterPack/StarterPackScreen.tsx:551 +msgid "Open starter pack menu" +msgstr "Kezdőcsomag-menü megnyitása" + +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 +msgid "Open storybook page" +msgstr "Mesekönyv-oldal megnyitása" + +#: src/view/screens/Settings/index.tsx:815 +msgid "Open system log" +msgstr "Rendszernapló megnyitása" + +#: src/view/com/util/forms/DropdownButton.tsx:159 +msgid "Opens {numItems} options" +msgstr "{numItems} lehetőség megnyitása" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "A tartalomfigyelmeztetések alkalmazására alkalmas párbeszédablak megnyitása" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "Párbeszédablak megnyitása, ahol megadhatod, hogy ki vehet részt a válaszláncban" + +#: src/view/screens/Settings/index.tsx:456 +msgid "Opens accessibility settings" +msgstr "Kisegítő lehetőségek megnyitása" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "Hibakeresési bejegyzés részleteinek megnyitása" + +#: src/view/screens/Settings/index.tsx:477 +msgid "Opens appearance settings" +msgstr "Megjelenítési beállítások megnyitása" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +msgid "Opens camera on device" +msgstr "Az eszköz kamerájának megnyitása" + +#: src/view/screens/Settings/index.tsx:606 +msgid "Opens chat settings" +msgstr "Csevegési beállítások megnyitása" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 +msgid "Opens composer" +msgstr "Bejegyzésíró megnyitása" + +#: src/view/screens/Settings/index.tsx:498 +msgid "Opens configurable language settings" +msgstr "Nyelvi beállítások megnyitása" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "Az eszköz fényképgalériájának megnyitása" + +#: src/view/screens/Settings/index.tsx:638 +msgid "Opens external embeds settings" +msgstr "Külső forrásból beágyazott tartalmak beállításainak megnyitása" + +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "Regisztrációs varázsló indítása" + +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign into your existing Bluesky account" +msgstr "Bejelentkezési varázsló megnyitása" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "GIF-választó párbeszédablak megnyitása" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "A meghívókódok listájának megnyitása" + +#: src/view/screens/Settings/index.tsx:775 +msgid "Opens modal for account deactivation confirmation" +msgstr "A fiók deaktiválását megerősítő modális ablak megnyitása" + +#: src/view/screens/Settings/index.tsx:797 +msgid "Opens modal for account deletion confirmation. Requires email code" +msgstr "A fiók törlését megerősítő modális ablak megnyitása. A folytatáshoz emailben kapott kód szükséges" + +#: src/view/screens/Settings/index.tsx:732 +msgid "Opens modal for changing your Bluesky password" +msgstr "A fiók jelszavának megváltoztatását lehetővé tevő modális ablak megnyitása" + +#: src/view/screens/Settings/index.tsx:687 +msgid "Opens modal for choosing a new Bluesky handle" +msgstr "A fiók felhasználónevének megváltoztatását lehetővé tevő modális ablak megnyitása" + +#: src/view/screens/Settings/index.tsx:755 +msgid "Opens modal for downloading your Bluesky account data (repository)" +msgstr "A fiók adatainak (adattárának) letöltését lehetővé tevő modális ablak megnyitása" + +#: src/view/screens/Settings/index.tsx:963 +msgid "Opens modal for email verification" +msgstr "Az emailes visszaigazolást lehetővé tevő modális ablak megnyitása" + +#: src/view/com/modals/ChangeHandle.tsx:269 +msgid "Opens modal for using custom domain" +msgstr "Az egyéni tartomány megadását lehetővé tevő modális ablak megnyitása" + +#: src/view/screens/Settings/index.tsx:523 +msgid "Opens moderation settings" +msgstr "Moderálási beállítások megnyitása" + +#: src/screens/Login/LoginForm.tsx:231 +msgid "Opens password reset form" +msgstr "Jelszóvisszaállítási űrlap megnyitása" + +#: src/view/screens/Settings/index.tsx:584 +msgid "Opens screen with all saved feeds" +msgstr "Elmentett hírfolyamok megjelenítése" + +#: src/view/screens/Settings/index.tsx:665 +msgid "Opens the app password settings" +msgstr "Alkalmazásjelszó-beállítások megnyitása" + +#: src/view/screens/Settings/index.tsx:541 +msgid "Opens the Following feed preferences" +msgstr "Követett hírfolyam beállításainak megnyitása" + +#: src/view/com/modals/LinkWarning.tsx:93 +msgid "Opens the linked website" +msgstr "Hivatkozás megnyitása" + +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 +msgid "Opens the storybook page" +msgstr "Mesekönyv-oldal megnyitása" + +#: src/view/screens/Settings/index.tsx:816 +msgid "Opens the system log page" +msgstr "Rendszernaplós oldal megnyitása" + +#: src/view/screens/Settings/index.tsx:562 +msgid "Opens the threads preferences" +msgstr "Válaszlánc-beállítások megnyitása" + +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 +msgid "Opens this profile" +msgstr "Saját profil megnyitása" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 +msgid "Opens video picker" +msgstr "Videó csatolása" + +#: src/view/com/util/forms/DropdownButton.tsx:293 +msgid "Option {0} of {numItems}" +msgstr "{numItems}/{0}. lehetőség" + +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 +msgid "Optionally provide additional information below:" +msgstr "Lehetőséged van megadni az alábbi információt is (Nem kötelező):" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "További lehetőségek:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Or combine these options:" +msgstr "Vagy használd egyszerre az alábbi lehetőségek bármelyikét:" + +#: src/screens/Deactivated.tsx:211 +msgid "Or, continue with another account." +msgstr "Vagy folytatás egy másik fiókkal." + +#: src/screens/Deactivated.tsx:194 +msgid "Or, log into one of your other accounts." +msgstr "Vagy bejelentkezés egy másik fiókba." + +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 +msgid "Other" +msgstr "Egyéb" + +#: src/components/AccountList.tsx:83 +msgid "Other account" +msgstr "Másik fiók" + +#: src/view/screens/Settings/index.tsx:380 +msgid "Other accounts" +msgstr "További fiókok" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:92 +msgid "Other..." +msgstr "Egyebek…" + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési jogosultságoktól a Blueskyon." + +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "Az oldal nem található" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "Az oldal nem található" + +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Password" +msgstr "Jelszó" + +#: src/view/com/modals/ChangePassword.tsx:143 +msgid "Password Changed" +msgstr "Jelszó megváltoztatva" + +#: src/screens/Login/index.tsx:154 +msgid "Password updated" +msgstr "Megváltoztattad a jelszavad" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "Megváltoztattad a jelszavad!" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 +msgid "Pause" +msgstr "Szünet" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 +msgid "Pause video" +msgstr "Videó szüneteltetése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 +msgid "People" +msgstr "Személyek" + +#: src/Navigation.tsx:179 +msgid "People followed by @{0}" +msgstr "A(z) @{0} által követett személyek" + +#: src/Navigation.tsx:172 +msgid "People following @{0}" +msgstr "Az őt követő személyek: @{0}" + +#: src/view/com/lightbox/Lightbox.tsx:77 +msgid "Permission to access camera roll is required." +msgstr "Galériahozzáférés szükséges." + +#: src/view/com/lightbox/Lightbox.tsx:85 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "A galéria hozzáférését megtagadták. Engedélyezd a rendszerbeállításokban!" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "Személy ki/be" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 +msgid "Pets" +msgstr "Háziállatok" + +#: src/screens/Onboarding/state.ts:97 +msgid "Photography" +msgstr "Fényképészet" + +#: src/view/com/composer/labels/LabelsBtn.tsx:168 +msgid "Pictures meant for adults." +msgstr "Felnőtteknek szánt képek." + +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 +msgid "Pin to home" +msgstr "Kitűzés a kezdőlapra" + +#: src/view/screens/ProfileFeed.tsx:296 +msgid "Pin to Home" +msgstr "Kitűzés a kezdőlapra" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Kitűzés a profilodra" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "Kitűzve" + +#: src/view/screens/SavedFeeds.tsx:130 +msgid "Pinned Feeds" +msgstr "Kitűzött hírfolyamok" + +#: src/view/screens/ProfileList.tsx:355 +msgid "Pinned to your feeds" +msgstr "Kitűzve a hírfolyamgyűjteményben" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 +msgid "Play" +msgstr "Lejátszás" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 +msgid "Play {0}" +msgstr "{0} lejátszása" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +msgid "Play or pause the GIF" +msgstr "GIF lejátszása/szüneteltetése" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 +msgid "Play video" +msgstr "Videó lejátszása" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +msgid "Play Video" +msgstr "Videó lejátszása" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 +msgid "Plays the GIF" +msgstr "GIF lejátszása" + +#: src/screens/Signup/state.ts:217 +msgid "Please choose your handle." +msgstr "Válassz ki egy felhasználónevet!" + +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 +msgid "Please choose your password." +msgstr "Válassz ki egy jelszót!" + +#: src/screens/Signup/state.ts:231 +msgid "Please complete the verification captcha." +msgstr "Végezd el a captchás ellenőrzést!" + +#: src/view/com/modals/ChangeEmail.tsx:65 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "Az email-címed megváltoztatása előtt ellenőriznünk kell a jelenlegit. Ez egy átmeneti megoldás, amíg ki nem fejlesztjük a rendes email-cím-frissítő eszközöket." + +#: src/view/com/modals/AddAppPasswords.tsx:94 +msgid "Please enter a name for your app password. All spaces is not allowed." +msgstr "Add meg az alkalmazásjelszó nevét! A név nem tartalmazhat csak szóközöket." + +#: src/view/com/modals/AddAppPasswords.tsx:151 +msgid "Please enter a unique name for this App Password or use our randomly generated one." +msgstr "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen létrehozottat!" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "Adj meg egy érvényes elnémítandó szót, címkét vagy kifejezést!" + +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 +msgid "Please enter your email." +msgstr "Add meg az email-címed!" + +#: src/screens/Signup/StepInfo/index.tsx:96 +msgid "Please enter your invite code." +msgstr "Add meg a meghívókódod!" + +#: src/view/com/modals/DeleteAccount.tsx:253 +msgid "Please enter your password as well:" +msgstr "Add meg a jelszavad is:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:265 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alkalmazta ezt a feljegyzést" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a csevegési jogosultságodtól" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "Jelentkezz be, mint @{0}!" + +#: src/view/com/modals/VerifyEmail.tsx:109 +msgid "Please Verify Your Email" +msgstr "Igazold vissza az email-címed!" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 +msgid "Politics" +msgstr "Politika" + +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 +msgid "Porn" +msgstr "Pornó" + +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 +msgctxt "action" +msgid "Post" +msgstr "Közzététel" + +#: src/view/com/post-thread/PostThread.tsx:481 +msgctxt "description" +msgid "Post" +msgstr "Bejegyzés" + +#: src/view/com/post-thread/PostThreadItem.tsx:196 +msgid "Post by {0}" +msgstr "{0} bejegyzése" + +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 +msgid "Post by @{0}" +msgstr "@{0} bejegyzése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Post deleted" +msgstr "Törölted a bejegyzést" + +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/view/com/post-thread/PostThread.tsx:212 +msgid "Post hidden" +msgstr "Elrejtetted a bejegyzést" + +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 +msgid "Post Hidden by Muted Word" +msgstr "Bejegyzés elrejtve egy elnémított szó által" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 +msgid "Post Hidden by You" +msgstr "Elrejtetted a bejegyzést" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 +msgid "Post interaction settings" +msgstr "Kapcsolatbalépési beállítások" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:88 +msgid "Post language" +msgstr "A bejegyzés nyelve" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 +msgid "Post Languages" +msgstr "A bejegyzés nyelvei" + +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 +msgid "Post not found" +msgstr "A bejegyzés nem található" + +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Kitűzted a bejegyzést" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Feloldottad a bejegyzés kitűzését" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "Bejegyzés közzététele folyamatban…" + +#: src/components/TagMenu/index.tsx:252 +msgid "posts" +msgstr "bejegyzés" + +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 +msgid "Posts" +msgstr "Bejegyzések" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő által is elnémíthatod. Javasoljuk a gyakori szavak kerülését, mivel ez bizonyos esetekben az összes bejegyzés elrejtését is eredményezheti." + +#: src/view/com/posts/FeedErrorMessage.tsx:68 +msgid "Posts hidden" +msgstr "Elrejtetted a bejegyzéseket" + +#: src/view/com/modals/LinkWarning.tsx:60 +msgid "Potentially Misleading Link" +msgstr "Potenciálisan félrevezető hivatkozás" + +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "Módosítottad a beállításokat" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "Az újracsatlakozáshoz kattints ide!" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "Press to change hosting provider" +msgstr "A tárhelyszolgáltató megváltoztatásához kattints ide!" + +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "Az újrapróbálkozáshoz kattints ide!" + +#: src/components/KnownFollowers.tsx:124 +msgid "Press to view followers of this account that you also follow" +msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz!" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "Előző kép" + +#: src/view/screens/LanguageSettings.tsx:188 +msgid "Primary Language" +msgstr "Elsődleges nyelv" + +#: src/view/screens/PreferencesThreads.tsx:92 +msgid "Prioritize Your Follows" +msgstr "Saját követések kiemelése" + +#: src/view/screens/NotificationsSettings.tsx:60 +msgid "Priority notifications" +msgstr "Előnyben részesített értesítések" + +#: src/view/screens/Settings/index.tsx:621 +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Privacy" +msgstr "Adatvédelem" + +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 +msgid "Privacy Policy" +msgstr "Adatvédelmi irányelvek" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "Videó feldolgozása folyamatban…" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "Feldolgozás folyamatban…" + +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 +msgid "profile" +msgstr "profil" + +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 +msgid "Profile" +msgstr "Profil" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 +msgid "Profile updated" +msgstr "Frissítetted a profilodat" + +#: src/view/screens/Settings/index.tsx:976 +msgid "Protect your account by verifying your email." +msgstr "Védd meg a fiókod az email-címed visszaigazolásával!" + +#: src/screens/Onboarding/StepFinished.tsx:237 +msgid "Public" +msgstr "Nyilvános" + +#: src/view/screens/ModerationModlists.tsx:63 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy letiltáshoz." + +#: src/view/screens/Lists.tsx:69 +msgid "Public, shareable lists which can drive feeds." +msgstr "Nyilvános, megosztható listák, amelyek hírfolyamként üzemelhetnek." + +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish post" +#~ msgstr "Bejegyzés közzététele" + +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish reply" +#~ msgstr "Válasz közzététele" + +#: src/components/StarterPack/QrCodeDialog.tsx:128 +msgid "QR code copied to your clipboard!" +msgstr "A QR-kód vágólapra másolása megtörtént" + +#: src/components/StarterPack/QrCodeDialog.tsx:106 +msgid "QR code has been downloaded!" +msgstr "A QR-kód letöltése megtörtént" + +#: src/components/StarterPack/QrCodeDialog.tsx:107 +msgid "QR code saved to your camera roll!" +msgstr "A QR-kód fotóalbumba mentése megtörtént" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +msgid "Quote post" +msgstr "Idézés" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +msgid "Quote post was re-attached" +msgstr "Visszakapcsoltad az idézetet" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +msgid "Quote post was successfully detached" +msgstr "Leválasztottad az idézetet" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +msgid "Quote posts disabled" +msgstr "Ezt a bejegyzést nem idézhetik mások" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 +msgid "Quote posts enabled" +msgstr "Ezt a bejegyzést idézhetik mások" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 +msgid "Quote settings" +msgstr "Idézési beállítások" + +#: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 +msgid "Quotes" +msgstr "Idézések" + +#: src/view/com/post-thread/PostThreadItem.tsx:230 +msgid "Quotes of this post" +msgstr "A bejegyzés idézései" + +#: src/view/screens/PreferencesThreads.tsx:81 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "Véletlenszerű (más néven: „Közzétevői rulett”)" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +msgid "Re-attach quote" +msgstr "Idézet visszakapcsolása" + +#: src/screens/Deactivated.tsx:144 +msgid "Reactivate your account" +msgstr "Fiók újraaktiválása" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Read the Bluesky blog" +msgstr "A Bluesky blog megnyitása" + +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 +msgid "Read the Bluesky Privacy Policy" +msgstr "A Bluesky adatvédelmi irányelveinek megtekintése" + +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 +msgid "Read the Bluesky Terms of Service" +msgstr "A Bluesky felhasználói feltételeinek megtekintése" + +#: src/components/dms/ReportDialog.tsx:169 +msgid "Reason:" +msgstr "Indoklás:" + +#: src/view/screens/Search/Search.tsx:1056 +msgid "Recent Searches" +msgstr "Keresési előzmények" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "Újracsatlakozás" + +#: src/view/screens/Notifications.tsx:144 +msgid "Refresh notifications" +msgstr "Értesítések frissítése" + +#: src/screens/Messages/ChatList.tsx:198 +msgid "Reload conversations" +msgstr "Beszélgetések újratöltése" + +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/view/com/feeds/FeedSourceCard.tsx:316 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/util/AccountDropdownBtn.tsx:61 +msgid "Remove" +msgstr "Eltávolítás" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "{displayName} eltávolítása a kezdőcsomagból" + +#: src/view/com/util/AccountDropdownBtn.tsx:26 +msgid "Remove account" +msgstr "Fiók eltávolítása" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 +msgid "Remove attachment" +msgstr "Melléklet eltávolítása" + +#: src/view/com/util/UserAvatar.tsx:403 +msgid "Remove Avatar" +msgstr "Profilkép eltávolítása" + +#: src/view/com/util/UserBanner.tsx:155 +msgid "Remove Banner" +msgstr "Borítókép eltávolítása" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 +msgid "Remove embed" +msgstr "Beágyazott tartalom eltávolítása" + +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +msgid "Remove feed" +msgstr "Hírfolyam eltávolítása" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 +msgid "Remove feed?" +msgstr "Hírfolyam eltávolítása" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +#: src/view/com/feeds/FeedSourceCard.tsx:265 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 +msgid "Remove from my feeds" +msgstr "Eltávolítás a hírfolyamgyűjteményből" + +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:311 +msgid "Remove from my feeds?" +msgstr "Eltávolítás a hírfolyamgyűjteményből" + +#: src/view/com/util/AccountDropdownBtn.tsx:53 +msgid "Remove from quick access?" +msgstr "Eltávolítás a fióklistáról" + +#: src/screens/List/ListHiddenScreen.tsx:156 +msgid "Remove from saved feeds" +msgstr "Eltávolítás az elmentett hírfolyamok közül" + +#: src/view/com/composer/photos/Gallery.tsx:200 +msgid "Remove image" +msgstr "Kép eltávolítása" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "Szó némításának feloldása" + +#: src/view/screens/Search/Search.tsx:1100 +msgid "Remove profile" +msgstr "Profil eltávolítása" + +#: src/view/screens/Search/Search.tsx:1102 +msgid "Remove profile from search history" +msgstr "Profil eltávolítása a keresési előzményekből" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 +msgid "Remove quote" +msgstr "Idézet eltávolítása" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 +msgid "Remove repost" +msgstr "Megosztott bejegyzés eltávolítása" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 +msgid "Remove subtitle file" +msgstr "Feliratfájl eltávolítása" + +#: src/view/com/posts/FeedErrorMessage.tsx:211 +msgid "Remove this feed from your saved feeds" +msgstr "Eltávolítás az elmentett hírfolyamok közül" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +msgid "Removed by author" +msgstr "Eltávolította a szerző" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 +msgid "Removed by you" +msgstr "Eltávolítottad ezt a tartalmat" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "Eltávolítottad ezt a személyt a listáról" + +#: src/view/com/feeds/FeedSourceCard.tsx:138 +msgid "Removed from my feeds" +msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" + +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 +msgid "Removed from saved feeds" +msgstr "Eltávolítottad a hírfolyamot az elmentett hírfolyamok közül" + +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 +msgid "Removed from your feeds" +msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +msgid "Removes quoted post" +msgstr "Idézett bejegyzés eltávolítása" + +#~ msgid "Removes the attachment" +#~ msgstr "Melléklet eltávolítása" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "Kicserélés a Felfedezés hírfolyamra" + +#: src/view/screens/Profile.tsx:229 +msgid "Replies" +msgstr "Válaszok" + +#: src/components/WhoCanReply.tsx:69 +msgid "Replies disabled" +msgstr "Válaszadás letiltva" + +#: src/components/WhoCanReply.tsx:215 +msgid "Replies to this post are disabled." +msgstr "A bejegyzés alatti válaszadás le van tiltva." + +#: src/view/com/composer/Composer.tsx:708 +msgctxt "action" +msgid "Reply" +msgstr "Válasz közzététele" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 +msgid "Reply Hidden by Thread Author" +msgstr "Elrejtve a válaszlánc szerzője által" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 +msgid "Reply Hidden by You" +msgstr "Elrejtve Általad" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 +msgid "Reply settings" +msgstr "Válaszbeállítások" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Reply settings are chosen by the author of the thread" +msgstr "A válaszlánc beállításait a szerző határozhatja meg" + +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "Válasz neki: <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:535 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "Válasz egy letiltott bejegyzésre" + +#: src/view/com/posts/FeedItem.tsx:537 +msgctxt "description" +msgid "Reply to a post" +msgstr "Válasz egy bejegyzésre" + +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 +msgctxt "description" +msgid "Reply to you" +msgstr "Válasz a bejegyzésedre" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +msgid "Reply visibility updated" +msgstr "Frissítetted a válasz láthatóságát" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +msgid "Reply was successfully hidden" +msgstr "Elrejtetted a választ" + +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "Report" +msgstr "Jelentés" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 +msgid "Report Account" +msgstr "Fiók jelentése" + +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 +msgid "Report conversation" +msgstr "Beszélgetés jelentése" + +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "Párbeszédablak jelentése" + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 +msgid "Report feed" +msgstr "Hírfolyam jelentése" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Report List" +msgstr "Lista jelentése" + +#: src/components/dms/MessageMenu.tsx:130 +msgid "Report message" +msgstr "Üzenet jelentése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +msgid "Report post" +msgstr "Bejegyzés jelentése" + +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 +msgid "Report starter pack" +msgstr "Kezdőcsomag jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:43 +msgid "Report this content" +msgstr "Tartalom jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:56 +msgid "Report this feed" +msgstr "Hírfolyam jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:53 +msgid "Report this list" +msgstr "Lista jelentése" + +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 +msgid "Report this message" +msgstr "Üzenet jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:50 +msgid "Report this post" +msgstr "Bejegyzés jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +msgid "Report this starter pack" +msgstr "Kezdőcsomag jelentése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:47 +msgid "Report this user" +msgstr "Felhasználó jelentése" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 +msgctxt "action" +msgid "Repost" +msgstr "Megosztás" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Repost" +msgstr "Megosztás" + +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +msgid "Repost or quote post" +msgstr "Megosztás vagy idézet" + +#: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 +msgid "Reposted By" +msgstr "Megosztók" + +#: src/view/com/posts/FeedItem.tsx:294 +msgid "Reposted by {0}" +msgstr "{0} megosztotta" + +#: src/view/com/posts/FeedItem.tsx:313 +msgid "Reposted by <0><1/>" +msgstr "<0><1/> megosztotta" + +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 +msgid "Reposted by you" +msgstr "Megosztottad" + +#: src/view/com/notifications/FeedItem.tsx:180 +msgid "reposted your post" +msgstr "megosztotta a bejegyzésedet" + +#: src/view/com/post-thread/PostThreadItem.tsx:209 +msgid "Reposts of this post" +msgstr "A bejegyzés megosztásai" + +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 +msgid "Request Change" +msgstr "Változtatás kérelmezése" + +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 +msgid "Request Code" +msgstr "Kód kérelmezése" + +#: src/view/screens/AccessibilitySettings.tsx:90 +msgid "Require alt text before posting" +msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel előtt" + +#: src/view/screens/Settings/Email2FAToggle.tsx:51 +msgid "Require email code to log into your account" +msgstr "Emailben kapott kód megkövetelése a bejelentkezéshez" + +#: src/screens/Signup/StepInfo/index.tsx:159 +msgid "Required for this provider" +msgstr "Szükséges a tárhelyszolgáltatóhoz" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Szükséges ebben a régióban" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 +msgid "Resend email" +msgstr "Email újraküldése" + +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "Email újraküldése" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "Visszaigazoló email újraküldése" + +#: src/view/com/modals/ChangePassword.tsx:186 +msgid "Reset code" +msgstr "Helyreállítási kód" + +#: src/view/com/modals/ChangePassword.tsx:193 +msgid "Reset Code" +msgstr "Helyreállítási kód" + +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 +msgid "Reset onboarding state" +msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "Jelszó helyreállítása" + +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 +msgid "Reset preferences state" +msgstr "Beállítások alaphelyzetbe állítása" + +#: src/view/screens/Settings/index.tsx:868 +msgid "Resets the onboarding state" +msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" + +#: src/view/screens/Settings/index.tsx:848 +msgid "Resets the preferences state" +msgstr "Beállítások alaphelyzetbe állítása" + +#: src/screens/Login/LoginForm.tsx:296 +msgid "Retries login" +msgstr "Bejelentkezés újrapróbálása" + +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 +msgid "Retries the last action, which errored out" +msgstr "A legutóbb meghiúsult folyamat újrapróbálása" + +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +msgid "Retry" +msgstr "Újra" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 +msgid "Return to previous page" +msgstr "Vissza az előző oldalra" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "Vissza a kezdőlapra" + +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 +msgid "Returns to previous page" +msgstr "Vissza az előző oldalra" + +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save" +msgstr "Mentés" + +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 +msgctxt "action" +msgid "Save" +msgstr "Mentés" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +msgid "Save birthday" +msgstr "Születésnap elmentése" + +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "Változtatások mentése" + +#~ msgid "Save Changes" +#~ msgstr "Változtatások mentése" + +#: src/view/com/modals/ChangeHandle.tsx:158 +msgid "Save handle change" +msgstr "Felhasználónév-változtatás mentése" + +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 +msgid "Save image" +msgstr "Kép mentése" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "Kép kivágásának mentése" + +#: src/components/StarterPack/QrCodeDialog.tsx:179 +msgid "Save QR code" +msgstr "QR-kód mentése" + +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 +msgid "Save to my feeds" +msgstr "Mentés a hírfolyamgyűjteménybe" + +#: src/view/screens/SavedFeeds.tsx:171 +msgid "Saved Feeds" +msgstr "Elmentett hírfolyamok" + +#: src/view/com/lightbox/Lightbox.tsx:95 +msgid "Saved to your camera roll" +msgstr "Elmentetted a képet a galériába" + +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 +msgid "Saved to your feeds" +msgstr "Elmentetted a hírfolyamot a gyűjteményedbe" + +#~ msgid "Saves any changes to your profile" +#~ msgstr "A profilon végzett változtatások mentése" + +#: src/view/com/modals/ChangeHandle.tsx:159 +msgid "Saves handle change to {handle}" +msgstr "{handle} felhasználónév-változtatásának mentése" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "Képkivágási beállítások mentése" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 +msgid "Say hello!" +msgstr "Köszönj!" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 +msgid "Science" +msgstr "Tudomány" + +#: src/view/screens/ProfileList.tsx:986 +msgid "Scroll to top" +msgstr "Vissza a tetejére" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 +msgid "Search" +msgstr "Keresés" + +#: src/view/shell/desktop/Search.tsx:201 +msgid "Search for \"{query}\"" +msgstr "Keresési kifejezés: {query}" + +#: src/view/screens/Search/Search.tsx:999 +msgid "Search for \"{searchText}\"" +msgstr "Keresési kifejezés: {searchText}" + +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Keresés: @{authorHandle} bejegyzései, amelyek {displayTag} címkével rendelkeznek" + +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Keresés: Bejegyzések, amelyek {displayTag} címkével rendelkeznek" + +#: src/screens/StarterPack/Wizard/index.tsx:500 +msgid "Search for feeds that you want to suggest to others." +msgstr "Ajánlható hírfolyamok keresése." + +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 +msgid "Search for users" +msgstr "Felhasználók keresése" + +#: src/components/dialogs/GifSelect.tsx:177 +msgid "Search GIFs" +msgstr "GIF-ek keresése" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +msgid "Search profiles" +msgstr "Profilok keresése" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search Tenor" +msgstr "Keresés a Tenoron" + +#: src/view/com/modals/ChangeEmail.tsx:105 +msgid "Security Step Required" +msgstr "Biztonsági lépés szükséges" + +#: src/components/TagMenu/index.web.tsx:77 +msgid "See {truncatedTag} posts" +msgstr "A(z) {truncatedTag} címkével ellátott bejegyzések megtekintése" + +#: src/components/TagMenu/index.web.tsx:94 +msgid "See {truncatedTag} posts by user" +msgstr "A felhasználó {truncatedTag} címkével ellátott bejegyzéseinek megtekintése" + +#: src/components/TagMenu/index.tsx:132 +msgid "See <0>{displayTag} posts" +msgstr "A(z) <0>{displayTag} címkével ellátott bejegyzések megtekintése" + +#: src/components/TagMenu/index.tsx:183 +msgid "See <0>{displayTag} posts by this user" +msgstr "A felhasználó <0>{displayTag} címkével ellátott bejegyzéseinek megtekintése" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "See jobs at Bluesky" +msgstr "Állások a Blueskynál" + +#: src/view/screens/SavedFeeds.tsx:212 +msgid "See this guide" +msgstr "kattints ide" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 +msgid "Seek slider" +msgstr "Lejátszásvezérlő sáv" + +#: src/view/com/util/Selector.tsx:106 +msgid "Select {item}" +msgstr "{item} kiválasztása" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "Szín kiválasztása" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "Fiók kiválasztása" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "Profilkép kiválasztása" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "Emoji kiválasztása" + +#: src/screens/Login/index.tsx:117 +msgid "Select from an existing account" +msgstr "Fiók kiválasztása" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "GIF kiválasztása" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "„{0}” GIF kiválasztása" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "Add meg, hogy milyen sokáig legyen ez a szó elnémítva!" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 +msgid "Select language..." +msgstr "Nyelv kiválasztása…" + +#: src/view/screens/LanguageSettings.tsx:301 +msgid "Select languages" +msgstr "Nyelvek kiválasztása" + +#: src/components/ReportDialog/SelectLabelerView.tsx:29 +msgid "Select moderator" +msgstr "Moderátor kiválasztása" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select option {i} of {numItems}" +msgstr "{numItems}/{i}. lehetőség kiválasztása" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "Feliratfájl (.vtt) társítása" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "A(z) {emojiName} emoji kiválasztása profilképként" + +#: src/components/ReportDialog/SubmitView.tsx:140 +msgid "Select the moderation service(s) to report to" +msgstr "A jelentéseket fogadó moderálási szolgáltatás(ok) megadása" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Select the service that hosts your data." +msgstr "Add meg az adataidat tároló szolgáltatást!" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 +msgid "Select video" +msgstr "Videó csatolása" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "Add meg, hogy milyen típusú tartalmakra legyen alkalmazható ez a szó!" + +#: src/view/screens/LanguageSettings.tsx:283 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "Add meg, hogy milyen nyelveken szeretnél tartalmakat látni a hírfolyamaidban. Ha egy nyelvet sem jelölsz ki, akkor minden bejegyzés láthatóvá válik." + +#: src/view/screens/LanguageSettings.tsx:97 +msgid "Select your app language for the default text to display in the app." +msgstr "Add meg, hogy milyen nyelven szeretnéd az alkalmazást használni." + +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Select your date of birth" +msgstr "Születési dátum megadása" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +msgid "Select your interests from the options below" +msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül!" + +#: src/view/screens/LanguageSettings.tsx:191 +msgid "Select your preferred language for translations in your feed." +msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket." + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "Küldj be egy pompás honlapot!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "Visszaigazolás küldése" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "Visszaigazoló email küldése" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 +msgid "Send Confirmation Email" +msgstr "Visszaigazoló email küldése" + +#: src/view/com/modals/DeleteAccount.tsx:149 +msgid "Send email" +msgstr "Email küldése" + +#: src/view/com/modals/DeleteAccount.tsx:162 +msgctxt "action" +msgid "Send Email" +msgstr "Email küldése" + +#: src/view/shell/Drawer.tsx:341 +msgid "Send feedback" +msgstr "Visszajelzés küldése" + +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 +msgid "Send message" +msgstr "Üzenet küldése" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "Címzett kiválasztása" + +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 +msgid "Send report" +msgstr "Jelentés küldése" + +#: src/components/ReportDialog/SelectLabelerView.tsx:43 +msgid "Send report to {0}" +msgstr "Jelentés küldése neki: {0}" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 +msgid "Send verification email" +msgstr "Visszaigazoló email küldése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +msgid "Send via direct message" +msgstr "Továbbítás személyes üzenetben" + +#: src/view/com/modals/DeleteAccount.tsx:151 +msgid "Sends email with confirmation code for account deletion" +msgstr "Visszaigazoló email küldése a fiók törlése szempontjából" + +#: src/view/com/auth/server-input/index.tsx:111 +msgid "Server address" +msgstr "Kiszolgáló címe" + +#: src/screens/Moderation/index.tsx:317 +msgid "Set birthdate" +msgstr "Születési dátum megadása" + +#: src/screens/Login/SetNewPasswordForm.tsx:96 +msgid "Set new password" +msgstr "Új jelszó beállítása" + +#: src/view/screens/PreferencesFollowingFeed.tsx:122 +msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." +msgstr "A funkció letiltásával minden idézet el lesz rejtve a hírfolyamból. A megosztások továbbra is láthatóak maradnak." + +#: src/view/screens/PreferencesFollowingFeed.tsx:64 +msgid "Set this setting to \"No\" to hide all replies from your feed." +msgstr "A funkció letiltásával minden válasz el lesz rejtve a hírfolyamból." + +#: src/view/screens/PreferencesFollowingFeed.tsx:88 +msgid "Set this setting to \"No\" to hide all reposts from your feed." +msgstr "A funkció letiltásával minden megosztás el lesz rejtve a hírfolyamból." + +#: src/view/screens/PreferencesThreads.tsx:117 +msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." +msgstr "A funkció engedélyezésével a válaszláncok egymásba ágyazva lesznek megjelenítve. Ez egy kísérleti funkció." + +#: src/view/screens/PreferencesFollowingFeed.tsx:158 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "A funkció engedélyezésével a Követett hírfolyam nyomokban a többi hírfolyam bejegyzéseit is meg fogja jeleníteni. Ez egy kísérleti funkció." + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "Fiók beállítása" + +#: src/view/com/modals/ChangeHandle.tsx:254 +msgid "Sets Bluesky username" +msgstr "Bluesky-felhasználónév beállítása" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "Email cím beállítása jelszóvisszaállításhoz" + +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 +msgid "Settings" +msgstr "Beállítások" + +#: src/view/com/composer/labels/LabelsBtn.tsx:172 +msgid "Sexual activity or erotic nudity." +msgstr "Szexuális aktusok vagy erotikus meztelenség." + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "Szexuális tartalom" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 +msgid "Share" +msgstr "Továbbítás" + +#: src/view/com/lightbox/Lightbox.tsx:176 +msgctxt "action" +msgid "Share" +msgstr "Továbbítás" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "Meséld el, hogy mi történt Veled!" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "Mondj el egy érdekességet!" + +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 +msgid "Share anyway" +msgstr "Továbbítás mégis" + +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 +msgid "Share feed" +msgstr "Hírfolyam továbbítása" + +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 +msgid "Share link" +msgstr "Hivatkozás továbbítása" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Share Link" +msgstr "Hivatkozás továbbítása" + +#: src/components/StarterPack/ShareDialog.tsx:88 +msgid "Share link dialog" +msgstr "Hivatkozásmegosztási párbeszédablak" + +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 +msgid "Share QR code" +msgstr "QR-kód továbbítása" + +#: src/screens/StarterPack/StarterPackScreen.tsx:415 +msgid "Share this starter pack" +msgstr "Kezdőcsomag továbbítása" + +#: src/components/StarterPack/ShareDialog.tsx:100 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos közösségedhez!" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "Oszd meg a kedvenc hírfolyamod!" + +#: src/Navigation.tsx:250 +msgid "Shared Preferences Tester" +msgstr "„Megosztott beállítások” tesztelő" + +#: src/view/com/modals/LinkWarning.tsx:92 +msgid "Shares the linked website" +msgstr "A hivatkozott honlap továbbítása" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:122 +#: src/view/screens/Settings/index.tsx:352 +msgid "Show" +msgstr "Mutatás" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +msgid "Show alt text" +msgstr "Helyettesítő szöveg mutatása" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 +msgid "Show anyway" +msgstr "Mutatás mégis" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "Jelvény mutatása" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "Jelvény mutatása és kiszűrés a hírfolyamokból" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show hidden replies" +msgstr "Elrejtett válaszok mutatása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +msgid "Show less like this" +msgstr "Kevesebb ilyet mutasson" + +#: src/screens/List/ListHiddenScreen.tsx:172 +msgid "Show list anyway" +msgstr "Lista mutatása mégis" + +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 +msgid "Show More" +msgstr "Továbbiak" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +msgid "Show more like this" +msgstr "Több ilyet mutasson" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show muted replies" +msgstr "Elnémított válaszok mutatása" + +#: src/view/screens/PreferencesFollowingFeed.tsx:155 +msgid "Show Posts from My Feeds" +msgstr "A többi hírfolyam bejegyzéseinek mutatása" + +#: src/view/screens/PreferencesFollowingFeed.tsx:119 +msgid "Show Quote Posts" +msgstr "Idézetek mutatása" + +#: src/view/screens/PreferencesFollowingFeed.tsx:61 +msgid "Show Replies" +msgstr "Válaszok mutatása" + +#: src/view/screens/PreferencesThreads.tsx:95 +msgid "Show replies by people you follow before all other replies." +msgstr "A funkció engedélyezésével az Általad követett személyek válaszai lesznek legfelül megjelenítve egy bejegyzés alatt." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +msgid "Show reply for everyone" +msgstr "Válasz mutatása mindenkinek" + +#: src/view/screens/PreferencesFollowingFeed.tsx:85 +msgid "Show Reposts" +msgstr "Megosztások mutatása" + +#: src/components/moderation/ContentHider.tsx:130 +#: src/components/moderation/PostHider.tsx:79 +msgid "Show the content" +msgstr "Tartalom mutatása" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "Figyelmeztetés" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "Bejelentkezés" + +#: src/components/AccountList.tsx:122 +msgid "Sign in as {0}" +msgstr "Bejelentkezés, mint {0}" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "Bejelentkezés, mint…" + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign into Bluesky or create a new account" +msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot!" + +#: src/view/screens/Settings/index.tsx:433 +msgid "Sign out" +msgstr "Kijelentkezés" + +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 +msgid "Sign out of all accounts" +msgstr "Kijelentkezés az összes fiókból" + +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Sign up" +msgstr "Regisztráció" + +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "Bejelentkezés szükséges" + +#: src/view/screens/Settings/index.tsx:362 +msgid "Signed in as" +msgstr "Bejelentkezve, mint" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "Bejelentkezve, mint @{0}" + +#: src/view/com/notifications/FeedItem.tsx:218 +msgid "signed up with your starter pack" +msgstr "regisztrált a kezdőcsomagoddal" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 +msgid "Signup without a starter pack" +msgstr "Regisztráció kezdőcsomag nélkül" + +#: src/components/FeedInterstitials.tsx:316 +msgid "Similar accounts" +msgstr "Hasonló fiókok" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Skip" +msgstr "Kihagyás" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "Folyamat kihagyása" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "Kisebb" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 +msgid "Software Dev" +msgstr "Szoftverfejlesztő" + +#: src/components/FeedInterstitials.tsx:447 +msgid "Some other feeds you might like" +msgstr "További ajánlott hírfolyamok" + +#: src/components/WhoCanReply.tsx:70 +msgid "Some people can reply" +msgstr "Csak bizonyos személyek válaszolhatnak" + +#: src/screens/Messages/Conversation.tsx:109 +msgid "Something went wrong" +msgstr "Valami balul sült el" + +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "Valami balul sült el. Próbáld újra" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 +#: src/screens/Profile/Sections/Labels.tsx:87 +msgid "Something went wrong, please try again." +msgstr "Valami balul sült el. Próbáld újra!" + +#: src/components/Lists.tsx:200 +#: src/view/screens/NotificationsSettings.tsx:49 +msgid "Something went wrong!" +msgstr "Valami balul sült el!" + +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 +msgid "Sorry! Your session expired. Please log in again." +msgstr "Sajnáljuk, de lejárt a munkameneted. Jelentkezz be újra!" + +#: src/view/screens/PreferencesThreads.tsx:64 +msgid "Sort Replies" +msgstr "Válaszok rendezése" + +#: src/view/screens/PreferencesThreads.tsx:67 +msgid "Sort replies to the same post by:" +msgstr "Egy bejegyzés alatti válaszok rendezése:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "Forrás:" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "Spam" + +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "Spam; túl sok említés vagy válasz" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 +msgid "Sports" +msgstr "Sport" + +#: src/components/dms/dialogs/NewChatDialog.tsx:61 +msgid "Start a new chat" +msgstr "Új csevegés indítása" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 +msgid "Start chat with {displayName}" +msgstr "Csevegés indítása vele: {displayName}" + +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Starter Pack" +msgstr "Kezdőcsomag" + +#: src/components/StarterPack/StarterPackCard.tsx:81 +msgid "Starter pack by {0}" +msgstr "Kezdőcsomag – Szerző: {0}" + +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Kezdőcsomag – Saját" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 +msgid "Starter pack is invalid" +msgstr "Ez a kezdőcsomag érvénytelen" + +#: src/view/screens/Profile.tsx:233 +msgid "Starter Packs" +msgstr "Kezdőcsomagok" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és személyeidet." + +#: src/view/screens/Settings/index.tsx:918 +msgid "Status Page" +msgstr "Állapot" + +#: src/screens/Signup/index.tsx:130 +msgid "Step {0} of {1}" +msgstr "{1}/{0}. lépés" + +#: src/view/screens/Settings/index.tsx:279 +msgid "Storage cleared, you need to restart the app now." +msgstr "Adatok törölve. Indítsd újra az alkalmazást!" + +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 +msgid "Storybook" +msgstr "Mesekönyv" + +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "Submit" + +#: src/view/screens/ProfileList.tsx:703 +msgid "Subscribe" +msgstr "Feliratkozás" + +#: src/screens/Profile/Sections/Labels.tsx:201 +msgid "Subscribe to @{0} to use these labels:" +msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű szolgáltatóra:" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +msgid "Subscribe to Labeler" +msgstr "Feliratkozás a feljegyzőre" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +msgid "Subscribe to this labeler" +msgstr "Feliratkozás a feljegyzőre" + +#: src/view/screens/ProfileList.tsx:699 +msgid "Subscribe to this list" +msgstr "Feliratkozás a listára" + +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "Siker!" + +#: src/view/screens/Search/Explore.tsx:332 +msgid "Suggested accounts" +msgstr "Javasolt fiókok" + +#: src/components/FeedInterstitials.tsx:318 +msgid "Suggested for you" +msgstr "Számodra javasolt" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Suggestive" +msgstr "Felnőtt tartalom" + +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "Támogatás" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "Fiókváltás" + +#: src/view/screens/Settings/index.tsx:131 +msgid "Switch to {0}" +msgstr "Váltás rá: {0}" + +#: src/view/screens/Settings/index.tsx:132 +msgid "Switches the account you are logged in to" +msgstr "A jelenleg bejelentkezett fiók átváltása egy másikra" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "System" +msgstr "Rendszer" + +#: src/view/screens/Settings/index.tsx:818 +msgid "System log" +msgstr "Rendszernapló" + +#: src/components/TagMenu/index.tsx:87 +msgid "Tag menu: {displayTag}" +msgstr "Címkemenü: {displayTag}" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "Csak címkék" + +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "Koppints ide a bezáráshoz" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 +msgid "Tap to enter full screen" +msgstr "Koppints ide a teljes képernyős módba lépéshez" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 +msgid "Tap to play or pause" +msgstr "Koppints ide a lejátszáshoz/szüneteltetéshez" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 +msgid "Tap to toggle sound" +msgstr "Koppints ide a hang némításához és felhangosításához" + +#: src/view/com/util/images/AutoSizedImage.tsx:219 +#: src/view/com/util/images/AutoSizedImage.tsx:239 +msgid "Tap to view full image" +msgstr "Koppints ide a teljes kép megtekintéséhez" + +#: src/state/shell/progress-guide.tsx:166 +msgid "Task complete - 10 likes!" +msgstr "Feladat teljesítve – 10 kedvelés!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" +"Tanítsd meg az algoritmusnak,\n" +"hogy mit szeretnél látni!" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 +msgid "Tech" +msgstr "Technológia" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "Mondj el egy viccet!" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "Mesélj magadról!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" +msgstr "További részletek" + +#: src/view/shell/desktop/RightNav.tsx:90 +msgid "Terms" +msgstr "Feltételek" + +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 +msgid "Terms of Service" +msgstr "Felhasználási feltételek" + +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "A közösségi irányelveket megszegő kifejezések" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "Szöveg és címkék" + +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "Szövegbeviteli mező" + +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "Köszönjük! Az email-cím visszaigazolása megtörtént." + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 +msgid "Thank you. Your report has been sent." +msgstr "Köszönjük! A jelentést megkaptuk." + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Köszönjük! Visszaigazoltad az email-címed – most már bezárhatod ezt az ablakot." + +#: src/view/com/modals/ChangeHandle.tsx:452 +msgid "That contains the following:" +msgstr "Az alábbi tartalommal:" + +#: src/screens/Signup/StepHandle.tsx:51 +msgid "That handle is already taken." +msgstr "Ez a felhasználónév már foglalt." + +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 +msgid "That starter pack could not be found." +msgstr "Ez a kezdőcsomag nem található." + +#: src/view/com/post-thread/PostQuotes.tsx:133 +msgid "That's all, folks!" +msgstr "Ez van, srácok!" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "The account will be able to interact with you after unblocking." +msgstr "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását." + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "The author of this thread has hidden this reply." +msgstr "A válaszlánc szerzője elrejtette ezt a választ." + +#: src/screens/Moderation/index.tsx:369 +msgid "The Bluesky web application" +msgstr "A Bluesky webalkalmazás" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "A közösségi irányelvek elköltöztek: <0/>" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "A szerzői jogi irányelvek elköltöztek: <0/>" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "A Felfedezés hírfolyam" + +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 +msgid "The Discover feed now knows what you like" +msgstr "A Felfedezés hírfolyam olyan tartalmakat mutat, amelyek tetszhetnek Neked" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol abbahagytad!" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "Ennek a hírfolyamnak a helyét átvette a Felfedezés." + +#: src/components/moderation/LabelsOnMeDialog.tsx:58 +msgid "The following labels were applied to your account." +msgstr "Az alábbi feljegyzéseket alkalmazták a fiókodra." + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your content." +msgstr "Az alábbi feljegyzéseket alkalmazták a tartalmadra." + +#: src/screens/Onboarding/Layout.tsx:58 +msgid "The following steps will help customize your Bluesky experience." +msgstr "A továbbiakban személyre szabhatod a Bluesky-élményedet." + +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 +msgid "The post may have been deleted." +msgstr "Lehetséges, hogy ezt a bejegyzést törölték." + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "Az adatvédelmi irányelvek elköltöztek: <0/>" + +#: src/view/com/composer/state/video.ts:409 +msgid "The selected video is larger than 50MB." +msgstr "A kijelölt videó nagyobb, mint 50 MB." + +#: src/screens/StarterPack/StarterPackScreen.tsx:724 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "A kezdőcsomag érvénytelen. Ha szeretnéd, törölheted a listáról." + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "A támogatási űrlap elköltözött. Kérjük, <0/> vagy látogasd meg a(z) {HELP_DESK_URL} honlapot a kapcsolatbalépéshez!" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "A felhasználási feltételek elköltöztek:" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "A megadott ellenőrzőkód érvénytelen. Nézd meg, hogy helyes kódot adtál-e meg vagy kérj újat!" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "Téma" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "A fiók deaktiválásához nem tartozik időkorlát. Bármikor visszajöhetsz." + +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "A kiszolgáló felkeresése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/components/dialogs/GifSelect.tsx:225 +msgid "There was an issue connecting to Tenor." +msgstr "Megszakadt a kapcsolat a Tenorral." + +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 +msgid "There was an issue contacting the server" +msgstr "Megszakadt a kapcsolat a kiszolgálóval" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 +msgid "There was an issue contacting your server" +msgstr "Megszakadt a kapcsolat a kiszolgálóddal" + +#: src/view/com/notifications/Feed.tsx:129 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz!" + +#: src/view/com/posts/Feed.tsx:473 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!" + +#: src/view/com/lists/ListMembers.tsx:169 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "A lista lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!" + +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "A listák lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!" + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "A jelentés küldése meghiúsult. Ellenőrizd az internetkapcsolatot!" + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/view/screens/AppPasswords.tsx:75 +msgid "There was an issue with fetching your app passwords" +msgstr "Hiba történt az alkalmazásjelszavak lekérése közben" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 +msgid "There was an issue! {0}" +msgstr "Hiba történt! {0}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "Hiba történt. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "Váratlan alkalmazáshiba történt. Kérjük jelentsd!" + +#: src/screens/SignupQueued.tsx:112 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "Jelenleg rengeteg új felhasználó csatlakozik a Blueskyhoz. A fiókodat aktiválni fogjuk, amint tudjuk!" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "Valaki feljegyzést alkalmazott erre a(z) {screenDescription}-ra/-re:" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "Ez a fiók azt kérte, hogy a megtekintéséhez jelentkezz be." + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "Ezt a felhasználót legalább egy aktív moderálólista letiltotta. Ha szeretnéd feloldani a tiltását, akkor el kell távolítanod a listáról." + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "A fellebbezés címzettje: <0>{sourceName}." + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "Ez a fellebbezés a Bluesky moderálási szolgáltatásához lesz elküldve." + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "Megszakadt a kapcsolat a csevegéssel" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "Ezt a tartalmat a moderátorok elrejtették." + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "Ez a tartalom általános figyelmeztetéssel lett ellátva a moderátorok által." + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "Ezt a tartalmat a(z) {0} üzemelteti. Szeretnéd engedélyezni a külső médiatartalmak megjelenítését?" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhasználó letiltotta a másikat." + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This content is not viewable without a Bluesky account." +msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg." + +#: src/screens/Messages/components/ChatListItem.tsx:266 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A lehetőségekhez kattints ide." + +#: src/view/screens/Settings/ExportCarDialog.tsx:92 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a blogbejegyzésben olvashatsz." + +#: src/view/com/posts/FeedErrorMessage.tsx:120 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "Ez a hírfolyam jelenleg rengeteg bejövő forgalmat tapasztal, ezért átmenetileg nem elérhető. Próbáld újra később!" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:37 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy rosszul van beállítva a hírfolyam." + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 +msgid "This feed is empty." +msgstr "Ez a hírfolyam üres." + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés hírfolyamot mutatjuk." + +#: src/components/dialogs/BirthDateSettings.tsx:40 +msgid "This information is not shared with other users." +msgstr "Ezt az információt nem osztjuk meg más felhasználókkal." + +#: src/view/com/modals/VerifyEmail.tsx:127 +msgid "This is important in case you ever need to change your email or reset your password." +msgstr "Ez fontos, ha a jövőben megváltoztatnád az email-címed vagy a jelszavad." + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 +msgid "This label was applied by <0>{0}." +msgstr "Feljegyezte a(z) <0>{0}." + +#: src/components/moderation/ModerationDetailsDialog.tsx:146 +msgid "This label was applied by the author." +msgstr "Feljegyezte a szerző." + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +msgid "This label was applied by you." +msgstr "Saját feljegyzés." + +#: src/screens/Profile/Sections/Labels.tsx:188 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, hogy nem aktív." + +#: src/view/com/modals/LinkWarning.tsx:72 +msgid "This link is taking you to the following website:" +msgstr "Ez a hivatkozás az alábbi honlapra mutat:" + +#: src/screens/List/ListHiddenScreen.tsx:136 +msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "Ennek a(z) <0>{0} által létrehozott listának a címe vagy leírása lehetséges, hogy megsérti a Bluesky közösségi irányelveit." + +#: src/view/screens/ProfileList.tsx:966 +msgid "This list is empty!" +msgstr "Ez a lista üres." + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba!" + +#: src/view/com/modals/AddAppPasswords.tsx:110 +msgid "This name is already in use" +msgstr "Ez a név már foglalt" + +#: src/view/com/post-thread/PostThreadItem.tsx:139 +msgid "This post has been deleted." +msgstr "Ezt a bejegyzést törölték." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 +msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza." + +#: src/view/com/composer/Composer.tsx:364 +msgid "This post's author has disabled quote posts." +msgstr "A szerző letiltotta az idézést." + +#: src/view/com/profile/ProfileMenu.tsx:350 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "Ez a profil csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról." + +#: src/screens/Signup/StepInfo/Policies.tsx:37 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az adatvédelmi irányelveit." + +#: src/view/com/modals/ChangeHandle.tsx:432 +msgid "This should create a domain record at:" +msgstr "Ez az alábbi helyen fog tartományrekordot létrehozni:" + +#: src/view/com/profile/ProfileFollowers.tsx:96 +msgid "This user doesn't have any followers." +msgstr "Ezt a felhasználót még senki sem követi." + +#: src/components/dms/MessagesListBlockedFooter.tsx:60 +msgid "This user has blocked you" +msgstr "Ez a felhasználó letiltott Téged" + +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "This user has blocked you. You cannot view their content." +msgstr "Ez a felhasználó letiltott Téged, ezért nem tekintheted meg a tartalmait." + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "Ez a felhasználó azt kérte, hogy a tartalmait csak bejelentkezett felhasználók számára mutassuk meg." + +#: src/components/moderation/ModerationDetailsDialog.tsx:58 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit letiltottál." + +#: src/components/moderation/ModerationDetailsDialog.tsx:90 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit elnémítottál." + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "Ez a felhasználó nemrég regisztrált. További információért koppints ide." + +#: src/view/com/profile/ProfileFollows.tsx:96 +msgid "This user isn't following anyone." +msgstr "Ez a felhasználó még senkit sem követ." + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "Ezzel a(z) „{0}” kifejezés el lesz távolítva az elnémított szavak listájáról. Később bármikor újra felveheted." + +#: src/view/com/util/AccountDropdownBtn.tsx:55 +msgid "This will remove @{0} from the quick access list." +msgstr "Ezzel @{0} el lesz távolítva a fióklistáról." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami egy helyőrzővel lesz helyettesítve." + +#: src/view/screens/Settings/index.tsx:561 +msgid "Thread preferences" +msgstr "Válaszláncok" + +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 +msgid "Thread Preferences" +msgstr "Válaszláncok" + +#: src/view/screens/PreferencesThreads.tsx:114 +msgid "Threaded Mode" +msgstr "Beágyazott mód" + +#: src/Navigation.tsx:303 +msgid "Threads Preferences" +msgstr "Válaszlánc-beállítások" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az email-címedet." + +#: src/components/dms/ReportConversationPrompt.tsx:20 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "Ha egy beszélgetést szeretnél jelenteni, kérjük egy konkrét üzenetet jelents a csevegési képernyőről. Ez segít a moderátorainknak megérteni a probléma szókörnyezetét." + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 +msgid "To upload videos to Bluesky, you must first verify your email." +msgstr "A videófeltöltés előtt ellenőriznünk kell az email-címedet." + +#: src/components/ReportDialog/SelectLabelerView.tsx:32 +msgid "To whom would you like to send this report?" +msgstr "Kinek szeretnéd elküldeni ezt a jelentést?" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Ma" + +#: src/view/com/util/forms/DropdownButton.tsx:255 +msgid "Toggle dropdown" +msgstr "Legördülő menü kibontása/összecsukása" + +#: src/screens/Moderation/index.tsx:346 +msgid "Toggle to enable or disable adult content" +msgstr "Felnőtt tartalmak ki-/bekapcsolása" + +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 +msgid "Top" +msgstr "Felkapott" + +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +msgid "Translate" +msgstr "Lefordítás" + +#: src/view/com/util/error/ErrorScreen.tsx:82 +msgctxt "action" +msgid "Try again" +msgstr "Újra" + +#: src/screens/Onboarding/state.ts:102 +msgid "TV" +msgstr "Televízió" + +#: src/view/screens/Settings/index.tsx:712 +msgid "Two-factor authentication" +msgstr "Kétlépcsős azonosítás" + +#: src/screens/Messages/components/MessageInput.tsx:141 +msgid "Type your message here" +msgstr "Üzenet megadása" + +#: src/view/com/modals/ChangeHandle.tsx:415 +msgid "Type:" +msgstr "Típus:" + +#: src/view/screens/ProfileList.tsx:594 +msgid "Un-block list" +msgstr "Lista tiltásának feloldása" + +#: src/view/screens/ProfileList.tsx:579 +msgid "Un-mute list" +msgstr "Lista némításának feloldása" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az internetkapcsolatot!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:648 +msgid "Unable to delete" +msgstr "A törlés meghiúsult" + +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 +msgid "Unblock" +msgstr "Tiltás feloldása" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 +msgctxt "action" +msgid "Unblock" +msgstr "Tiltás feloldása" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Unblock account" +msgstr "Fiók tiltásának feloldása" + +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 +msgid "Unblock Account" +msgstr "Fiók tiltásának feloldása" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Unblock Account?" +msgstr "Fiók tiltásának feloldása" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Undo repost" +msgstr "Megosztás visszavonása" + +#: src/view/com/profile/FollowButton.tsx:61 +msgctxt "action" +msgid "Unfollow" +msgstr "Követés megszüntetése" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +msgid "Unfollow {0}" +msgstr "{0} követésének megszüntetése" + +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 +msgid "Unfollow Account" +msgstr "Fiók követésének megszüntetése" + +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Unlike this feed" +msgstr "Mégse tetszik a hírfolyam" + +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Némítás feloldása" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "Némítás feloldása" + +#: src/components/TagMenu/index.web.tsx:115 +msgid "Unmute {truncatedTag}" +msgstr "{truncatedTag} némításának feloldása" + +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 +msgid "Unmute Account" +msgstr "Fiók némításának feloldása" + +#: src/components/TagMenu/index.tsx:204 +msgid "Unmute all {displayTag} posts" +msgstr "Az összes {displayTag} címkével rendelkező bejegyzés némításának feloldása" + +#: src/components/dms/ConvoMenu.tsx:176 +msgid "Unmute conversation" +msgstr "Beszélgetés némításának feloldása" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +msgid "Unmute thread" +msgstr "Válaszlánc némításának feloldása" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Unmute video" +msgstr "Videó némításának feloldása" + +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 +msgid "Unpin" +msgstr "Kitűzés feloldása" + +#: src/view/screens/ProfileFeed.tsx:293 +msgid "Unpin from home" +msgstr "Kitűzés feloldása a kezdőlapról" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "Kitűzés feloldása a profilodról" + +#: src/view/screens/ProfileList.tsx:559 +msgid "Unpin moderation list" +msgstr "Moderálólista kitűzésének feloldása" + +#: src/view/screens/ProfileList.tsx:356 +msgid "Unpinned from your feeds" +msgstr "Feloldottad a hírfolyam kitűzését" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 +msgid "Unsubscribe" +msgstr "Leiratkozás" + +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 +msgid "Unsubscribe from list" +msgstr "Leiratkozás a listáról" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +msgid "Unsubscribe from this labeler" +msgstr "Leiratkozás a feljegyzőről" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "Leiratkoztál a listáról" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 +msgid "Unsupported video type: {mimeType}" +msgstr "Nem támogatott videóformátum: {mimeType}" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "Kéretlen szexuális tartalom" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "<0>{displayName} listatagságának frissítése" + +#: src/view/com/modals/ChangeHandle.tsx:495 +msgid "Update to {handle}" +msgstr "Frissítés erre: {handle}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +msgid "Updating quote attachment failed" +msgstr "Az idézet leválasztása/visszakapcsolása meghiúsult" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +msgid "Updating reply visibility failed" +msgstr "A válasz láthatóságának frissítése meghiúsult" + +#: src/screens/Login/SetNewPasswordForm.tsx:180 +msgid "Updating..." +msgstr "Frissítés folyamatban…" + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Upload a photo instead" +msgstr "Fénykép feltöltése" + +#: src/view/com/modals/ChangeHandle.tsx:441 +msgid "Upload a text file to:" +msgstr "Tölts fel ide egy szöveges fájlt:" + +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 +#: src/view/com/util/UserBanner.tsx:126 +msgid "Upload from Camera" +msgstr "Feltöltés a kamerából" + +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 +msgid "Upload from Files" +msgstr "Feltöltés a fájlkezelőből" + +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 +msgid "Upload from Library" +msgstr "Feltöltés a galériából" + +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "Képek feltöltése folyamatban…" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "Hivatkozás indexképének feltöltése folyamatban…" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "Videó feltöltése folyamatban…" + +#: src/view/com/modals/ChangeHandle.tsx:395 +msgid "Use a file on your server" +msgstr "Fájl használata a saját kiszolgálóról" + +#: src/view/screens/AppPasswords.tsx:205 +msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." +msgstr "Egy alkalmazásjelszó használatával bármely egyéb Bluesky-kliensbe bejelentkezhetsz, anélkül hogy teljes hozzáférést biztosítanál a fiókodhoz vagy a valódi jelszavadhoz." + +#: src/view/com/modals/ChangeHandle.tsx:506 +msgid "Use bsky.social as hosting provider" +msgstr "A bsky.social adattárszolgáltató használata" + +#: src/view/com/modals/ChangeHandle.tsx:505 +msgid "Use default provider" +msgstr "Alapértelmezett adattárszolgáltató használata" + +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 +msgid "Use in-app browser" +msgstr "Alkalmazáson belüli böngésző használata" + +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 +msgid "Use my default browser" +msgstr "Alapértelmezett böngésző használata" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "Javasolt beállítások használata" + +#: src/view/com/modals/ChangeHandle.tsx:387 +msgid "Use the DNS panel" +msgstr "DNS-panel használata" + +#: src/view/com/modals/AddAppPasswords.tsx:206 +msgid "Use this to sign into the other app along with your handle." +msgstr "A másik alkalmazásba a felhasználóneveddel és ezzel jelentkezhetsz be." + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "Használó:" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 +msgid "User Blocked" +msgstr "Letiltott felhasználó" + +#: src/lib/moderation/useModerationCauseDescription.ts:53 +msgid "User Blocked by \"{0}\"" +msgstr "Tiltás forrása: {0}" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "Letiltott felhasználó (lista által)" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +msgid "User Blocked by List" +msgstr "Letiltott felhasználó (lista által)" + +#: src/lib/moderation/useModerationCauseDescription.ts:71 +msgid "User Blocking You" +msgstr "Téged letiltott felhasználó" + +#: src/components/moderation/ModerationDetailsDialog.tsx:76 +msgid "User Blocks You" +msgstr "Ez a felhasználó letiltott Téged" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "Felhasználólista – Szerző: {0}" + +#: src/view/screens/ProfileList.tsx:890 +msgid "User list by <0/>" +msgstr "Felhasználólista – Szerző: <0/>" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 +msgid "User list by you" +msgstr "Felhasználólista – Saját" + +#: src/view/com/modals/CreateOrEditList.tsx:176 +msgid "User list created" +msgstr "Létrehoztad a felhasználólistát" + +#: src/view/com/modals/CreateOrEditList.tsx:162 +msgid "User list updated" +msgstr "Frissítetted a felhasználólistát" + +#: src/view/screens/Lists.tsx:66 +msgid "User Lists" +msgstr "Felhasználólisták" + +#: src/screens/Login/LoginForm.tsx:183 +msgid "Username or email address" +msgstr "Felhasználónév vagy email-cím" + +#: src/view/screens/ProfileList.tsx:924 +msgid "Users" +msgstr "Felhasználók" + +#: src/components/WhoCanReply.tsx:258 +msgid "users followed by <0>@{0}" +msgstr "felhasználót követ <0>@{0}" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Users I follow" +msgstr "Csak a követett személyektől" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 +msgid "Users in \"{0}\"" +msgstr "A(z) „{0}” listán szereplő felhasználóktól" + +#: src/components/LikesDialog.tsx:83 +msgid "Users that have liked this content or profile" +msgstr "A tartalmat vagy profilt kedvelő felhasználók" + +#: src/view/com/modals/ChangeHandle.tsx:423 +msgid "Value:" +msgstr "Érték:" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 +msgid "Verified email required" +msgstr "Email-cím-visszaigazolás szükséges" + +#: src/view/com/modals/ChangeHandle.tsx:497 +msgid "Verify DNS Record" +msgstr "DNS-rekord ellenőrzése" + +#: src/view/screens/Settings/index.tsx:937 +msgid "Verify email" +msgstr "Email-cím visszaigazolása" + +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "Email-cím-visszaigazoló párbeszédablak" + +#: src/view/screens/Settings/index.tsx:962 +msgid "Verify my email" +msgstr "Email-cím visszaigazolása" + +#: src/view/screens/Settings/index.tsx:971 +msgid "Verify My Email" +msgstr "Email-cím visszaigazolása" + +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 +msgid "Verify New Email" +msgstr "Új email-cím visszaigazolása" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 +msgid "Verify now" +msgstr "Visszaigazolás" + +#: src/view/com/modals/ChangeHandle.tsx:498 +msgid "Verify Text File" +msgstr "Szöveges fájl ellenőrzése" + +#: src/components/dialogs/VerifyEmailDialog.tsx:71 +#: src/view/com/modals/VerifyEmail.tsx:111 +msgid "Verify Your Email" +msgstr "Email-cím visszaigazolása" + +#: src/view/screens/Settings/index.tsx:890 +msgid "Version {appVersion} {bundleInfo}" +msgstr "Verziószám: {appVersion} {bundleInfo}" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +msgid "Video" +msgstr "Videó" + +#: src/view/com/composer/state/video.ts:372 +msgid "Video failed to process" +msgstr "A videó feldolgozása meghiúsult" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 +msgid "Video Games" +msgstr "Videojátékok" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 +msgid "Video not found." +msgstr "A videó nem található." + +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 +msgid "Video settings" +msgstr "Videóbeállítások" + +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "A videó feltöltése sikeresen befejeződött" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +msgid "Video: {0}" +msgstr "Videó: {0}" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 +msgid "Videos must be less than 60 seconds long" +msgstr "A videó nem lehet hosszabb 59 másodpercnél" + +#: src/screens/Profile/Header/Shell.tsx:128 +msgid "View {0}'s avatar" +msgstr "{0} profilképének megtekintése" + +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:273 +msgid "View {0}'s profile" +msgstr "{0} profiljának megtekintése" + +#: src/components/dms/MessagesListHeader.tsx:160 +msgid "View {displayName}'s profile" +msgstr "{displayName} profiljának megtekintése" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "@{authorHandle} {displayTag} címkével ellátott bejegyzéseinek megtekintése" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "A(z) {displayTag} címkével ellátott bejegyzések megtekintése" + +#: src/components/ProfileHoverCard/index.web.tsx:433 +msgid "View blocked user's profile" +msgstr "Letiltott felhasználó profiljának megtekintése" + +#: src/view/screens/Settings/ExportCarDialog.tsx:96 +msgid "View blogpost for more details" +msgstr "További részleteket a blogbejegyzésben olvashatsz" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "Hibakeresési bejegyzés megtekintése" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:139 +msgid "View details" +msgstr "Részletek" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:134 +msgid "View details for reporting a copyright violation" +msgstr "A szerzői jogi törvényszegés jelentésének részletei" + +#: src/view/com/posts/FeedSlice.tsx:136 +msgid "View full thread" +msgstr "Teljes válaszlánc megtekintése" + +#: src/components/moderation/LabelsOnMe.tsx:47 +msgid "View information about these labels" +msgstr "További információ a feljegyzésekről" + +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 +msgid "View profile" +msgstr "Profil megtekintése" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 +msgid "View the avatar" +msgstr "Profilkép megtekintése" + +#: src/components/LabelingServiceCard/index.tsx:162 +msgid "View the labeling service provided by @{0}" +msgstr "A(z) {0} által kínált feljegyzési szolgáltatás megtekintése" + +#: src/view/screens/ProfileFeed.tsx:588 +msgid "View users who like this feed" +msgstr "A hírfolyamot kedvelő felhasználók megtekintése" + +#: src/screens/Moderation/index.tsx:275 +msgid "View your blocked accounts" +msgstr "Letiltott felhasználók megtekintése" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 +msgid "View your feeds and explore more" +msgstr "Hírfolyamgyűjtemény megnyitása és további hírfolyamok felfedezése" + +#: src/screens/Moderation/index.tsx:245 +msgid "View your moderation lists" +msgstr "Moderálólisták megtekintése" + +#: src/screens/Moderation/index.tsx:260 +msgid "View your muted accounts" +msgstr "Elnémított fiókok megjelenítése" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Visit Site" +msgstr "Honlap felkeresése" + +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "Figyelm." + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "Figyelmeztetés" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" + +#: src/screens/Hashtag.tsx:218 +msgid "We couldn't find any results for that hashtag." +msgstr "Erre a címkére nincs találat." + +#: src/screens/Messages/Conversation.tsx:110 +msgid "We couldn't load this conversation" +msgstr "Ez a beszélgetés nem található" + +#: src/screens/SignupQueued.tsx:139 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "A fiókod elkészültéig becsült hátralévő idő: {estimatedTime}" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "Küldtünk egy új visszaigazoló emailt a(z) <0>{0} címre." + +#: src/screens/Onboarding/StepFinished.tsx:229 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "Reméljük, jól érzed magad! Ne feledd; a Bluesky:" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "Kifogytunk a követett felhasználók bejegyzéseiből. A további tartalom a(z) <0/> hírfolyamból származik." + +#: src/view/com/composer/state/video.ts:431 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra!" + +#: src/components/dialogs/BirthDateSettings.tsx:51 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "A születési dátumod beállításainak betöltése meghiúsult. Próbáld újra!" + +#: src/screens/Moderation/index.tsx:420 +msgid "We were unable to load your configured labelers at this time." +msgstr "A feljegyzőid betöltése meghiúsult." + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma fennáll, kihagyhatod ezt a folyamatot." + +#: src/screens/SignupQueued.tsx:143 +msgid "We will let you know when your account is ready." +msgstr "Majd szólunk, ha a fiókod használatra kész." + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "Ezeket az adatokat az élményed testreszabására fogjuk felhasználni." + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 +msgid "We're having network issues, try again" +msgstr "Hálózati hiba történt. Próbáld újra!" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "Elérhetővé vált egy új témabetűtípus és a betűméret testreszabhatósága." + +#: src/screens/Signup/index.tsx:94 +msgid "We're so excited to have you join us!" +msgstr "Örvendünk, hogy megismerhetünk!" + +#: src/view/screens/ProfileList.tsx:113 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, vedd fel a kapcsolatot a lista szerzőjével: @{handleOrDid}" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld újra!" + +#: src/view/screens/Search/Search.tsx:212 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra egy pár percen belül!" + +#: src/view/com/composer/Composer.tsx:361 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál." + +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "Sajnáljuk, de a keresett oldal nem található." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt a korlátot." + +#: src/screens/Deactivated.tsx:128 +msgid "Welcome back!" +msgstr "Üdv újra!" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "Isten hozott!" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "Milyen érdeklődési köreid vannak?" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:42 +msgid "What do you want to call your starter pack?" +msgstr "Milyen címet adnál a kezdőcsomagodnak?" + +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 +msgid "What's up?" +msgstr "Mi a helyzet?" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 +msgid "Which languages are used in this post?" +msgstr "Milyen nyelvek fordulnak elő ebben a bejegyzésben?" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "Mely nyelveken szeretnél bejegyzéseket látni az algoritmusalapú hírfolyamokban?" + +#: src/components/WhoCanReply.tsx:179 +msgid "Who can interact with this post?" +msgstr "Kapcsolatbalépési információ" + +#: src/components/WhoCanReply.tsx:87 +msgid "Who can reply" +msgstr "Ki válaszolhat?" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:183 +msgid "Whoops!" +msgstr "Hoppá!" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:44 +msgid "Why should this content be reviewed?" +msgstr "Miért kell ezt a tartalmat átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Why should this feed be reviewed?" +msgstr "Miért kell ezt a hírfolyamot átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Why should this list be reviewed?" +msgstr "Miért kell ezt a listát átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:63 +msgid "Why should this message be reviewed?" +msgstr "Miért kell ezt az üzenetet átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Why should this post be reviewed?" +msgstr "Miért kell ezt a bejegyzést átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Why should this starter pack be reviewed?" +msgstr "Miért kell ezt a kezdőcsomagot átvizsgálni?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Why should this user be reviewed?" +msgstr "Miért kell ezt a felhasználót átvizsgálni?" + +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 +msgid "Write a message" +msgstr "Üzenet írása" + +#: src/view/com/composer/Composer.tsx:630 +msgid "Write post" +msgstr "Bejegyzés írása" + +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 +msgid "Write your reply" +msgstr "Válasz írása" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 +msgid "Writers" +msgstr "Írók" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "Yes" +msgstr "Igen" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "Igen – deaktiválás" + +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Yes, delete this starter pack" +msgstr "Igen – kezdőcsomag törlése" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +msgid "Yes, detach" +msgstr "Igen – leválasztás" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +msgid "Yes, hide" +msgstr "Igen – elrejtés" + +#: src/screens/Deactivated.tsx:150 +msgid "Yes, reactivate my account" +msgstr "Igen – fiók újraaktiválása" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Tegnap" + +#: src/screens/List/ListHiddenScreen.tsx:140 +msgid "you" +msgstr "Te" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "Te" + +#: src/screens/SignupQueued.tsx:136 +msgid "You are in line." +msgstr "Sorban állsz." + +#: src/view/com/composer/state/video.ts:424 +msgid "You are not allowed to upload videos." +msgstr "Nincs jogosultságod a videófeltöltésre." + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "You are not following anyone." +msgstr "Még senkit sem követsz." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "A megjelenési beállításokat később is módosíthatod." + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "Új egyéni hírfolyamokat is felfedezhetsz." + +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "Ha szeretnéd, átmenetileg deaktiválhatod a fiókod, amit aztán bármikor újraaktiválhatsz." + +#: src/screens/Messages/Settings.tsx:105 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod." + +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +msgid "You can now sign in with your new password." +msgstr "Mostantól bejelentkezhetsz az új jelszóval." + +#: src/screens/Deactivated.tsx:136 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek után a profilod és a bejegyzéseid ismét láthatóak lesznek más felhasználók számára." + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "You do not have any followers." +msgstr "Még nincsenek követőid." + +#: src/screens/Profile/KnownFollowers.tsx:100 +msgid "You don't follow any users who follow @{name}." +msgstr "Egy olyan felhasználót sem követsz, aki követné őt: @{name}." + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "Még egy meghívókóddal sem rendelkezel. Majd küldünk néhányat, ha már hosszabb ideje leszel a Blueskyon." + +#: src/view/screens/SavedFeeds.tsx:144 +msgid "You don't have any pinned feeds." +msgstr "Egy hírfolyamot sem tűztél ki." + +#: src/view/screens/SavedFeeds.tsx:184 +msgid "You don't have any saved feeds." +msgstr "Egy hírfolyamot se mentettél el." + +#: src/view/com/post-thread/PostThread.tsx:214 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "Letiltottad a szerzőt vagy ő tiltott le Téged." + +#: src/components/dms/MessagesListBlockedFooter.tsx:58 +msgid "You have blocked this user" +msgstr "Letiltottad ezt a felhasználót" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "You have blocked this user. You cannot view their content." +msgstr "Letiltottad ezt a felhasználót, ezért nem tekintheted meg a tartalmait." + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "A megadott kód érvénytelen. Minta: XXXXX-XXXXX." + +#: src/lib/moderation/useModerationCauseDescription.ts:114 +msgid "You have hidden this post" +msgstr "Elrejtetted ezt a bejegyzést" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +msgid "You have hidden this post." +msgstr "Elrejtetted ezt a bejegyzést." + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 +msgid "You have muted this account." +msgstr "Elnémítottad ezt a fiókot." + +#: src/lib/moderation/useModerationCauseDescription.ts:91 +msgid "You have muted this user" +msgstr "Elnémítottad ezt a felhasználót" + +#: src/screens/Messages/ChatList.tsx:223 +msgid "You have no conversations yet. Start one!" +msgstr "Még senkivel sem kezdtél el beszélgetni. Hajrá!" + +#: src/view/com/feeds/ProfileFeedgens.tsx:138 +msgid "You have no feeds." +msgstr "A nyilvános hírfolyamgyűjteményed üres." + +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 +msgid "You have no lists." +msgstr "Még nincsenek listáid." + +#: src/view/screens/ModerationBlockedAccounts.tsx:133 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "Még egy fiókot sem tiltottál le. Ha szeretnél egy fiókot letiltani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók letiltása” lehetőséget." + +#: src/view/screens/AppPasswords.tsx:96 +msgid "You have not created any app passwords yet. You can create one by pressing the button below." +msgstr "Jelenleg nem rendelkezel egy alkalmazásjelszóval sem. Az alábbi gombbal létrehozhatsz egyet." + +#: src/view/screens/ModerationMutedAccounts.tsx:132 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elnémítani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók elnémítása” lehetőséget." + +#: src/components/Lists.tsx:52 +msgid "You have reached the end" +msgstr "Elérted a hírfolyam végét" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "Átmenetileg elérted a videófeltöltési korlátot. Próbáld újra később!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 +msgid "You haven't created a starter pack yet!" +msgstr "Még egy kezdőcsomagot sem hoztál létre!" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "Még egy szót vagy címkét sem némítottál el" + +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "You hid this reply." +msgstr "Elrejtetted ezt a választ." + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "A nem saját magad által alkalmazott feljegyzéseket lehetőséged van fellebbezni, ha úgy gondolod, hogy tévedésből kerültek fel." + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "Lehetőséged van a fellebbezésre, ha úgy gondolod, hogy a feljegyzéseket tévedésből alkalmazták." + +#: src/screens/StarterPack/Wizard/State.tsx:79 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" +msgstr "A kezdőcsomag legfeljebb {STARTER_PACK_MAX_SIZE} profilt tartalmazhat" + +#: src/screens/StarterPack/Wizard/State.tsx:97 +msgid "You may only add up to 3 feeds" +msgstr "Legfeljebb 3 hírfolyamot jelölhetsz ki." + +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "Legfeljebb 4 képet csatolhatsz" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 +msgid "You must be 13 years of age or older to sign up." +msgstr "A regisztrációhoz legalább 13 évesnek kell lenned." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." + +#: src/components/StarterPack/QrCodeDialog.tsx:60 +msgid "You must grant access to your photo library to save a QR code" +msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez" + +#: src/components/StarterPack/ShareDialog.tsx:69 +msgid "You must grant access to your photo library to save the image." +msgstr "A kép mentéséhez először hozzáférést kell biztosítanod a fényképeidhez." + +#: src/components/ReportDialog/SubmitView.tsx:210 +msgid "You must select at least one labeler for a report" +msgstr "A jelentéshez ki kell választanod legalább egy címzettet" + +#: src/screens/Deactivated.tsx:131 +msgid "You previously deactivated @{0}." +msgstr "Korábban deaktiváltad a(z) @{0} fiókot." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +msgid "You will no longer receive notifications for this thread" +msgstr "Mostantól nem fogsz értesítéseket kapni erről a válaszláncról" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +msgid "You will now receive notifications for this thread" +msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról" + +#: src/screens/Login/SetNewPasswordForm.tsx:98 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "Kapni fogsz egy „helyreállítási kódot” tartalmazó emailt. Ezt a kódot itt kell megadnod a jelszó megváltoztatásához." + +#: src/screens/Messages/components/ChatListItem.tsx:124 +msgid "You: {0}" +msgstr "Te: {0}" + +#: src/screens/Messages/components/ChatListItem.tsx:153 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "Te: {defaultEmbeddedContentMessage}" + +#: src/screens/Messages/components/ChatListItem.tsx:146 +msgid "You: {short}" +msgstr "Te: {short}" + +#: src/screens/Signup/index.tsx:107 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől fogva követni fogod." + +#: src/screens/Signup/index.tsx:112 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "A fiókod elkészültével követni fogod a javasolt felhasználókat!" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 +msgid "You'll follow these people and {0} others" +msgstr "Őket és {0} további felhasználót fogsz követni" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "You'll follow these people right away" +msgstr "Ezeket a személyeket rögtön követni fogod" + +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "Kapni fogsz egy emailt a(z) <0>{0} címre, hogy ellenőrizhessük a kiléted." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "Ezek a hírfolyamok naprakészen tartanak." + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 +msgid "You're in line" +msgstr "Sorban állsz" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." +msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A fiókod deaktiválásához a valódi jelszavaddal kell bejelentkezned." + +#: src/screens/Onboarding/StepFinished.tsx:226 +msgid "You're ready to go!" +msgstr "Elkészültünk!" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "You've chosen to hide a word or tag within this post." +msgstr "Elrejtettél egy szót vagy címkét ebben a bejegyzésben." + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!" + +#: src/view/com/composer/state/video.ts:435 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)" + +#: src/view/com/composer/state/video.ts:439 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)" + +#: src/screens/Signup/index.tsx:140 +msgid "Your account" +msgstr "Saját fiók" + +#: src/view/com/modals/DeleteAccount.tsx:88 +msgid "Your account has been deleted" +msgstr "Törölted a fiókodat" + +#: src/view/com/composer/state/video.ts:443 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később!" + +#: src/view/screens/Settings/ExportCarDialog.tsx:64 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "A fiókod adattára, ami az összes nyilvános adatodat tartalmazza, letölthető egy „CAR” fájlként. Ez a fájl nem tartalmazza a beágyazott médiatartalmakat (pl.: képeket), sem pedig a személyes adataidat, amit külön kell lekérned." + +#: src/screens/Signup/StepInfo/index.tsx:211 +msgid "Your birth date" +msgstr "Születési dátum" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbáld meg egy másik böngészőben!" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "Megfosztottak a csevegési jogosultságodtól" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "Ezt most elmentjük, de a beállításokban később bármikor megváltoztathatod." + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:108 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "Az email-címed érvénytelen." + +#: src/view/com/modals/ChangeEmail.tsx:120 +msgid "Your email has been updated but not verified. As a next step, please verify your new email." +msgstr "Frissítetted az email-címed, viszont még nem igazoltad vissza. A következő lépésben tedd ezt meg!" + +#: src/view/com/modals/VerifyEmail.tsx:122 +msgid "Your email has not yet been verified. This is an important security step which we recommend." +msgstr "Az email-címed még nincs visszaigazolva. Ez egy fontos biztonsági lépés, amelynek javasoljuk az elvégzését." + +#: src/state/shell/progress-guide.tsx:156 +msgid "Your first like!" +msgstr "Az első kedvelésed!" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd, mi történik!" + +#: src/screens/Signup/StepHandle.tsx:125 +msgid "Your full handle will be" +msgstr "A teljes felhasználóneved:" + +#: src/view/com/modals/ChangeHandle.tsx:258 +msgid "Your full handle will be <0>@{0}" +msgstr "A teljes felhasználóneved: <0>@{0}" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "Elnémított szavak" + +#: src/view/com/modals/ChangePassword.tsx:158 +msgid "Your password has been changed successfully!" +msgstr "Sikeresen megváltoztattad a felhasználóneved!" + +#: src/view/com/composer/Composer.tsx:405 +msgid "Your post has been published" +msgstr "Közzétetted a bejegyzést" + +#: src/screens/Onboarding/StepFinished.tsx:241 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "A bejegyzéseid, kedveléseid és letiltásaid nyilvánosak. Az elnémítások nem." + +#: src/view/screens/Settings/index.tsx:119 +msgid "Your profile" +msgstr "Saját profil" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be!" + +#: src/view/com/composer/Composer.tsx:404 +msgid "Your reply has been published" +msgstr "Közzétetted a választ" + +#: src/components/dms/ReportDialog.tsx:157 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "Ez a jelentés a Bluesky moderálási szolgáltatásának lesz elküldve" + +#: src/screens/Signup/index.tsx:142 +msgid "Your user handle" +msgstr "Saját felhasználónév" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 806c271fc8..7be5c84845 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -8,9 +8,9 @@ msgstr "" "Language: id\n" "Project-Id-Version: bluesky-id\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-08-04 13:05\n" +"PO-Revision-Date: 2024-10-19 14:06\n" "Last-Translator: \n" -"Language-Team: Indonesian\n" +"Language-Team: GID0317, danninov, thinkbyte1024, mary-ext, kodebanget, oops-wtf, suvpen, Callmark, Yukiriiiin, rainzalic, hFathurohman, thebricksplanet, androro, mhmmdiqbal19, unlucky.naas, naturbrilian, joovzxaa, cheekieys, sicolox, aplacelikeutopia\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Crowdin-Project: bluesky-id\n" "X-Crowdin-Project-ID: 648428\n" @@ -18,7 +18,7 @@ msgstr "" "X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" "X-Crowdin-File-ID: 12\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(berisi konten yang disisipkan)" @@ -27,17 +27,17 @@ msgid "(no email)" msgstr "(tidak ada email)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {{formattedCount} lainnya}}" #: src/lib/hooks/useTimeAgo.ts:156 msgid "{0, plural, one {# day} other {# days}}" -msgstr "" +msgstr "{0, plural, other {# hari}}" #: src/lib/hooks/useTimeAgo.ts:146 msgid "{0, plural, one {# hour} other {# hours}}" -msgstr "" +msgstr "{0, plural, other {# jam}}" #: src/components/moderation/LabelsOnMe.tsx:55 #~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" @@ -57,19 +57,19 @@ msgstr "{0, plural, other {# label telah diterapkan pada konten ini}}" #: src/lib/hooks/useTimeAgo.ts:136 msgid "{0, plural, one {# minute} other {# minutes}}" -msgstr "" +msgstr "{0, plural, other {# menit}}" #: src/lib/hooks/useTimeAgo.ts:167 msgid "{0, plural, one {# month} other {# months}}" -msgstr "" +msgstr "{0, plural, other {# bulan}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {# postingan ulang}}" #: src/lib/hooks/useTimeAgo.ts:126 msgid "{0, plural, one {# second} other {# seconds}}" -msgstr "" +msgstr "{0, plural, other {# detik}}" #: src/components/KnownFollowers.tsx:179 #~ msgid "{0, plural, one {and # other} other {and # others}}" @@ -85,15 +85,15 @@ msgstr "{0, plural, other {pengikut}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {mengikuti}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {Suka (# menyukai)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {suka}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {Disukai oleh # pengguna}}" @@ -102,41 +102,41 @@ msgstr "{0, plural, other {Disukai oleh # pengguna}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {postingan}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" -msgstr "" +msgstr "{0, plural, other {kutipan}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {Balas (# balasan)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {posting ulang}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {Batal suka (# menyukai)}}" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 msgid "{0} <0>in <1>tags" -msgstr "" +msgstr "{0} <0>dalam <1>tagar" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" -msgstr "" +msgstr "{0} <0>dalam <1>teks & tagar" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} telah bergabung minggu ini" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" -msgstr "" +msgstr "{0} dari {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} orang telah menggunakan paket pemula ini!" @@ -144,7 +144,7 @@ msgstr "{0} orang telah menggunakan paket pemula ini!" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Avatar {0}" @@ -159,54 +159,54 @@ msgstr "Paket pemula {0}" #. How many days have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:158 msgid "{0}d" -msgstr "" +msgstr "{0}hr" #. How many hours have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:148 msgid "{0}h" -msgstr "" +msgstr "{0}j" #. How many minutes have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:138 msgid "{0}m" -msgstr "" +msgstr "{0}m" #. How many months have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0}mo" -msgstr "" +msgstr "{0}bln" #. How many seconds have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:128 msgid "{0}s" -msgstr "" +msgstr "{0}d" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, other {Disukai oleh # pengguna}}" #: src/lib/hooks/useTimeAgo.ts:69 #~ msgid "{diff, plural, one {day} other {days}}" -#~ msgstr "{diff, plural, other {hari}}" +#~ msgstr "" #: src/lib/hooks/useTimeAgo.ts:64 #~ msgid "{diff, plural, one {hour} other {hours}}" -#~ msgstr "{diff, plural, other {jam}}" +#~ msgstr "" #: src/lib/hooks/useTimeAgo.ts:59 #~ msgid "{diff, plural, one {minute} other {minutes}}" -#~ msgstr "{diff, plural, other {menit}}" +#~ msgstr "" #: src/lib/hooks/useTimeAgo.ts:75 #~ msgid "{diff, plural, one {month} other {months}}" -#~ msgstr "{diff, plural, other {bulan}}" +#~ msgstr "" #: src/lib/hooks/useTimeAgo.ts:54 #~ msgid "{diffSeconds, plural, one {second} other {seconds}}" -#~ msgstr "{diffSeconds, plural, other {detik}}" +#~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Paket Pemula {displayName}" @@ -218,22 +218,22 @@ msgstr "{estimatedTimeHrs, plural, other {jam}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {menit}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} mengikuti" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} tidak dapat dikirimi pesan" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} belum dibaca" @@ -247,22 +247,22 @@ msgstr "{profileName} bergabung di Bluesky menggunakan paket pemula {0} yang lal #: src/view/screens/PreferencesFollowingFeed.tsx:67 #~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" -#~ msgstr "{value, plural, =0 {Tampilkan semua balasan} other {Tampilkan balasan dengan minimal # suka}}" +#~ msgstr "" #: src/components/WhoCanReply.tsx:296 #~ msgid "<0/> members" -#~ msgstr "anggota <0/>" +#~ msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:485 #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" @@ -271,15 +271,15 @@ msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah diserta #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {pengikut}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {mengikuti}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} dan<1> <2>{1} sudah disertakan dalam paket pemula Anda" @@ -287,13 +287,17 @@ msgstr "<0>{0} dan<1> <2>{1} sudah disertakan dalam paket pemula And #~ msgid "<0>{0} following" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} sudah disertakan dalam paket pemula Anda" #: src/components/WhoCanReply.tsx:274 msgid "<0>{0} members" -msgstr "" +msgstr "Anggota <0>{0}" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} pukul {time}" #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" @@ -313,43 +317,43 @@ msgstr "" #~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Tidak bisa diterapkan. Peringatan ini hanya tersedia untuk postingan dengan lampiran media." +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Tidak bisa diterapkan. Peringatan ini hanya tersedia untuk postingan dengan lampiran media." #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Anda dan<1> <2>{0} sudah disertakan dalam paket pemula" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Panggilan Tidak Valid" #: src/components/dialogs/MutedWords.tsx:193 msgid "24 hours" -msgstr "" +msgstr "24 jam" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Konfirmasi 2FA" #: src/components/dialogs/MutedWords.tsx:232 msgid "30 days" -msgstr "" +msgstr "30 hari" #: src/components/dialogs/MutedWords.tsx:217 msgid "7 days" -msgstr "" +msgstr "7 hari" #: src/tours/Tooltip.tsx:70 #~ msgid "A help tooltip" -#~ msgstr "Infotip bantuan" +#~ msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Akses tautan navigasi dan pengaturan" @@ -357,17 +361,16 @@ msgstr "Akses tautan navigasi dan pengaturan" msgid "Access profile and other navigation links" msgstr "Akses profil dan tautan navigasi lain" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Pengaturan aksesibilitas" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" @@ -375,21 +378,21 @@ msgstr "Pengaturan Aksesibilitas" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Akun" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Akun diblokir" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Akun diikuti" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Akun dibisukan" @@ -410,27 +413,27 @@ msgstr "Pengaturan akun" msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Akun batal diblokir" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Akun batal diikuti" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Akun batal dibisukan" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Tambah" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Tambah {0} lagi untuk melanjutkan" @@ -438,27 +441,29 @@ msgstr "Tambah {0} lagi untuk melanjutkan" msgid "Add {displayName} to starter pack" msgstr "Tambahkan {displayName} dalam paket pemula" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Tambahkan peringatan konten" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Tambahkan pengguna ke daftar ini" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Tambahkan akun" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Tambahkan teks alt" @@ -466,13 +471,13 @@ msgstr "Tambahkan teks alt" #~ msgid "Add ALT text" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" -msgstr "" +msgstr "Tambahkan teks alt (opsional)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Tambahkan Sandi Aplikasi" @@ -500,7 +505,7 @@ msgstr "Tambah kata dan tagar untuk dibisukan" msgid "Add recommended feeds" msgstr "Tambahkan feed rekomendasi" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Tambahkan beberapa feed ke dalam paket pemula Anda!" @@ -508,16 +513,16 @@ msgstr "Tambahkan beberapa feed ke dalam paket pemula Anda!" msgid "Add the default feed of only people you follow" msgstr "Tambahkan feed bawaan hanya untuk orang yang Anda ikuti" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Tambahkan catatan DNS berikut ke domain Anda:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Tambahkan feed ini ke daftar feed Anda" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Tambahkan ke Daftar" @@ -530,7 +535,7 @@ msgstr "Tambahkan ke daftar feed saya" #~ msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Ditambahkan ke daftar" @@ -540,24 +545,30 @@ msgstr "Ditambahkan ke daftar feed saya" #: src/view/screens/PreferencesFollowingFeed.tsx:171 #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." -#~ msgstr "Sesuaikan jumlah suka yang harus dimiliki oleh balasan agar ditampilkan di feed Anda." +#~ msgstr "" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Konten Dewasa" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Konten dewasa dinonaktifkan." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Lanjutan" @@ -565,11 +576,11 @@ msgstr "Lanjutan" msgid "Algorithm training complete!" msgstr "Pelatihan algoritma selesai!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Semua akun telah diikuti!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." @@ -583,53 +594,58 @@ msgstr "Izinkan akses ke pesan langsung Anda" #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Izinkan pesan baru dari" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" -msgstr "" +msgstr "Izinkan balasan dari:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" -msgstr "" +msgstr "Mengizinkan akses ke pesan langsung" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Sudah memiliki kode?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Sudah masuk sebagai @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Teks alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Teks Alt" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "Teks alt akan dipangkas. Batas: {0} karakter." + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang dapat Anda masukkan di bawah ini." @@ -637,63 +653,67 @@ msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang d msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Email telah dikirim ke alamat Anda sebelumnya, {0}. Email tersebut berisi kode konfirmasi yang dapat Anda masukkan di bawah ini." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "Email telah dikirim! Silakan masukkan kode konfirmasi yang tercantum dalam email tersebut di bawah ini." + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" -msgstr "" +msgstr "Telah terjadi kesalahan" #: src/components/dialogs/GifSelect.tsx:252 #~ msgid "An error occured" -#~ msgstr "Terjadi kesalahan" +#~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" -msgstr "" +msgstr "Terjadi kesalahan" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." -msgstr "" +msgstr "Terjadi kesalahan saat mengompresi video." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 msgid "An error occurred while loading the video. Please try again later." -msgstr "" +msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi nanti." #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 msgid "An error occurred while loading the video. Please try again." -msgstr "" +msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Terjadi kesalahan saat menyimpan kode QR!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" -msgstr "" +msgstr "Terjadi kesalahan saat memilih video" #: src/components/dms/MessageMenu.tsx:134 #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Terjadi kesalahan saat mencoba mengikuti semua" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." -msgstr "" +msgstr "Terjadi kesalahan saat mengunggah video." #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -703,40 +723,40 @@ msgstr "Masalah lain yang tidak termasuk dalam pilihan" msgid "An issue occurred starting the chat" msgstr "Terjadi masalah saat memulai obrolan" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Terjadi masalah saat mencoba membuka obrolan" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Terjadi masalah, silakan coba lagi." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "terjadi kesalahan yang tidak diketahui" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" -msgstr "" +msgstr "pelabel tak dikenal" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "dan" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Hewan" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "Animasi GIF" @@ -744,47 +764,52 @@ msgstr "Animasi GIF" msgid "Anti-Social Behavior" msgstr "Perilaku Anti-Sosial" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 -msgid "Anybody can interact" -msgstr "" +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Semua bahasa" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "Siapa saja dapat berinteraksi" + +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Bahasa Aplikasi" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Kata sandi aplikasi dihapus" #: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." -msgstr "Nama Kata Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, tanda hubung, dan garis bawah." +msgstr "Nama Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, tanda hubung, dan garis bawah." #: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." -msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter." +msgstr "Nama Sandi Aplikasi harus terdiri dari minimal 4 karakter." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Pengaturan kata sandi aplikasi" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Ajukan Banding" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Banding label \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Banding diajukan" @@ -792,25 +817,25 @@ msgstr "Banding diajukan" #~ msgid "Appeal submitted." #~ msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Ajukan banding atas keputusan ini" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Tampilan" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" -msgstr "" +msgstr "Pengaturan tampilan" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" -msgstr "" +msgstr "Pengaturan Tampilan" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 @@ -821,9 +846,9 @@ msgstr "Tambahkan feed bawaan yang direkomendasikan" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" -msgstr "Apakah Anda yakin ingin menghapus sandi aplikasi \"{name}\"?" +msgstr "Anda yakin ingin menghapus sandi aplikasi \"{name}\"?" #: src/components/dms/MessageMenu.tsx:123 #~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." @@ -833,9 +858,13 @@ msgstr "Apakah Anda yakin ingin menghapus sandi aplikasi \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" -msgstr "Apakah Anda yakin ingin menghapus paket pemula ini?" +msgstr "Anda yakin ingin menghapus paket pemula ini?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." @@ -847,13 +876,13 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk A #: src/view/com/feeds/FeedSourceCard.tsx:313 msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" +msgstr "Anda yakin ingin menghapus {0} dari daftar feed Anda?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" -msgstr "Apakah Anda yakin ingin menghapus ini dari daftar feed Anda?" +msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin ingin membuang draf ini?" @@ -866,11 +895,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Apakah Anda menulis dalam <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Seni" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." @@ -879,22 +908,22 @@ msgid "At least 3 characters" msgstr "Minimal 3 karakter" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Kembali" @@ -902,20 +931,20 @@ msgstr "Kembali" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" -msgstr "Dasar" +msgstr "Umum" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Tanggal lahir" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Tanggal lahir:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Blokir" @@ -924,76 +953,80 @@ msgstr "Blokir" msgid "Block account" msgstr "Blokir akun" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Blokir Akun" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Blokir Akun?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Blokir akun" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Blokir daftar" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Blokir akun-akun ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Diblokir" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" -msgstr "Akun yang diblokir" +msgstr "Akun yang Diblokir" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." #: src/view/com/post-thread/PostThread.tsx:412 msgid "Blocked post." -msgstr "Postingan yang diblokir." +msgstr "Postingan diblokir." #: src/screens/Profile/Sections/Labels.tsx:173 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun Anda." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Memblokir tidak akan mencegah label diterapkan pada akun Anda, tetapi akan menghentikan akun ini untuk membalas atau berinteraksi dengan Anda." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky adalah jaringan terbuka di mana Anda dapat memilih penyedia hosting sendiri. Hosting kustom kini tersedia dalam versi beta untuk pengembang." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky adalah jaringan terbuka yang memungkinkan Anda memilih penyedia hosting. Jika Anda adalah developer, Anda dapat menghosting server Anda sendiri." #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -1015,14 +1048,14 @@ msgstr "Bluesky lebih seru jika bersama teman!" #~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat." @@ -1035,13 +1068,13 @@ msgid "Blur images and filter from feeds" msgstr "Buramkan gambar dan saring dari feed" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Buku" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1068,7 +1101,7 @@ msgstr "Jelajahi saran lainnya pada halaman Jelajah" msgid "Browse other feeds" msgstr "Telusuri feed lain" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Bisnis" @@ -1080,7 +1113,7 @@ msgstr "oleh —" #~ msgid "by {0}" #~ msgstr "" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Oleh {0}" @@ -1093,14 +1126,26 @@ msgid "by <0/>" msgstr "oleh <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Dengan membuat akun berarti Anda setuju dengan {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Kebijakan Privasi." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan dan <1>Kebijakan Privasi." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan." #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "oleh Anda" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Kamera" @@ -1109,33 +1154,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Batal" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1147,19 +1191,19 @@ msgstr "Batal" msgid "Cancel account deletion" msgstr "Batal menghapus akun" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Batal mengubah panggilan" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Batal memotong gambar" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Batal mengedit profil" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Batal mengedit profil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Batal mengutip postingan" @@ -1168,6 +1212,7 @@ msgid "Cancel reactivation and log out" msgstr "Batalkan pengaktifan kembali dan keluar" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Batal mencari" @@ -1175,40 +1220,44 @@ msgstr "Batal mencari" msgid "Cancels opening the linked website" msgstr "Membatalkan membuka situs web tertaut" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" -msgstr "" +msgstr "Tidak dapat berinteraksi dengan pengguna yang diblokir" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" -msgstr "" +msgstr "Subtitel (.vtt)" #: src/view/com/composer/videos/SubtitleDialog.tsx:56 msgid "Captions & alt text" -msgstr "" +msgstr "Subtitel & teks alt" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "Ubah alamat email" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Ubah panggilan" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Ubah Panggilan" @@ -1216,12 +1265,12 @@ msgstr "Ubah Panggilan" msgid "Change my email" msgstr "Ubah email saya" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Ubah kata sandi" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Ubah Kata Sandi" @@ -1233,9 +1282,10 @@ msgstr "Ubah bahasa postingan menjadi {0}" msgid "Change Your Email" msgstr "Ubah Email Anda" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Obrolan" @@ -1245,14 +1295,14 @@ msgstr "Obrolan dibisukan" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Pengaturan obrolan" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Pengaturan Obrolan" @@ -1277,7 +1327,7 @@ msgstr "Periksa status saya" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Periksa email Anda untuk mendapatkan kode login dan masukkan di sini." @@ -1291,29 +1341,33 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw #: src/screens/Onboarding/StepInterests/index.tsx:191 #~ msgid "Choose 3 or more:" -#~ msgstr "Pilih 3 atau lebih:" +#~ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:326 #~ msgid "Choose at least {0} more" -#~ msgstr "Pilih setidaknya {0} lagi" +#~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Pilih Feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Pilihkan untuk saya" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Pilih Pengguna" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Pilih Layanan" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Pilih algoritma yang akan digunakan untuk feed kustom Anda." @@ -1329,46 +1383,45 @@ msgstr "Pilih warna ini sebagai avatar Anda" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 #~ msgid "Choose who can reply" -#~ msgstr "Pilih siapa yang dapat membalas" +#~ msgstr "" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 #~ msgid "Choose your main feeds" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Pilih kata sandi Anda" #: src/view/screens/Settings/index.tsx:912 #~ msgid "Clear all legacy storage data" -#~ msgstr "Hapus semua data penyimpanan lama" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:915 #~ msgid "Clear all legacy storage data (restart after this)" -#~ msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)" +#~ msgstr "" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Hapus semua data penyimpanan" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Hapus kueri pencarian" #: src/view/screens/Settings/index.tsx:913 #~ msgid "Clears all legacy storage data" -#~ msgstr "Bersihkan semua penyimpanan data lama" +#~ msgstr "" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Hapus semua data penyimpanan" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "klik di sini" @@ -1392,15 +1445,15 @@ msgstr "Klik di sini untuk membuka menu tagar dari {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 -msgid "Click to disable quote posts of this post." -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 -msgid "Click to enable quote posts of this post." -msgstr "" +msgid "Click to disable quote posts of this post." +msgstr "Klik untuk menonaktifkan kutipan pada postingan ini." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "Klik untuk mengaktifkan kutipan pada postingan ini." + +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Ketuk untuk mengirim ulang pesan yang gagal" @@ -1412,27 +1465,25 @@ msgstr "Iklim" msgid "Clip 🐴 clop 🐴" msgstr "Keletak 🐴 keletuk 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Tutup" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Tutup dialog aktif" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Tutup peringatan" @@ -1440,12 +1491,11 @@ msgstr "Tutup peringatan" msgid "Close bottom drawer" msgstr "Tutup kotak bawah" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Tutup dialog" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Tutup dialog GIF" @@ -1458,73 +1508,81 @@ msgid "Close image viewer" msgstr "Tutup penampil gambar" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Tutup modal" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Tutup footer navigasi" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Tutup dialog ini" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Menutup bilah navigasi bawah" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Menutup penyusun postingan dan membuang draf" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Menutup penyusun postingan dan membuang draf" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" -msgstr "Menutup penampil untuk gambar header" +msgstr "Menutup penampil gambar header" #: src/view/com/notifications/FeedItem.tsx:265 msgid "Collapse list of users" msgstr "Ciutkan daftar pengguna" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Mode warna" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Komedi" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Komik" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Panduan Komunitas" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Selesaikan tantangan" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Buat postingan dengan panjang hingga {MAX_GRAPHEME_LENGTH} karakter" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Tulis balasan" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1537,17 +1595,19 @@ msgstr "Tulis balasan" msgid "Configure content filtering setting for category: {name}" msgstr "Konfigurasikan pengaturan penyaringan konten untuk kategori: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Diatur pada <0>pengaturan moderasi." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Konfirmasi" @@ -1564,30 +1624,35 @@ msgstr "Konfirmasi pengaturan bahasa konten" msgid "Confirm delete account" msgstr "Konfirmasi hapus akun" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Konfirmasi usia Anda:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Konfirmasi tanggal lahir Anda" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Kode konfirmasi" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "Kode Konfirmasi" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Menghubungkan..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Hubungi pusat dukungan" @@ -1599,14 +1664,14 @@ msgstr "Hubungi pusat dukungan" msgid "Content Blocked" msgstr "Konten Diblokir" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Penyaring konten" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" -msgstr "Bahasa konten" +msgstr "Bahasa Konten" #: src/components/moderation/ModerationDetailsDialog.tsx:81 #: src/lib/moderation/useModerationCauseDescription.ts:80 @@ -1614,13 +1679,13 @@ msgid "Content Not Available" msgstr "Konten Tidak Tersedia" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Peringatan Konten" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Peringatan konten" @@ -1628,12 +1693,12 @@ msgstr "Peringatan konten" msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Lanjutkan" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Lanjutkan sebagai {0} (sudah masuk)" @@ -1641,9 +1706,9 @@ msgstr "Lanjutkan sebagai {0} (sudah masuk)" msgid "Continue thread..." msgstr "Lanjutkan utas..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Lanjutkan ke langkah berikutnya" @@ -1655,7 +1720,7 @@ msgstr "Lanjutkan ke langkah berikutnya" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Percakapan dihapus" @@ -1668,20 +1733,21 @@ msgstr "Memasak" msgid "Copied" msgstr "Disalin" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" -msgstr "Menyalin versi build ke papan klip" +msgstr "Versi build disalin ke papan klip" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Tersalin!" @@ -1689,17 +1755,17 @@ msgstr "Tersalin!" msgid "Copies app password" msgstr "Menyalin kata sandi aplikasi" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Salin" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Salin {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Salin kode" @@ -1711,12 +1777,12 @@ msgstr "Salin tautan" msgid "Copy Link" msgstr "Salin Tautan" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Salin tautan daftar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -1725,33 +1791,33 @@ msgstr "Salin tautan postingan" msgid "Copy message text" msgstr "Salin teks pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Salin teks postingan" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Salin kode QR" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" #: src/view/com/composer/videos/state.ts:31 #~ msgid "Could not compress video" -#~ msgstr "Tidak dapat mengompresi video" +#~ msgstr "" #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Tidak dapat memuat daftar" @@ -1765,40 +1831,45 @@ msgstr "Tidak dapat membisukan obrolan" #: src/view/com/composer/videos/VideoPreview.web.tsx:56 msgid "Could not process your video" -msgstr "" +msgstr "Tidak dapat memproses video" #: src/components/dms/ConvoMenu.tsx:68 #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Buat" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Buat akun baru" +#~ msgid "Create a new account" +#~ msgstr "" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Buat kode QR untuk paket pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Buat paket pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Buatkan paket pemula untuk saya" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "Buat akun" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Buat Akun" @@ -1807,11 +1878,11 @@ msgstr "Buat Akun" msgid "Create an account" msgstr "Buat akun" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Buat avatar saja" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Buat paket lain" @@ -1820,7 +1891,7 @@ msgid "Create App Password" msgstr "Buat Kata Sandi Aplikasi" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Buat akun baru" @@ -1832,94 +1903,95 @@ msgstr "Buat akun baru" msgid "Create report for {0}" msgstr "Buat laporan untuk {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" -msgstr "Dibuat {0}" +msgstr "Dibuat pada {0}" #: src/view/com/composer/Composer.tsx:469 #~ msgid "Creates a card with a thumbnail. The card links to {url}" #~ msgstr "" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Budaya" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Kustom" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Domain kustom" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Feed kustom yang dibangun oleh komunitas memberikan pengalaman baru dan membantu Anda menemukan konten yang Anda sukai." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Sesuaikan media dari situs eksternal." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." -msgstr "" +msgstr "Sesuaikan siapa yang dapat berinteraksi dengan postingan ini." -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Gelap" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Mode gelap" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" -msgstr "" +msgstr "Tema gelap" #: src/view/screens/Settings/index.tsx:473 #~ msgid "Dark Theme" -#~ msgstr "Tema Gelap" +#~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Tanggal lahir" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Nonaktifkan akun" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Nonaktifkan akun saya" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Debug Moderasi" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Panel awakutu" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "Standar" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Hapus" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Hapus akun" @@ -1931,16 +2003,16 @@ msgstr "Hapus akun" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Hapus Akun <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Hapus kata sandi aplikasi" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Hapus kata sandi aplikasi?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Hapus catatan deklarasi obrolan" @@ -1948,7 +2020,7 @@ msgstr "Hapus catatan deklarasi obrolan" msgid "Delete for me" msgstr "Hapus untuk saya" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Hapus daftar" @@ -1964,33 +2036,33 @@ msgstr "Hapus pesan untuk saya" msgid "Delete my account" msgstr "Hapus akun saya" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Hapus Akun Saya…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Hapus postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Hapus paket pemula" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Hapus paket pemula?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Hapus daftar ini?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Hapus postingan ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Dihapus" @@ -1998,60 +2070,67 @@ msgstr "Dihapus" msgid "Deleted post." msgstr "Postingan dihapus." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Menghapus catatan deklarasi obrolan" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Deskripsi" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Teks alt deskriptif" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" -msgstr "" +msgstr "Lepaskan kutipan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" -msgstr "" +msgstr "Lepaskan kutipan ini?" #: src/components/WhoCanReply.tsx:175 msgid "Dialog: adjust who can interact with this post" -msgstr "" +msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan ini" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Apakah Anda ingin mengatakan sesuatu?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Redup" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Pesan langsung telah hadir!" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" -#~ msgstr "Nonaktifkan pemutaran otomatis untuk GIF" +#~ msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" -msgstr "" +msgstr "Matikan putar otomatis untuk video dan GIF" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Nonaktifkan Email 2FA" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Matikan respons haptik" @@ -2059,9 +2138,9 @@ msgstr "Matikan respons haptik" #~ msgid "Disable haptics" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" -msgstr "" +msgstr "Matikan subtitel" #: src/view/screens/Settings/index.tsx:697 #~ msgid "Disable vibrations" @@ -2070,28 +2149,33 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Dinonaktifkan" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Buang" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Buang draf?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" #: src/tours/HomeTour.tsx:70 #~ msgid "Discover learns which posts you like as you browse." -#~ msgstr "Discover mempelajari postingan mana yang Anda suka ketika Anda menjelajah." +#~ msgstr "" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 @@ -2102,40 +2186,58 @@ msgstr "Temukan feed kustom baru" msgid "Discover new feeds" msgstr "Temukan feed baru" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Tutup" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" -msgstr "" +msgstr "Abaikan kesalahan" #: src/components/ProgressGuide/List.tsx:40 msgid "Dismiss getting started guide" msgstr "Tutup panduan memulai" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Tampilkan lencana teks alt yang lebih besar" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Nama tampilan" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Nama Tampilan" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Nama Tampilan" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Panel DNS" #: src/components/dialogs/MutedWords.tsx:302 msgid "Do not apply this mute word to users you follow" +msgstr "Jangan bisukan kata ini pada pengguna yang Anda ikuti" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:39 @@ -2146,38 +2248,37 @@ msgstr "Tidak termasuk ketelanjangan." msgid "Doesn't begin or end with a hyphen" msgstr "Tidak diawali atau diakhiri dengan tanda hubung" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Nilai Domain" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Domain terverifikasi!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Selesai" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Selesai" @@ -2186,20 +2287,24 @@ msgstr "Selesai" msgid "Done{extraText}" msgstr "Selesai{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "Ketuk dua kali untuk menutup dialog" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Unduh Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Unduh berkas CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Lepaskan untuk menambahkan gambar" @@ -2209,41 +2314,45 @@ msgstr "Lepaskan untuk menambahkan gambar" #: src/components/dialogs/MutedWords.tsx:153 msgid "Duration:" -msgstr "" +msgstr "Durasi:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "contoh: kresna" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "contoh: Langit Kresna" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "contoh: Langit Kresna" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "contoh: kresna.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "contoh: Seniman, penyayang anjing, dan pembaca setia." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "contoh: Penulis, penyiar radio, dan sejarawan." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Contoh: ketelanjangan artistik." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "contoh: Pemosting Keren" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "contoh: Spammer" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "contoh: Pemosting yang selalu tepat sasaran." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." @@ -2251,73 +2360,76 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Ubah" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Ubah" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Ubah avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Ubah Daftar Feed" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Edit gambar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" -msgstr "" +msgstr "Ubah pengaturan interaksi" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Ubah rincian daftar" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Edit profil saya" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Edit profil saya" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Ubah Daftar Pengguna" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 msgid "Edit post interaction settings" -msgstr "" +msgstr "Ubah pengaturan interaksi postingan" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Edit profil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Edit Profil" @@ -2326,11 +2438,11 @@ msgstr "Edit Profil" #~ msgid "Edit Saved Feeds" #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Ubah paket pemula" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Ubah Daftar Pengguna" @@ -2338,28 +2450,28 @@ msgstr "Ubah Daftar Pengguna" msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Ubah nama tampilan Anda" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Ubah nama tampilan Anda" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Sunting deskripsi profil Anda" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Sunting deskripsi profil Anda" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Pendidikan" #: src/components/dialogs/ThreadgateEditor.tsx:98 #~ msgid "Either choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Pilih \"Semua orang\" atau \"Tak seorang pun\"" +#~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Email" @@ -2368,13 +2480,13 @@ msgstr "Email" msgid "Email 2FA disabled" msgstr "Email 2FA dinonaktifkan" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Alamat email" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" -msgstr "" +msgstr "Email Dikirim Ulang" #: src/view/com/modals/ChangeEmail.tsx:54 #: src/view/com/modals/ChangeEmail.tsx:83 @@ -2389,21 +2501,21 @@ msgstr "Email Diperbarui" msgid "Email verified" msgstr "Email terverifikasi" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" -msgstr "" +msgstr "Email Terverifikasi" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Email:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Sisipkan kode HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Sisipkan postingan" @@ -2411,11 +2523,11 @@ msgstr "Sisipkan postingan" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Aktifkan {0} saja" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Aktifkan konten dewasa" @@ -2428,39 +2540,39 @@ msgstr "Aktifkan konten dewasa" #~ msgid "Enable adult content in your feeds" #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Aktifkan media eksternal" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Aktifkan notifikasi prioritas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" -msgstr "" +msgstr "Nyalakan subtitel" #: src/view/screens/PreferencesFollowingFeed.tsx:145 #~ msgid "Enable this setting to only see replies between people you follow." -#~ msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari pengguna yang Anda ikuti." +#~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Aktifkan hanya sumber ini saja" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Diaktifkan" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Akhir feed" @@ -2470,17 +2582,17 @@ msgstr "Akhir feed" #: src/tours/Tooltip.tsx:159 #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." -#~ msgstr "Akhir jendela tur orientasi. Jangan maju. Mundur untuk melihat opsi lainnya, atau tekan untuk melewati." +#~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." -msgstr "" +msgstr "Pastikan Anda telah memilih bahasa untuk masing-masing berkas subtitel." #: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Masukkan nama untuk Sandi Aplikasi ini" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Masukkan kata sandi" @@ -2489,6 +2601,10 @@ msgstr "Masukkan kata sandi" msgid "Enter a word or tag" msgstr "Masukkan kata atau tagar" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "Masukkan Kode" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Masukkan Kode Konfirmasi" @@ -2497,20 +2613,20 @@ msgstr "Masukkan Kode Konfirmasi" msgid "Enter the code you received to change your password." msgstr "Masukkan kode yang Anda terima untuk mengubah kata sandi Anda." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Masukkan domain yang ingin Anda gunakan" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Masukkan email yang Anda gunakan untuk membuat akun. Kami akan mengirimkan \"kode reset\" untuk mengatur kata sandi baru." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Masukkan tanggal lahir Anda" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Masukkan alamat email Anda" @@ -2522,10 +2638,14 @@ msgstr "Masukkan email baru Anda di atas" msgid "Enter your new email address below." msgstr "Masukkan alamat email baru Anda di bawah ini." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Masukkan nama pengguna dan kata sandi Anda" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Terjadi kesalahan saat menyimpan berkas" @@ -2534,27 +2654,25 @@ msgstr "Terjadi kesalahan saat menyimpan berkas" msgid "Error receiving captcha response." msgstr "Kesalahan saat menerima respons captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Galat:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Semua orang" #: src/components/WhoCanReply.tsx:67 msgid "Everybody can reply" -msgstr "Semua orang dapat membalas" +msgstr "Semua dapat membalas" #: src/components/WhoCanReply.tsx:213 msgid "Everybody can reply to this post." -msgstr "" +msgstr "Semua orang dapat membalas postingan ini." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Semua orang" @@ -2568,25 +2686,25 @@ msgstr "Pesan yang berlebihan atau tidak diinginkan" #: src/components/dialogs/MutedWords.tsx:311 msgid "Exclude users you follow" -msgstr "" +msgstr "Kecualikan pengguna yang Anda ikuti" #: src/components/dialogs/MutedWords.tsx:514 msgid "Excludes users you follow" -msgstr "" +msgstr "Kecuali pengguna yang Anda ikuti" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" -msgstr "" +msgstr "Keluar dari layar penuh" #: src/view/com/modals/DeleteAccount.tsx:293 msgid "Exits account deletion process" msgstr "Keluar dari proses penghapusan akun" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Keluar dari proses perubahan panggilan" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Keluar dari proses pemotongan gambar" @@ -2606,22 +2724,26 @@ msgstr "Bentangkan teks alt" msgid "Expand list of users" msgstr "Bentangkan daftar pengguna" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "Eksperimental: Jika preferensi ini diaktifkan, Anda hanya akan menerima notifikasi balasan dan kutipan dari pengguna yang Anda ikuti. Kami akan menambah lebih banyak kontrol di sini seiring waktu." #: src/components/dialogs/MutedWords.tsx:500 msgid "Expired" -msgstr "" +msgstr "Kedaluwarsa" #: src/components/dialogs/MutedWords.tsx:502 msgid "Expires {0}" -msgstr "" +msgstr "Kedaluwarsa {0}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." @@ -2631,32 +2753,32 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Ekspor data saya" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Ekspor Data Saya" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Media Eksternal" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." -msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"." +msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Pengaturan media eksternal" @@ -2665,12 +2787,12 @@ msgstr "Pengaturan media eksternal" msgid "Failed to create app password." msgstr "Gagal membuat kata sandi aplikasi." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Gagal membuat paket pemula" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi." @@ -2678,11 +2800,11 @@ msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi." msgid "Failed to delete message" msgstr "Gagal menghapus pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Gagal menghapus paket pemula" @@ -2691,12 +2813,11 @@ msgstr "Gagal menghapus paket pemula" msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Gagal memuat GIF" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Gagal memuat pesan terdahulu" @@ -2718,7 +2839,11 @@ msgstr "Gagal memuat daftar feed yang disarankan" msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "Gagal menyematkan postingan" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Gagal menyimpan gambar: {0}" @@ -2726,7 +2851,7 @@ msgstr "Gagal menyimpan gambar: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Gagal menyimpan preferensi notifikasi, silakan coba lagi" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Gagal mengirim" @@ -2734,36 +2859,35 @@ msgstr "Gagal mengirim" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Gagal mengajukan banding, silakan coba lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Gagal membisukan utas, silakan coba lagi" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Gagal memperbarui daftar feed" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" -msgstr "" +msgstr "Gagal menggunggah video" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Feed oleh {0}" @@ -2777,19 +2901,23 @@ msgid "Feed toggle" msgstr "Tombol alih feed" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Feed" @@ -2797,7 +2925,7 @@ msgstr "Feed" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlian pemrograman. <0/> untuk informasi lebih lanjut." @@ -2805,11 +2933,12 @@ msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlia #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Daftar feed diperbarui!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Isi Berkas" @@ -2821,7 +2950,7 @@ msgstr "Berkas berhasil disimpan!" msgid "Filter from feeds" msgstr "Saring dari feed" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Menyelesaikan" @@ -2833,9 +2962,9 @@ msgstr "Temukan akun untuk diikuti" #: src/tours/HomeTour.tsx:88 #~ msgid "Find more feeds and accounts to follow in the Explore page." -#~ msgstr "Temukan feed dan akun lainnya untuk diikuti di halaman Jelajah." +#~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Temukan postingan dan pengguna di Bluesky" @@ -2851,45 +2980,45 @@ msgstr "Temukan postingan dan pengguna di Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Sesuaikan utas diskusi." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Selesai" #: src/tours/Tooltip.tsx:149 #~ msgid "Finish tour and begin using the application" -#~ msgstr "Selesaikan tur dan mulai menggunakan aplikasi" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Kebugaran" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Fleksibel" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Balik secara horizontal" +#~ msgid "Flip horizontal" +#~ msgstr "" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Balik secara vertikal" +#~ msgid "Flip vertically" +#~ msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Ikuti" @@ -2898,12 +3027,12 @@ msgctxt "action" msgid "Follow" msgstr "Ikuti" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Ikuti {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Ikuti {name}" @@ -2911,13 +3040,13 @@ msgstr "Ikuti {name}" msgid "Follow 7 accounts" msgstr "Ikuti 7 akun" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Ikuti Akun" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Ikuti semua" @@ -2925,14 +3054,14 @@ msgstr "Ikuti semua" #~ msgid "Follow All" #~ msgstr "" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Ikuti Balik" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" msgstr "Ikuti Balik" #: src/view/screens/Search/Explore.tsx:334 @@ -2971,13 +3100,13 @@ msgstr "Diikuti oleh <0>{0} dan <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Pengguna yang Anda ikuti" #: src/view/screens/PreferencesFollowingFeed.tsx:152 #~ msgid "Followed users only" -#~ msgstr "Hanya pengguna yang diikuti" +#~ msgstr "" #: src/view/com/notifications/FeedItem.tsx:207 msgid "followed you" @@ -2987,66 +3116,76 @@ msgstr "mengikuti Anda" msgid "followed you back" msgstr "mengikuti Anda kembali" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Pengikut" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Pengikut yang Anda kenal" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Mengikuti" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Mengikuti {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Mengikuti {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" #: src/tours/HomeTour.tsx:59 #~ msgid "Following shows the latest posts from people you follow." -#~ msgstr "Feed Mengikuti menampilkan postingan terbaru dari orang-orang yang Anda ikuti." +#~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Mengikuti Anda" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Mengikuti Anda" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "Font" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "Ukuran font" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Makanan" @@ -3058,20 +3197,25 @@ msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat e msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa kata sandi ini, Anda harus membuat yang baru." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema." + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" -msgstr "" +msgstr "Selamanya" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Lupa Kata Sandi" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Lupa kata sandi?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Lupa?" @@ -3079,34 +3223,34 @@ msgstr "Lupa?" msgid "Frequently Posts Unwanted Content" msgstr "Sering Memposting Konten yang Tidak Diinginkan" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Dari @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Dari <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" -msgstr "" +msgstr "Layar penuh" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galeri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Buatkan paket pemula" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Dapatkan bantuan" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Mulai" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3121,7 +3265,7 @@ msgstr "Memulai" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Beri wajah pada profil Anda" @@ -3129,14 +3273,13 @@ msgstr "Beri wajah pada profil Anda" msgid "Glaring violations of law or terms of service" msgstr "Pelanggaran hukum atau ketentuan layanan secara terang-terangan" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Kembali" @@ -3144,10 +3287,10 @@ msgstr "Kembali" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Kembali" @@ -3155,24 +3298,24 @@ msgstr "Kembali" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Kembali ke langkah sebelumnya" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Kembali ke langkah sebelumnya" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Kembali ke beranda" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Ke Beranda" @@ -3181,11 +3324,11 @@ msgstr "Ke Beranda" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Buka percakapan dengan {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Berikutnya" @@ -3196,13 +3339,15 @@ msgstr "Buka profil" #: src/tours/Tooltip.tsx:138 #~ msgid "Go to the next step of the tour" -#~ msgstr "Lanjut ke langkah tur selanjutnya" +#~ msgstr "" #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Buka profil pengguna" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Media Sensitif" @@ -3210,11 +3355,11 @@ msgstr "Media Sensitif" msgid "Half way there!" msgstr "Setengah jalan lagi!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Panggilan" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Haptik" @@ -3222,24 +3367,24 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Pelecehan, unggah sulut, atau intoleransi" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Tagar" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Tagar: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Mengalami masalah?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Bantuan" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar." @@ -3259,22 +3404,22 @@ msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau msgid "Here is your app password." msgstr "Berikut kata sandi aplikasi Anda." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" -msgstr "" +msgstr "Daftar yang disembunyikan" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" @@ -3282,38 +3427,38 @@ msgstr "Sembunyikan" #: src/view/com/util/forms/PostDropdownBtn.tsx:390 #: src/view/com/util/forms/PostDropdownBtn.tsx:392 #~ msgid "Hide post" -#~ msgstr "Sembunyikan postingan" +#~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" -msgstr "" +msgstr "Sembunyikan postingan untuk saya" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" -msgstr "" +msgstr "Sembunyikan balasan untuk semua" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" -msgstr "" +msgstr "Sembunyikan balasan untuk saya" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Sembunyikan konten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" -msgstr "" +msgstr "Sembunyikan balasan ini?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" @@ -3337,7 +3482,7 @@ msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk keterangan lebih lanjut. Jika masalah berlanjut, mohon hubungi kami." @@ -3345,45 +3490,49 @@ msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk k msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" -msgstr "" +msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Beranda" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Host:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Penyedia hosting" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Bagaimana kami harus membuka tautan ini?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Saya punya kode" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "Saya Mempunyai Kode" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Saya punya kode konfirmasi" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Saya punya domain sendiri" @@ -3397,18 +3546,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Jika tidak ada yang dipilih, cocok untuk semua umur." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Jika tidak ada yang dipilih, cocok untuk semua umur." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Jika Anda belum berusia dewasa menurut hukum negara Anda, orang tua atau wali sah Anda harus membaca Ketentuan ini atas nama Anda." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi." @@ -3424,16 +3573,15 @@ msgstr "Jika ingin mengubah panggilan atau email, lakukanlah sebelum Anda menona msgid "Illegal and Urgent" msgstr "Ilegal dan Urgen" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Gambar" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Teks alt gambar" +#~ msgid "Image alt text" +#~ msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "Gambar telah disimpan ke rol kamera Anda!" @@ -3443,13 +3591,13 @@ msgstr "Impersonasi atau klaim palsu tentang identitas atau afiliasi" #: src/lib/moderation/useReportOptions.ts:68 msgid "Impersonation, misinformation, or false claims" -msgstr "" +msgstr "Impersonasi, misinformasi, atau klaim palsu" #: src/lib/moderation/useReportOptions.ts:91 msgid "Inappropriate messages or explicit links" msgstr "Pesan tidak pantas atau tautan eksplisit" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Masukkan kode yang dikirim ke email Anda untuk pengaturan ulang kata sandi" @@ -3461,7 +3609,7 @@ msgstr "Masukkan kode konfirmasi untuk penghapusan akun" msgid "Input name for app password" msgstr "Masukkan nama untuk kata sandi aplikasi" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Masukkan kata sandi baru" @@ -3469,7 +3617,7 @@ msgstr "Masukkan kata sandi baru" msgid "Input password for account deletion" msgstr "Masukkan kata sandi untuk penghapusan akun" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Masukkan kode yang telah dikirim ke email Anda" @@ -3477,15 +3625,15 @@ msgstr "Masukkan kode yang telah dikirim ke email Anda" #~ msgid "Input the password tied to {identifier}" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Masukkan nama pengguna atau alamat email yang Anda gunakan saat mendaftar" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Masukkan kata sandi Anda" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Masukkan penyedia hosting pilihan Anda" @@ -3493,15 +3641,19 @@ msgstr "Masukkan penyedia hosting pilihan Anda" msgid "Input your user handle" msgstr "Masukkan panggilan Anda" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" -msgstr "" +msgstr "Interaksi dibatasi" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Memperkenalkan Pesan Langsung" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "Memperkenalkan pengaturan font baru" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Kode konfirmasi 2FA tidak valid." @@ -3510,20 +3662,20 @@ msgstr "Kode konfirmasi 2FA tidak valid." msgid "Invalid or unsupported post record" msgstr "Catatan postingan tidak valid atau tidak didukung" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" -msgstr "Username atau kata sandi salah" +msgstr "Nama pengguna atau kata sandi salah" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" -msgstr "" +msgstr "Kode Verifikasi Tidak Valid" #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" msgstr "Undang Teman" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Kode Undangan" @@ -3551,39 +3703,48 @@ msgstr "Undang teman untuk mengikuti feed dan akun favorit Anda" msgid "Invites, but personal" msgstr "Undangan, tetapi personal" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "Sepertinya Anda salah memasukkan alamat email. Apakah Anda yakin ini sudah benar?" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "Sudah benar" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" -msgstr "" +msgstr "ID Kerja: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Karir" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Bergabung di Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Bergabunglah dengan kami" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Jurnalisme" @@ -3591,18 +3752,23 @@ msgstr "Jurnalisme" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Dilabeli oleh {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Dilabeli oleh pemosting." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Label" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dapat digunakan untuk menyembunyikan, memperingatkan, dan mengkategorikan jaringan." @@ -3623,48 +3789,58 @@ msgstr "Label pada konten Anda" msgid "Language selection" msgstr "Pilih bahasa" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Pengaturan bahasa" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Pengaturan Bahasa" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Bahasa" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "Lebih besar" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Terbaru" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Pelajari Lebih Lanjut" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" -msgstr "" +msgstr "Pelajari lebih lanjut tentang Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "Pelajari lebih lanjut mengenai hosting mandiri PDS Anda." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Pelajari lebih lanjut." @@ -3685,7 +3861,7 @@ msgstr "Tinggalkan obrolan" msgid "Leave conversation" msgstr "Tinggalkan percakapan" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Hapus semua tanda untuk menampilkan semua bahasa." @@ -3699,23 +3875,22 @@ msgstr "yang tersisa" #: src/view/screens/Settings/index.tsx:310 #~ msgid "Legacy storage cleared, you need to restart the app now." -#~ msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang." +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Biarkan saya memilih" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Reset kata sandi Anda!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Ayo!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Terang" @@ -3732,21 +3907,21 @@ msgstr "Sukai 10 postingan" msgid "Like 10 posts to train the Discover feed" msgstr "Sukai 10 postingan untuk melatih feed Discover" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" -msgstr "Suka feed ini" +msgstr "Sukai feed ini" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Disukai oleh" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Disukai Oleh" @@ -3772,7 +3947,7 @@ msgstr "menyukai feed kustom Anda" msgid "liked your post" msgstr "menyukai postingan Anda" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Suka" @@ -3780,57 +3955,56 @@ msgstr "Suka" msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Daftar" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Avatar Daftar" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Daftar diblokir" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Daftar oleh {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Daftar dihapus" #: src/screens/List/ListHiddenScreen.tsx:126 msgid "List has been hidden" -msgstr "" +msgstr "Daftar telah disembunyikan" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" -msgstr "" +msgstr "Daftar Disembunyikan" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Daftar dibisukan" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nama Daftar" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Daftar batal diblokir" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Daftar" @@ -3850,22 +4024,22 @@ msgstr "Muat lebih banyak feed yang disarankan" msgid "Load more suggested follows" msgstr "Muat lebih banyak akun untuk diikuti" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Muat notifikasi baru" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Muat postingan baru" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Memuat..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Catatan" @@ -3881,19 +4055,27 @@ msgstr "Masuk atau daftar" msgid "Log out" msgstr "Keluar" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilitas pengguna yang tidak masuk" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Masuk ke akun yang tidak tercantum dalam daftar" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Tekan lama untuk membuka menu tagar #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Seperti XXXXX-XXXXX" @@ -3913,7 +4095,7 @@ msgstr "Sepertinya Anda menghapus semua feed tersemat. Tapi jangan khawatir, And msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sepertinya Anda belum memiliki feed mengikuti. <0>Klik di sini untuk menambahkan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Buatkan untuk saya" @@ -3930,30 +4112,35 @@ msgstr "Kelola kata dan tagar yang dibisukan" msgid "Mark as read" msgstr "Tandai telah dibaca" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Media" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" -msgstr "pengguna yang disebutkan" +msgstr "pengguna yang Anda sebut" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Pengguna yang Anda sebut" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menu" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Kirim pesan ke {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Pesan dihapus" @@ -3961,23 +4148,23 @@ msgstr "Pesan dihapus" msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Kotak input pesan" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Pesan terlalu panjang" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Pengaturan pesan" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Pesan" @@ -3991,66 +4178,66 @@ msgstr "Akun Menyesatkan" #: src/lib/moderation/useReportOptions.ts:67 msgid "Misleading Post" -msgstr "" +msgstr "Postingan yang Menyesatkan" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderasi" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Detail moderasi" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Daftar moderasi {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Daftar moderasi oleh <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Daftar moderasi Anda" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Daftar moderasi dibuat" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Daftar moderasi diperbarui" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Daftar Moderasi" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" -msgstr "" +msgstr "pengaturan moderasi" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Pengaturan moderasi" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Status moderasi" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Alat moderasi" @@ -4059,7 +4246,7 @@ msgstr "Alat moderasi" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Selengkapnya" @@ -4067,29 +4254,30 @@ msgstr "Selengkapnya" msgid "More feeds" msgstr "Feed lainnya" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Opsi lainnya" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Film" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Musik" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 msgid "Mute" -msgstr "" +msgstr "Bisukan" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" msgid "Mute" msgstr "Bisukan" @@ -4097,16 +4285,16 @@ msgstr "Bisukan" msgid "Mute {truncatedTag}" msgstr "Bisukan {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Bisukan Akun" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Bisukan akun" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Bisukan semua postingan {displayTag}" @@ -4117,17 +4305,17 @@ msgstr "Bisukan percakapan" #: src/components/dialogs/MutedWords.tsx:148 #~ msgid "Mute in tags only" -#~ msgstr "Bisukan tagar saja" +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:133 #~ msgid "Mute in text & tags" -#~ msgstr "Bisukan teks & tagar" +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:253 msgid "Mute in:" -msgstr "" +msgstr "Bisukan pada:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Bisukan daftar" @@ -4136,21 +4324,21 @@ msgstr "Bisukan daftar" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Bisukan akun-akun ini?" #: src/components/dialogs/MutedWords.tsx:185 msgid "Mute this word for 24 hours" -msgstr "" +msgstr "Bisukan kata ini selama 24 jam" #: src/components/dialogs/MutedWords.tsx:224 msgid "Mute this word for 30 days" -msgstr "" +msgstr "Bisukan kata ini selama 30 hari" #: src/components/dialogs/MutedWords.tsx:209 msgid "Mute this word for 7 days" -msgstr "" +msgstr "Bisukan kata ini selama 7 hari" #: src/components/dialogs/MutedWords.tsx:258 msgid "Mute this word in post text and tags" @@ -4162,32 +4350,32 @@ msgstr "Bisukan kata ini hanya dalam tagar" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" -msgstr "" +msgstr "Bisukan kata ini sampai Anda membunyikannya" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Bisukan utas" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Bisukan kata & tagar" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 #~ msgid "Muted" -#~ msgstr "Dibisukan" +#~ msgstr "" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifikasi Anda. Pembisuan ini bersifat privat." @@ -4195,41 +4383,41 @@ msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifi msgid "Muted by \"{0}\"" msgstr "Dibisukan oleh \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Kata & tagar yang dibisukan" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, tetapi Anda tidak akan melihat postingan atau notifikasi dari mereka." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Tanggal Lahir Saya" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Daftar Feed Saya" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profil Saya" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Feed tersimpan saya" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Feed Tersimpan Saya" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nama" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Nama harus diisi" @@ -4241,28 +4429,32 @@ msgid "Name or Description Violates Community Standards" msgstr "Nama atau Deskripsi Melanggar Standar Komunitas" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Alam" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "Menuju ke {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Menuju ke paket pemula" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Menuju ke paket pemula" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Menuju ke layar berikutnya" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Menuju ke profil Anda" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "Ingin mengubahnya?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Perlu melaporkan pelanggaran hak cipta?" @@ -4272,34 +4464,38 @@ msgstr "Perlu melaporkan pelanggaran hak cipta?" #~ msgid "Never lose access to your followers and data." #~ msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Tidak usah, buatkan panggilan untuk saya" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Baru" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Baru" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Obrolan baru" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "Pengaturan font baru ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Pesan baru" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Daftar Moderasi Baru" @@ -4311,54 +4507,54 @@ msgstr "Kata sandi baru" msgid "New Password" msgstr "Kata Sandi Baru" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Postingan baru" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" -msgstr "Postingan baru" +msgstr "Postingan Baru" #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialog informasi pengguna baru" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Daftar Pengguna Baru" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Berita" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4373,35 +4569,39 @@ msgstr "Berikutnya" msgid "Next image" msgstr "Gambar berikutnya" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Tidak" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Tidak ada deskripsi" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Tanpa Panel DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain." -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "Belum ada yang menyukai" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -4409,11 +4609,11 @@ msgstr "Tidak lagi mengikuti {0}" msgid "No longer than 253 characters" msgstr "Tidak lebih dari 253 karakter" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Belum ada pesan" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Tidak ada percakapan lain untuk ditampilkan" @@ -4421,27 +4621,33 @@ msgstr "Tidak ada percakapan lain untuk ditampilkan" msgid "No notifications yet!" msgstr "Belum ada notifikasi!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Tidak seorang pun" #: src/components/WhoCanReply.tsx:237 msgid "No one but the author can quote this post." -msgstr "" +msgstr "Tak seorang pun dapat mengutip postingan ini selain pemosting." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Belum ada postingan." -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "Belum ada kutipan" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "Belum ada postingan ulang" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Tidak ada hasil" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Tidak ada hasil" @@ -4449,19 +4655,18 @@ msgstr "Tidak ada hasil" msgid "No results found" msgstr "Tidak ditemukan hasil" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Tidak ditemukan hasil untuk {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"." @@ -4469,25 +4674,34 @@ msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"." #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Tidak terima kasih" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Tak seorang pun" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 #~ msgid "Nobody can reply" -#~ msgstr "Tidak ada yang dapat membalas" +#~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "Belum ada yang mengutip. Mungkin Anda bisa jadi yang pertama!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "Belum ada yang memposting ulang. Mungkin Anda bisa jadi yang pertama!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Tidak ditemukan siapa pun. Coba pencarian lain." @@ -4499,59 +4713,58 @@ msgstr "Ketelanjangan Non-Seksual" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" -msgstr "Tidak ditemukan" +msgstr "Tidak Ditemukan" #: src/view/com/modals/VerifyEmail.tsx:254 #: src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" msgstr "Jangan sekarang" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Catatan tentang berbagi" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Kosong" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Filter notifikasi" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Pengaturan notifikasi" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Pengaturan Notifikasi" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Suara notifikasi" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Suara Notifikasi" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notifikasi" @@ -4559,11 +4772,12 @@ msgstr "Notifikasi" msgid "now" msgstr "sekarang" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Sekarang" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Ketelanjangan" @@ -4579,125 +4793,132 @@ msgstr "Ketelanjangan atau konten dewasa yang tidak dilabeli sedemikian rupa" msgid "Off" msgstr "Matikan" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh tidak!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Oh tidak! Ada yang tidak beres." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" -msgstr "Baiklah" +msgstr "Oke" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Balasan terlama lebih dulu" #: src/components/StarterPack/QrCode.tsx:69 #~ msgid "on" -#~ msgstr "di" +#~ msgstr "" #: src/lib/hooks/useTimeAgo.ts:81 #~ msgid "on {str}" -#~ msgstr "pada {str}" +#~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" -msgstr "" +msgstr "di<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Pengaturan ulang orientasi" #: src/tours/Tooltip.tsx:118 #~ msgid "Onboarding tour step {0}: {1}" -#~ msgstr "Langkah {0} tur orientasi: {1}" +#~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." -msgstr "Satu atau lebih gambar belum ada teks alt." +msgstr "Satu atau beberapa gambar belum memiliki teks alt." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Hanya mendukung berkas .jpg dan .png" #: src/components/WhoCanReply.tsx:245 #~ msgid "Only {0} can reply" -#~ msgstr "Hanya {0} yang dapat membalas" +#~ msgstr "" #: src/components/WhoCanReply.tsx:217 msgid "Only {0} can reply." -msgstr "" +msgstr "Hanya {0} yang dapat membalas." #: src/screens/Signup/StepHandle.tsx:152 msgid "Only contains letters, numbers, and hyphens" msgstr "Hanya berisi huruf, angka, dan tanda hubung" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 -msgid "Only WebVTT (.vtt) files are supported" +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" msgstr "" +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "Hanya mendukung berkas WebVTT (.vtt)" + #: src/components/Lists.tsx:88 msgid "Oops, something went wrong!" msgstr "Ups, ada yang tidak beres!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Terbuka" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Buka menu pintasan profil {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Buka pembuat avatar" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Buka opsi percakapan" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Buka menu opsi feed" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" -msgstr "Buka tautan dengan browser dalam aplikasi" +msgstr "Buka tautan dengan peramban dalam aplikasi" #: src/components/dms/ActionsWrapper.tsx:87 msgid "Open message options" msgstr "Buka opsi pesan" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" @@ -4705,20 +4926,20 @@ msgstr "Buka pengaturan kata dan tagar yang dibisukan" msgid "Open navigation" msgstr "Buka navigasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Buka menu opsi postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Buka menu paket pemula" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Buka halaman buku cerita" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Buka log sistem" @@ -4726,15 +4947,19 @@ msgstr "Buka log sistem" msgid "Opens {numItems} options" msgstr "Membuka opsi {numItems}" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Membuka dialog untuk memilih siapa yang dapat membalas utas ini" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Membuka pengaturan aksesibilitas" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Membuka detail tambahan untuk entri debug" @@ -4742,41 +4967,41 @@ msgstr "Membuka detail tambahan untuk entri debug" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" -msgstr "" +msgstr "Membuka pengaturan tampilan" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Membuka pengaturan obrolan" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Membuka penyusun postingan" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Membuka pengaturan sisipan eksternal" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Membuka alur untuk membuat akun baru Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" @@ -4788,39 +5013,39 @@ msgstr "Membuka dialog pemilihan GIF" msgid "Opens list of invite codes" msgstr "Membuka daftar kode undangan" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Membuka jendela modal untuk konfirmasi penonaktifan akun" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Membuka jendela modal untuk konfirmasi penghapusan akun. Membutuhkan kode email" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Membuka jendela modal untuk mengubah kata sandi Bluesky Anda" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Membuka jendela modal untuk memilih panggilan Bluesky baru" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Membuka jendela modal untuk mengunduh data akun (repositori) Bluesky Anda" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Membuka jendela modal untuk verifikasi email" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Membuka jendela modal untuk menggunakan domain kustom" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Membuka pengaturan moderasi" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Membuka formulir pengaturan ulang kata sandi" @@ -4829,15 +5054,15 @@ msgstr "Membuka formulir pengaturan ulang kata sandi" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Membuka layar berisi semua feed tersimpan" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Membuka pengaturan kata sandi aplikasi" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Membuka preferensi feed Mengikuti" @@ -4849,25 +5074,25 @@ msgstr "Membuka situs web tertaut" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Membuka halaman storybook" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Membuka halaman log sistem" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Membuka preferensi utas" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Membuka profil ini" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Membuka pemilih video" @@ -4875,16 +5100,16 @@ msgstr "Membuka pemilih video" msgid "Option {0} of {numItems}" msgstr "Opsi {0} dari {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Jika perlu, berikan informasi tambahan di bawah ini:" #: src/components/dialogs/MutedWords.tsx:299 msgid "Options:" -msgstr "" +msgstr "Opsi:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Atau gabungkan opsi-opsi berikut:" @@ -4897,36 +5122,37 @@ msgid "Or, log into one of your other accounts." msgstr "Atau, masuk ke salah satu akun Anda yang lain." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Lainnya" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Akun lainnya" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" -msgstr "" +msgstr "Akun lainnya" #: src/view/com/composer/select-language/SelectLangBtn.tsx:92 msgid "Other..." msgstr "Lainnya..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan akses Anda ke obrolan di Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Halaman tidak ditemukan" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Halaman Tidak Ditemukan" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4936,42 +5162,42 @@ msgstr "Kata sandi" msgid "Password Changed" msgstr "Kata Sandi Diubah" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Kata sandi diganti" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Kata sandi diganti!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Jeda" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" -msgstr "" +msgstr "Jeda video" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Profil" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Diperlukan izin untuk mengakses rol kamera." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Izin untuk mengakses rol kamera ditolak. Silakan aktifkan di pengaturan sistem Anda." @@ -4980,42 +5206,51 @@ msgid "Person toggle" msgstr "Tombol alih pengguna" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Hewan Peliharaan" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Fotografi" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Sematkan ke Beranda" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Sematkan ke profil" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "Disematkan" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Feed Tersemat" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Disematkan ke daftar feed Anda" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Putar" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Putar {0}" @@ -5024,21 +5259,21 @@ msgstr "Putar {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Putar atau jeda GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" -msgstr "" +msgstr "Putar video" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Putar Video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Putar GIF" @@ -5047,7 +5282,7 @@ msgid "Please choose your handle." msgstr "Silakan tentukan panggilan Anda." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." @@ -5072,11 +5307,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Silakan masukkan kata, tagar, atau frasa yang valid untuk dibisukan" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Masukkan email Anda." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Silakan masukkan kode undangan Anda." @@ -5084,16 +5319,16 @@ msgstr "Silakan masukkan kode undangan Anda." msgid "Please enter your password as well:" msgstr "Masukkan juga kata sandi Anda:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mohon jelaskan mengapa menurut Anda obrolan Anda dinonaktifkan secara keliru" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Silakan masuk sebagai @{0}" @@ -5102,20 +5337,21 @@ msgid "Please Verify Your Email" msgstr "Mohon Verifikasi Email Anda" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politik" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Posting" @@ -5129,17 +5365,21 @@ msgstr "Postingan" msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Postingan dihapus" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Postingan disembunyikan" @@ -5154,15 +5394,15 @@ msgstr "Disembunyikan oleh Kata yang Dibisukan" msgid "Post Hidden by You" msgstr "Postingan yang Anda sembunyikan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" -msgstr "" +msgstr "Pengaturan interaksi postingan" #: src/view/com/composer/select-language/SelectLangBtn.tsx:88 msgid "Post language" msgstr "Bahasa postingan" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Bahasa Postingan" @@ -5171,22 +5411,30 @@ msgstr "Bahasa Postingan" msgid "Post not found" msgstr "Postingan tidak ditemukan" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Postingan disematkan" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Postingan dilepaskan" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Postingan" #: src/components/dialogs/MutedWords.tsx:89 #~ msgid "Posts can be muted based on their text, their tags, or both." -#~ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar mereka, atau keduanya." +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "" +msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan." #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" @@ -5200,7 +5448,7 @@ msgstr "Tautan yang Mungkin Menyesatkan" msgid "Preference saved" msgstr "Preferensi disimpan" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tekan untuk mencoba menghubungkan kembali" @@ -5210,8 +5458,8 @@ msgstr "Tekan untuk mengganti penyedia hosting" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Tekan untuk mengulangi" @@ -5228,79 +5476,83 @@ msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti" msgid "Previous image" msgstr "Gambar sebelumnya" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Bahasa Utama" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Dahulukan yang Anda Ikuti" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Notifikasi prioritas" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privasi" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Kebijakan Privasi" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Berkirim pesan secara pribadi dengan pengguna lain." +#~ msgid "Privately chat with other users." +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Memproses..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profil diperbarui" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Verifikasi email untuk mengamankan akun Anda." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Publik" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Daftar terbuka yang dapat dibagikan untuk memblokir atau membisukan pengguna secara massal." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Publikasikan postingan" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Publikasikan postingan" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Publikasikan balasan" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Publikasikan balasan" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5316,10 +5568,10 @@ msgstr "Kode QR disimpan ke rol kamera Anda!" #: src/tours/Tooltip.tsx:111 #~ msgid "Quick tip" -#~ msgstr "Tip singkat" +#~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5335,69 +5587,71 @@ msgstr "Kutip postingan" #~ msgid "Quote Post" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" -msgstr "" +msgstr "Kutipan kembali dilampirkan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" -msgstr "" +msgstr "Kutipan berhasil dilepaskan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" -msgstr "" +msgstr "Kutipan dinonaktifkan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" -msgstr "" +msgstr "Kutipan diaktifkan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" -msgstr "" +msgstr "Pengaturan kutipan" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" -msgstr "" +msgstr "Kutipan" #: src/view/com/post-thread/PostThreadItem.tsx:230 msgid "Quotes of this post" -msgstr "" +msgstr "Kutipan postingan ini" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Acak (alias \"Rolet Pemosting\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Rasio" +#~ msgid "Ratios" +#~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" -msgstr "" +msgstr "Kembalikan kutipan" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" msgstr "Aktifkan kembali akun Anda" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" -msgstr "" +msgstr "Baca blog Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" -msgstr "" +msgstr "Baca Kebijakan Privasi Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" -msgstr "" +msgstr "Baca Ketentuan Layanan Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Alasan:" @@ -5405,7 +5659,7 @@ msgstr "Alasan:" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Pencarian Terakhir" @@ -5417,26 +5671,25 @@ msgstr "Pencarian Terakhir" #~ msgid "Recommended Users" #~ msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Hubungkan kembali" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Perbarui notifikasi" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Memuat ulang percakapan" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5450,11 +5703,11 @@ msgstr "Hapus {displayName} dari paket pemula" msgid "Remove account" msgstr "Hapus akun" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" -msgstr "" +msgstr "Hapus sisipan" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Hapus Avatar" @@ -5462,7 +5715,7 @@ msgstr "Hapus Avatar" msgid "Remove Banner" msgstr "Hapus Sampul" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Hapus sisipan" @@ -5478,72 +5731,73 @@ msgstr "Hapus feed?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Hapus dari daftar feed saya?" #: src/view/com/util/AccountDropdownBtn.tsx:53 msgid "Remove from quick access?" -msgstr "" +msgstr "Hapus dari akses cepat?" #: src/screens/List/ListHiddenScreen.tsx:156 msgid "Remove from saved feeds" -msgstr "" +msgstr "Hapus dari feed tersimpan" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Hapus gambar" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 #~ msgid "Remove image preview" -#~ msgstr "Hapus pratinjau gambar" +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:523 msgid "Remove mute word from your list" msgstr "Hapus kata yang dibisukan dari daftar Anda" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Hapus profil" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Hapus profil dari riwayat pencarian" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Hapus kutipan" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Hapus postingan ulang" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" -msgstr "" +msgstr "Hapus berkas subtitel" #: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Hapus feed ini dari feed tersimpan Anda" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" -msgstr "" +msgstr "Dilepaskan oleh pemosting" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" -msgstr "" +msgstr "Dilepaskan oleh Anda" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Dihapus dari daftar" @@ -5554,11 +5808,11 @@ msgstr "Dihapus dari daftar feed saya" #: src/screens/List/ListHiddenScreen.tsx:94 #: src/screens/List/ListHiddenScreen.tsx:160 msgid "Removed from saved feeds" -msgstr "" +msgstr "Dihapus dari feed tersimpan" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Dihapus dari daftar feed Anda" @@ -5566,24 +5820,24 @@ msgstr "Dihapus dari daftar feed Anda" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "Menghapus postingan yang dikutip" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "Menghapus sisipan" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" -#~ msgstr "Menghapus pratinjau gambar" +#~ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Ganti dengan Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Balasan" @@ -5597,38 +5851,38 @@ msgstr "Balasan dinonaktifkan" #: src/components/WhoCanReply.tsx:215 msgid "Replies to this post are disabled." -msgstr "" +msgstr "Balasan ke postingan ini dinonaktifkan." #: src/components/WhoCanReply.tsx:243 #~ msgid "Replies to this thread are disabled" -#~ msgstr "Balasan ke utas ini dinonaktifkan" +#~ msgstr "" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Balas" #: src/view/screens/PreferencesFollowingFeed.tsx:142 #~ msgid "Reply Filters" -#~ msgstr "Penyaring Balasan" +#~ msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:123 msgid "Reply Hidden by Thread Author" -msgstr "" +msgstr "Balasan Disembunyikan oleh Pembuat Utas" #: src/components/moderation/ModerationDetailsDialog.tsx:114 #: src/lib/moderation/useModerationCauseDescription.ts:122 msgid "Reply Hidden by You" -msgstr "" +msgstr "Balasan yang Anda Sembunyikan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" -msgstr "" +msgstr "Pengaturan balasan" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" -msgstr "" +msgstr "Pengaturan balasan dipilih oleh pembuat utas" #: src/view/com/post/Post.tsx:177 #: src/view/com/posts/FeedItem.tsx:285 @@ -5636,35 +5890,35 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Membalas <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Membalas postingan yang diblokir" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" -msgstr "" +msgstr "Membalas postingan" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Membalas Anda" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" -msgstr "" +msgstr "Visibilitas balasan diperbarui" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" -msgstr "" +msgstr "Balasan berhasil disembunyikan" #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 @@ -5677,8 +5931,8 @@ msgstr "Laporkan" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Laporkan Akun" @@ -5688,16 +5942,16 @@ msgstr "Laporkan Akun" msgid "Report conversation" msgstr "Laporkan percakapan" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Dialog laporan" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Laporkan feed" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Laporkan Daftar" @@ -5705,13 +5959,13 @@ msgstr "Laporkan Daftar" msgid "Report message" msgstr "Laporkan pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Laporkan postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Laporkan paket pemula" @@ -5727,8 +5981,8 @@ msgstr "Laporkan feed ini" msgid "Report this list" msgstr "Laporkan daftar ini" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Laporkan pesan ini" @@ -5745,9 +5999,9 @@ msgstr "Laporkan paket pemula ini" msgid "Report this user" msgstr "Laporkan pengguna ini" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Posting ulang" @@ -5757,19 +6011,19 @@ msgstr "Posting ulang" msgid "Repost" msgstr "Posting ulang" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Posting ulang atau kutip postingan" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Diposting Ulang Oleh" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Diposting ulang oleh {0}" @@ -5777,12 +6031,12 @@ msgstr "Diposting ulang oleh {0}" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Diposting ulang oleh <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Diposting ulang oleh Anda" @@ -5792,7 +6046,7 @@ msgstr "memposting ulang postingan Anda" #: src/view/com/post-thread/PostThreadItem.tsx:209 msgid "Reposts of this post" -msgstr "Posting ulang postingan ini" +msgstr "Postingan ulang postingan ini" #: src/view/com/modals/ChangeEmail.tsx:176 #: src/view/com/modals/ChangeEmail.tsx:178 @@ -5804,7 +6058,7 @@ msgstr "Ajukan Perubahan" msgid "Request Code" msgstr "Minta Kode" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Wajibkan teks alt sebelum memposting" @@ -5812,22 +6066,28 @@ msgstr "Wajibkan teks alt sebelum memposting" msgid "Require email code to log into your account" msgstr "Gunakan kode email untuk masuk ke akun Anda" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Diwajibkan untuk provider ini" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Diperlukan di wilayah Anda" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Kirim ulang email" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" -msgstr "" +msgstr "Kirim Ulang Email" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" -msgstr "" +msgstr "Kirim Ulang Email Verifikasi" #: src/view/com/modals/ChangePassword.tsx:186 msgid "Reset code" @@ -5837,29 +6097,29 @@ msgstr "Kode reset" msgid "Reset Code" msgstr "Kode Reset" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Reset status orientasi" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Reset kata sandi" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Reset status preferensi" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Mengatur ulang status orientasi" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Mengatur ulang status preferensi" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Mencoba masuk kembali" @@ -5868,16 +6128,16 @@ msgstr "Mencoba masuk kembali" msgid "Retries the last action, which errored out" msgstr "Mencoba kembali tindakan terakhir yang gagal" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5891,51 +6151,62 @@ msgstr "Ulangi" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Kembali ke beranda" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Simpan" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Simpan" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Simpan teks alt" +#~ msgid "Save alt text" +#~ msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Simpan tanggal lahir" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Simpan Perubahan" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "Simpan perubahan" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Simpan Perubahan" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Simpan perubahan panggilan" @@ -5944,24 +6215,24 @@ msgstr "Simpan perubahan panggilan" msgid "Save image" msgstr "Simpan gambar" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Simpan potongan gambar" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Simpan kode QR" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Feed Tersimpan" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "Disimpan ke rol kamera Anda" @@ -5969,71 +6240,68 @@ msgstr "Disimpan ke rol kamera Anda" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Disimpan ke daftar feed Anda" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Simpan setiap perubahan pada profil Anda" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Simpan setiap perubahan pada profil Anda" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Simpan perubahan panggilan ke {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Menyimpan pengaturan pemangkasan gambar" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Katakan halo!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Sains" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Gulir ke atas" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cari" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Cari \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Cari \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Cari semua postingan dari @{authorHandle} dengan tagar {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Cari semua postingan dari @{authorHandle} dengan tagar {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Cari semua postingan dengan tagar {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Cari semua postingan dengan tagar {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." @@ -6045,18 +6313,16 @@ msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." msgid "Search for users" msgstr "Cari pengguna" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Cari GIF" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Cari profil" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Cari di Tenor" @@ -6072,24 +6338,24 @@ msgstr "Lihat postingan {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Lihat postingan {truncatedTag} dari pengguna" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Lihat postingan <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Lihat postingan <0>{displayTag} dari pengguna ini" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" -msgstr "" +msgstr "Lihat lowongan pekerjaan di Bluesky" #: src/view/com/notifications/FeedItem.tsx:411 #: src/view/com/util/UserAvatar.tsx:402 #~ msgid "See profile" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Lihat panduan ini" @@ -6097,9 +6363,9 @@ msgstr "Lihat panduan ini" #~ msgid "See what's next" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" -msgstr "" +msgstr "Tombol geser" #: src/view/com/util/Selector.tsx:106 msgid "Select {item}" @@ -6109,7 +6375,7 @@ msgstr "Pilih {item}" msgid "Select a color" msgstr "Pilih warna" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Pilih akun" @@ -6121,7 +6387,7 @@ msgstr "Pilih avatar" msgid "Select an emoji" msgstr "Pilih emoji" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Pilih dari akun yang sudah ada" @@ -6129,23 +6395,23 @@ msgstr "Pilih dari akun yang sudah ada" msgid "Select GIF" msgstr "Pilih GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Pilih GIF \"{0}\"" #: src/components/dialogs/MutedWords.tsx:142 msgid "Select how long to mute this word for." -msgstr "" +msgstr "Pilih berapa lama kata ini akan dibisukan." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." -msgstr "" +msgstr "Pilih bahasa..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Pilih bahasa" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Pilih moderator" @@ -6157,19 +6423,19 @@ msgstr "Pilih opsi {i} dari {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" -msgstr "" +msgstr "Pilih berkas subtitel (.vtt)" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" msgstr "Pilih emoji {emojiName} sebagai avatar Anda" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Pilih layanan moderasi untuk melaporkan" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Pilih layanan yang akan menjadi tempat penyimpanan data Anda." @@ -6177,35 +6443,35 @@ msgstr "Pilih layanan yang akan menjadi tempat penyimpanan data Anda." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Pilih video" #: src/components/dialogs/MutedWords.tsx:242 msgid "Select what content this mute word should apply to." -msgstr "" +msgstr "Pilih di konten mana saja kata ini akan dibisukan." #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Pilih bahasa yang ingin Anda sertakan dalam feed langganan Anda. Jika tidak memilih, maka semua bahasa akan ditampilkan." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Pilih bahasa untuk teks bawaan yang akan ditampilkan dalam aplikasi." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Pilih tanggal lahir Anda" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Pilih minat Anda dari opsi di bawah ini" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda." @@ -6221,6 +6487,14 @@ msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda." msgid "Send a neat website!" msgstr "Kirimkan situs web yang bagus!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "Kirim Konfirmasi" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "Kirim email konfirmasi" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6235,37 +6509,37 @@ msgctxt "action" msgid "Send Email" msgstr "Kirim Email" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Kirim masukan" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Kirim pesan" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Kirim postingan ke..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Kirim laporan" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Kirim laporan ke {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Kirim melalui pesan" @@ -6273,91 +6547,90 @@ msgstr "Kirim melalui pesan" msgid "Sends email with confirmation code for account deletion" msgstr "Kirim email dengan kode konfirmasi untuk penghapusan akun" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Alamat server" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Atur tanggal lahir" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Buat kata sandi baru" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." -msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat." +msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan dari feed Anda. Postingan ulang akan tetap terlihat." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." -msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda." +msgstr "Pilih \"Tidak\" untuk menyembunyikan semua postingan ulang dari feed Anda." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk tampilan bersusun. Ini merupakan fitur eksperimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan di feed Mengikuti Anda. Ini merupakan fitur eksperimental." #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" -msgstr "Atur akun Anda" +msgstr "Siapkan akun Anda" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Mengatur nama pengguna Bluesky" #: src/view/screens/Settings/index.tsx:463 #~ msgid "Sets color theme to dark" -#~ msgstr "Mengatur tema menjadi gelap" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:456 #~ msgid "Sets color theme to light" -#~ msgstr "Mengatur tema menjadi terang" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:450 #~ msgid "Sets color theme to system setting" -#~ msgstr "Mengatur tema sesuai pengaturan sistem" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:489 #~ msgid "Sets dark theme to the dark theme" -#~ msgstr "Mengatur tema gelap menjadi tema gelap" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:482 #~ msgid "Sets dark theme to the dim theme" -#~ msgstr "Mengatur tema gelap menjadi tema redup" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Mengatur aspek rasio gambar menjadi persegi" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Mengatur aspek rasio gambar menjadi tinggi" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Mengatur aspek rasio gambar menjadi lebar" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Pengaturan" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Aktivitas seksual atau ketelanjangan erotis." @@ -6365,20 +6638,19 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis." msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Bagikan" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Bagikan" @@ -6391,28 +6663,28 @@ msgstr "Bagikan cerita seru!" msgid "Share a fun fact!" msgstr "Bagikan fakta menarik!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Tetap bagikan" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Bagikan feed" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Bagikan tautan" @@ -6430,7 +6702,7 @@ msgstr "Dialog berbagi tautan" msgid "Share QR code" msgstr "Bagikan kode QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Bagikan paket pemula ini" @@ -6442,7 +6714,7 @@ msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan ko msgid "Share your favorite feed!" msgstr "Bagikan feed favorit Anda!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Penguji Preferensi Bersama" @@ -6450,23 +6722,27 @@ msgstr "Penguji Preferensi Bersama" msgid "Shares the linked website" msgstr "Membagikan situs web tertaut" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Tampilkan" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Tampilkan teks alt" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Tetap tampilkan" @@ -6482,29 +6758,29 @@ msgstr "Tampilkan lencana dan saring dari feed" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 #~ msgid "Show follows similar to {0}" -#~ msgstr "Tampilkan pengguna lain yang serupa dengan {0}" +#~ msgstr "" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" msgstr "Tampilkan balasan yang disembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Kurangi postingan serupa" #: src/screens/List/ListHiddenScreen.tsx:172 msgid "Show list anyway" -msgstr "" +msgstr "Tetap tampilkan daftar" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Perbanyak postingan serupa" @@ -6512,11 +6788,11 @@ msgstr "Perbanyak postingan serupa" msgid "Show muted replies" msgstr "Tampilkan balasan yang dibisukan" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Tampilkan Postingan dari Feed Tersimpan Saya" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Tampilkan Kutipan Postingan" @@ -6532,11 +6808,11 @@ msgstr "Tampilkan Kutipan Postingan" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Tampilkan Balasan" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." @@ -6552,20 +6828,20 @@ msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" -msgstr "" +msgstr "Tampilkan balasan untuk semua" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" -msgstr "Tampilkan Posting Ulang" +msgstr "Tampilkan Postingan Ulang" #: src/screens/Onboarding/StepFollowingFeed.tsx:111 #~ msgid "Show reposts in Following" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Tampilkan konten" @@ -6583,35 +6859,34 @@ msgid "Show warning and filter from feeds" msgstr "Tampilkan peringatan dan saring dari feed" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Tampilkan postingan dari {0} di feed Anda" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Masuk" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Masuk sebagai {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Masuk sebagai..." @@ -6623,42 +6898,41 @@ msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!" msgid "Sign into Bluesky or create a new account" msgstr "Masuk ke Bluesky atau buat akun baru" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Keluar" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" -msgstr "" +msgstr "Keluar dari semua akun" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Daftar" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Daftar atau masuk untuk bergabung dalam obrolan" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Daftar atau masuk untuk bergabung dalam obrolan" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Wajib Masuk" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Masuk sebagai" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Masuk sebagai @{0}" @@ -6666,26 +6940,31 @@ msgstr "Masuk sebagai @{0}" msgid "signed up with your starter pack" msgstr "mendaftar dengan paket pemula Anda" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "Mendaftar tanpa paket pemula" #: src/components/FeedInterstitials.tsx:316 msgid "Similar accounts" -msgstr "" +msgstr "Akun serupa" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Lewati" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Lewati tahap ini" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "Lebih kecil" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Pengembang Perangkat Lunak" @@ -6701,7 +6980,7 @@ msgstr "Beberapa orang dapat membalas" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Ada yang tidak beres" @@ -6710,41 +6989,41 @@ msgstr "Ada yang tidak beres" msgid "Something went wrong, please try again" msgstr "Ada yang tidak beres, silakan coba lagi" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Ada yang tidak beres, silakan coba lagi." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Ada yang tidak beres!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Urutkan Balasan" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Urutkan balasan ke postingan yang sama berdasarkan:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "" +msgid "Source:" +msgstr "Asal:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" -#~ msgstr "Sumber: <0>{0}" +#~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6756,49 +7035,53 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menyebut atau membalas secara berlebihan" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Olahraga" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Persegi" +#~ msgid "Square" +#~ msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Mulai obrolan baru" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Mulai obrolan dengan {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Mulai mengobrol" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." -#~ msgstr "Awal jendela tur orientasi. Jangan mundur. Maju untuk melihat opsi lainnya, atau tekan untuk melewati." +#~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Paket Pemula" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Paket pemula dari {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Paket pemula dari Anda" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Paket pemula tidak valid" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Paket Pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman." @@ -6806,7 +7089,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de #~ msgid "Status page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Halaman Status" @@ -6814,27 +7097,27 @@ msgstr "Halaman Status" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Kirim" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Berlangganan" @@ -6842,7 +7125,7 @@ msgstr "Berlangganan" msgid "Subscribe to @{0} to use these labels:" msgstr "Berlangganan @{0} untuk menggunakan label berikut:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Berlangganan Pelabel" @@ -6851,14 +7134,18 @@ msgstr "Berlangganan Pelabel" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Berlangganan pelabel ini" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Berlangganan ke daftar ini" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "Sukses!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Akun yang disarankan" @@ -6871,82 +7158,84 @@ msgstr "Akun yang disarankan" msgid "Suggested for you" msgstr "Disarankan untuk Anda" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Sugestif" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Dukungan" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Beralih Akun" #: src/tours/HomeTour.tsx:48 #~ msgid "Switch between feeds to control your experience." -#~ msgstr "Beralih antar feed untuk mengontrol pengalaman Anda." +#~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Beralih ke {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Alihkan akun yang Anda gunakan untuk masuk" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Log sistem" #: src/components/dialogs/MutedWords.tsx:323 #~ msgid "tag" -#~ msgstr "tagar" +#~ msgstr "" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Menu tagar: {displayTag}" #: src/components/dialogs/MutedWords.tsx:282 msgid "Tags only" -msgstr "" +msgstr "Hanya tagar" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Tinggi" +#~ msgid "Tall" +#~ msgstr "" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Ketuk untuk menutup" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" -msgstr "" +msgstr "Ketuk untuk masuk layar penuh" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" -msgstr "" +msgstr "Ketuk untuk mulai atau jeda" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" -msgstr "" +msgstr "Ketuk untuk mengubah mode suara" #: src/view/com/util/images/AutoSizedImage.tsx:219 #: src/view/com/util/images/AutoSizedImage.tsx:239 msgid "Tap to view full image" -msgstr "" +msgstr "Ketuk untuk melihat gambar penuh" #: src/view/com/util/images/AutoSizedImage.tsx:70 #~ msgid "Tap to view fully" -#~ msgstr "Ketuk untuk melihat sepenuhnya" +#~ msgstr "" #: src/state/shell/progress-guide.tsx:166 msgid "Task complete - 10 likes!" @@ -6957,7 +7246,7 @@ msgid "Teach our algorithm what you like" msgstr "Latih algoritma kami dengan apa yang Anda sukai" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Teknologi" @@ -6965,23 +7254,27 @@ msgstr "Teknologi" msgid "Tell a joke!" msgstr "Ceritakan sebuah lelucon!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Beritahu kami lebih lanjut" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -6994,31 +7287,39 @@ msgstr "Istilah yang digunakan melanggar standar komunitas" #: src/components/dialogs/MutedWords.tsx:323 #~ msgid "text" -#~ msgstr "teks" +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:266 msgid "Text & tags" -msgstr "" +msgstr "Teks & tagar" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Area input teks" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "Terima kasih! Email Anda berhasil diverifikasi." + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Terima kasih. Laporan Anda telah terkirim." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "" +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Terima kasih, Anda telah berhasil memverifikasi alamat email Anda. Anda bisa menutup dialog ini." + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Berisi hal berikut:" @@ -7026,21 +7327,21 @@ msgstr "Berisi hal berikut:" msgid "That handle is already taken." msgstr "Panggilan telah terpakai." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "Tidak dapat menemukan paket pemula." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" -msgstr "" +msgstr "Sekian!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka." @@ -7051,30 +7352,30 @@ msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka." #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." -msgstr "" +msgstr "Pembuat utas telah menyembunyikan balasan ini." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" -msgstr "" +msgstr "Aplikasi web Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Panduan Komunitas telah dipindahkan ke <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" #: src/view/com/posts/FeedShutdownMsg.tsx:102 msgid "The Discover feed" -msgstr "" +msgstr "Feed Discover" #: src/state/shell/progress-guide.tsx:167 #: src/state/shell/progress-guide.tsx:172 msgid "The Discover feed now knows what you like" msgstr "Feed Discover kini tahu apa yang Anda sukai" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekarang dan kami akan melanjutkan dari langkah terakhir yang Anda tinggalkan." @@ -7099,29 +7400,34 @@ msgstr "Langkah berikut akan membantu menyesuaikan pengalaman Bluesky Anda." msgid "The post may have been deleted." msgstr "Postingan mungkin telah dihapus." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." -msgstr "" +msgstr "Video yang dipilih lebih besar dari 50MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Formulir dukungan telah dipindahkan. Jika Anda memerlukan bantuan, silakan <0/> atau kunjungi {HELP_DESK_URL} untuk menghubungi kami." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Ketentuan Layanan telah dipindahkan ke" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -msgstr "" +msgstr "Kode verifikasi yang Anda berikan tidak valid. Pastikan Anda telah menggunakan tautan verifikasi yang benar atau minta yang baru." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "Tema" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" @@ -7131,23 +7437,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "Tidak ada batasan waktu untuk penonaktifan akun, Anda bisa kembali kapan saja." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Ada masalah saat memperbarui feed Anda, periksa koneksi internet dan coba lagi." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Ada masalah saat memperbarui feed Anda, periksa koneksi internet dan coba lagi." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Ada masalah saat menghubungkan ke Tenor." @@ -7155,15 +7460,18 @@ msgstr "Ada masalah saat menghubungkan ke Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7173,21 +7481,25 @@ msgstr "Ada masalah saat menghubungi server Anda" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Ada masalah saat mengambil daftar. Ketuk di sini untuk mencoba lagi." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Ada masalah saat mengambil daftar Anda. Ketuk di sini untuk mencoba lagi." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet Anda." @@ -7195,21 +7507,27 @@ msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet A #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Ada masalah saat pengambilan kata sandi aplikasi Anda" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" @@ -7217,16 +7535,15 @@ msgstr "Ada masalah! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Ada masalah tak terduga dalam aplikasi. Beri tahu kami jika hal ini terjadi pada Anda!" @@ -7238,11 +7555,11 @@ msgstr "Terjadi lonjakan pengguna baru di Bluesky! Kami akan mengaktifkan akun A #~ msgid "These are popular accounts you might like:" #~ msgstr "" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ini telah ditandai:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya." @@ -7252,17 +7569,17 @@ msgstr "Akun ini diblokir oleh satu atau lebih daftar moderasi Anda. Untuk membu #: src/components/moderation/LabelsOnMeDialog.tsx:260 #~ msgid "This appeal will be sent to <0>{0}." -#~ msgstr "Banding ini akan dikirim ke <0>{0}." +#~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." -msgstr "" +msgstr "Banding ini akan dikirim ke <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Banding ini akan dikirimkan ke layanan moderasi Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Obrolan ini telah terputus" @@ -7278,7 +7595,7 @@ msgstr "Konten ini telah disembunyikan oleh moderator." msgid "This content has received a general warning from moderators." msgstr "Konten ini telah menerima peringatan umum dari moderator." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Konten ini disediakan oleh {0}. Apakah Anda ingin mengaktifkan media eksternal?" @@ -7291,11 +7608,11 @@ msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah msgid "This content is not viewable without a Bluesky account." msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifkan. Tekan untuk opsi lain." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Fitur ini masih dalam versi beta. Anda dapat membaca lebih lanjut tentang ekspor repositori di <0>postingan blog ini." @@ -7314,8 +7631,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Feed ini kosong." @@ -7323,7 +7640,7 @@ msgstr "Feed ini kosong." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover sebagai gantinya." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Informasi ini tidak akan dibagikan ke pengguna lain." @@ -7335,11 +7652,11 @@ msgstr "Ini penting dilakukan untuk berjaga-jaga jika Anda perlu mengubah email #~ msgid "This label was applied by {0}." #~ msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Label ini diterapkan oleh <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Label ini diterapkan oleh pemosting." @@ -7347,7 +7664,7 @@ msgstr "Label ini diterapkan oleh pemosting." #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Label ini diterapkan oleh Anda." @@ -7361,9 +7678,9 @@ msgstr "Tautan ini akan membawa Anda ke situs web berikut:" #: src/screens/List/ListHiddenScreen.tsx:136 msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "" +msgstr "Daftar yang dibuat oleh <0>{0} ini mengandung kemungkinan pelanggaran pedoman komunitas Bluesky pada nama atau deskripsinya." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Daftar ini kosong!" @@ -7375,40 +7692,40 @@ msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah. msgid "This name is already in use" msgstr "Nama ini sudah digunakan" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Postingan ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "" +msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan." #: src/view/com/util/forms/PostDropdownBtn.tsx:443 #~ msgid "This post will be hidden from feeds." -#~ msgstr "Postingan ini akan disembunyikan dari feed." +#~ msgstr "" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." -msgstr "" +msgstr "Pembuat postingan ini telah menonaktifkan kutipan." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Profil ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "" +msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan akan membisukan notifikasi balasan selanjutnya - baik untuk Anda maupun orang lain." #: src/screens/Signup/StepInfo/Policies.tsx:37 msgid "This service has not provided terms of service or a privacy policy." msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Ini akan membuat catatan domain di:" @@ -7451,42 +7768,42 @@ msgstr "Pengguna ini tidak mengikuti siapa pun." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." -msgstr "" +msgstr "Ini akan menghapus \"{0}\" dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti." #: src/components/dialogs/MutedWords.tsx:283 #~ msgid "This will delete {0} from your muted words. You can always add it back later." -#~ msgstr "Ini akan menghapus {0} dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti." +#~ msgstr "" #: src/view/com/util/AccountDropdownBtn.tsx:55 msgid "This will remove @{0} from the quick access list." -msgstr "" +msgstr "Ini akan menghapus @{0} dari daftar akses cepat." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." -msgstr "" +msgstr "Ini akan menghapus postingan Anda dari kutipan ini untuk semua pengguna, dan menempatkan teks pengganti." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Preferensi utas" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Preferensi Utas" #: src/components/WhoCanReply.tsx:109 #~ msgid "Thread settings updated" -#~ msgstr "Pengaturan utas diperbarui" +#~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Mode Bersusun" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Preferensi Utas" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Untuk menonaktifkan metode 2FA melalui email, silakan verifikasi akses Anda ke alamat email tersebut." @@ -7494,45 +7811,49 @@ msgstr "Untuk menonaktifkan metode 2FA melalui email, silakan verifikasi akses A msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Untuk melaporkan percakapan, silakan laporkan salah satu pesannya melalui laman percakapan. Ini akan membantu moderator kami memahami konteks masalah Anda." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." -msgstr "" +msgstr "Untuk mengunggah video ke Bluesky, Anda harus memverifikasi email Anda terlebih dahulu." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Kepada siapa Anda ingin mengirimkan laporan ini?" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Hari ini" + #: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "" +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." -#~ msgstr "Beralih antara opsi kata yang dibisukan." +#~ msgstr "" #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "Beralih dropdown" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Teratas" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Transformasi" +#~ msgid "Transformations" +#~ msgstr "" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Terjemahkan" @@ -7541,40 +7862,40 @@ msgctxt "action" msgid "Try again" msgstr "Coba lagi" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Autentikasi dua faktor" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Ketik pesan Anda di sini" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Tipe:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Buka blokir daftar" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Bunyikan daftar" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Tidak dapat menghapus" @@ -7582,14 +7903,14 @@ msgstr "Tidak dapat menghapus" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Buka blokir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" @@ -7599,17 +7920,17 @@ msgstr "Buka blokir" msgid "Unblock account" msgstr "Buka blokir akun" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Buka blokir Akun" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Buka Blokir Akun?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7622,14 +7943,14 @@ msgstr "Berhenti ikuti" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 #~ msgid "Unfollow" -#~ msgstr "Batal ikuti" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Berhenti ikuti {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Berhenti Ikuti Akun" @@ -7637,18 +7958,18 @@ msgstr "Berhenti Ikuti Akun" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Batalkan suka feed ini" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" -msgstr "" +msgstr "Bunyikan" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" msgid "Unmute" msgstr "Bunyikan" @@ -7656,12 +7977,12 @@ msgstr "Bunyikan" msgid "Unmute {truncatedTag}" msgstr "Bunyikan {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Bunyikan Akun" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Bunyikan semua postingan {displayTag}" @@ -7673,56 +7994,61 @@ msgstr "Bunyikan percakapan" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Bunyikan utas" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" -msgstr "" +msgstr "Bunyikan video" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Lepas sematan" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "Lepas sematan dari profil" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Dilepaskan dari daftar feed Anda" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Berhenti langganan" #: src/screens/List/ListHiddenScreen.tsx:184 #: src/screens/List/ListHiddenScreen.tsx:194 msgid "Unsubscribe from list" -msgstr "" +msgstr "Berhenti langganan daftar ini" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Berhenti langganan pelabel ini" #: src/screens/List/ListHiddenScreen.tsx:86 msgid "Unsubscribed from list" -msgstr "" +msgstr "Telah berhenti berlangganan dari daftar" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" -msgstr "" +msgstr "Tipe video tidak didukung: {mimeType}" #: src/lib/moderation/useReportOptions.ts:85 #~ msgid "Unwanted sexual content" @@ -7734,75 +8060,92 @@ msgid "Unwanted Sexual Content" msgstr "Konten Seksual yang Tidak Diinginkan" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Perbarui {displayName} dalam Daftar" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "Perbarui <0>{displayName} dalam Daftar" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Perbarui ke {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" -msgstr "" +msgstr "Gagal memperbarui lampiran kutipan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" -msgstr "" +msgstr "Gagal memperbarui visibilitas balasan" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Memperbarui..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Unggah foto saja" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Unggah berkas teks ke:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Unggah dari Kamera" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Unggah dari Berkas" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Unggah dari Pustaka" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Gunakan berkas di server Anda" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Gunakan kata sandi aplikasi untuk masuk ke klien Bluesky lain tanpa memberikan akses penuh ke akun atau kata sandi Anda." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Gunakan bsky.social sebagai penyedia hosting" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Gunakan penyedia panggilan bawaan" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Gunakan peramban dalam aplikasi" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Gunakan peramban baku saya" @@ -7810,7 +8153,7 @@ msgstr "Gunakan peramban baku saya" msgid "Use recommended" msgstr "Gunakan yang direkomendasikan" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Gunakan panel DNS" @@ -7847,91 +8190,90 @@ msgstr "Pengguna Memblokir Anda" msgid "User Blocks You" msgstr "Pengguna Memblokir Anda" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Daftar pengguna {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Daftar pengguna oleh <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Daftar pengguna Anda" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Daftar pengguna dibuat" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Daftar pengguna diperbarui" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Daftar Pengguna" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Nama pengguna atau alamat email" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Pengguna" #: src/components/WhoCanReply.tsx:280 #~ msgid "users followed by <0/>" -#~ msgstr "pengguna yang diikuti <0/>" +#~ msgstr "" #: src/components/WhoCanReply.tsx:258 msgid "users followed by <0>@{0}" -msgstr "" +msgstr "pengguna yang diikuti <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Pengguna yang saya ikuti" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Pengguna di \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Pengguna yang telah menyukai konten atau profil" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Nilai:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" -msgstr "" +msgstr "Diperlukan email yang terverifikasi" #: src/view/com/modals/ChangeHandle.tsx:510 #~ msgid "Verify {0}" #~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Verifikasi DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Verifikasi email" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "" +msgstr "Dialog verifikasi email" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Verifikasi email saya" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Verifikasi Email Saya" @@ -7940,14 +8282,15 @@ msgstr "Verifikasi Email Saya" msgid "Verify New Email" msgstr "Verifikasi Email Baru" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" -msgstr "" +msgstr "Verifikasi sekarang" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Verifikasi Berkas" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Verifikasi Email Anda" @@ -7956,46 +8299,50 @@ msgstr "Verifikasi Email Anda" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Versi {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" -msgstr "" +msgstr "Video" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" -msgstr "" +msgstr "Video gagal diproses" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Permainan Video" #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 msgid "Video not found." -msgstr "" +msgstr "Video tidak ditemukan." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" +msgstr "Pengaturan video" + +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" -msgstr "" +msgstr "Video: {0}" #: src/view/com/composer/videos/state.ts:27 #~ msgid "Videos cannot be larger than 50MB" -#~ msgstr "Video tidak boleh lebih besar dari 50MB" +#~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" -msgstr "" +msgstr "Durasi video harus kurang dari 60 detik" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" @@ -8006,17 +8353,25 @@ msgstr "Lihat profil {0}" #: src/components/dms/MessagesListHeader.tsx:160 msgid "View {displayName}'s profile" +msgstr "Lihat profil {displayName}" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Lihat profil pengguna yang diblokir" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" -msgstr "" +msgstr "Lihat postingan blog untuk detail lebih lanjut" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Lihat entri debug" @@ -8036,11 +8391,13 @@ msgstr "Lihat utas lengkap" msgid "View information about these labels" msgstr "Lihat informasi tentang label ini" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Lihat profil" @@ -8048,30 +8405,30 @@ msgstr "Lihat profil" msgid "View the avatar" msgstr "Lihat avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" -msgstr "" +msgstr "Lihat daftar akun yang Anda blokir" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" -msgstr "" +msgstr "Lihat daftar moderasi Anda" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" -msgstr "" +msgstr "Lihat daftar akun yang Anda bisukan" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -8092,11 +8449,11 @@ msgstr "Peringatkan konten" msgid "Warn content and filter from feeds" msgstr "Peringatkan konten dan saring dari feed" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Kami tidak dapat memuat percakapan ini" @@ -8104,11 +8461,11 @@ msgstr "Kami tidak dapat memuat percakapan ini" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Kami perkirakan {estimatedTime} hingga akun Anda siap." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." -msgstr "" +msgstr "Kami telah mengirimkan email verifikasi baru ke <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:" @@ -8118,25 +8475,25 @@ msgstr "Kami kehabisan postingan dari akun yang Anda ikuti. Inilah yang terbaru #: src/components/dialogs/MutedWords.tsx:203 #~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#~ msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan." +#~ msgstr "" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "" +msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video. Silakan coba lagi." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Kami tidak dapat memuat preferensi tanggal lahir Anda. Silakan coba lagi." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengaturan akun Anda. Jika terus gagal, Anda dapat melewati langkah ini." @@ -8144,36 +8501,40 @@ msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengat msgid "We will let you know when your account is ready." msgstr "Kami akan memberi tahu Anda ketika akun Anda siap." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Kami mengalami masalah jaringan, coba lagi" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "Kami memperkenalkan font tema baru beserta ukuran font yang dapat diatur." + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Kami sangat senang Anda bergabung dengan kami!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." -msgstr "Mohon maaf, kami tidak dapat menyelesaikan daftar ini. Jika hal ini terus berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}." +msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}." #: src/components/dialogs/MutedWords.tsx:378 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisukan. Silakan coba lagi." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." @@ -8181,7 +8542,7 @@ msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut." @@ -8197,7 +8558,7 @@ msgstr "Selamat datang kembali!" msgid "Welcome, friend!" msgstr "Selamat datang, kawan!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Apa saja minat Anda?" @@ -8205,28 +8566,28 @@ msgstr "Apa saja minat Anda?" msgid "What do you want to call your starter pack?" msgstr "Apa nama paket pemula Anda?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Apa kabar?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Bahasa apa yang digunakan di postingan ini?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Bahasa apa yang ingin Anda lihat di feed algoritmik Anda?" #: src/components/WhoCanReply.tsx:179 msgid "Who can interact with this post?" -msgstr "" +msgstr "Siapa yang dapat berinteraksi dengan postingan ini?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Siapa yang dapat mengirim pesan kepada Anda?" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8234,14 +8595,14 @@ msgstr "Siapa yang dapat membalas" #: src/components/WhoCanReply.tsx:212 #~ msgid "Who can reply dialog" -#~ msgstr "Dialog siapa yang dapat membalas" +#~ msgstr "" #: src/components/WhoCanReply.tsx:216 #~ msgid "Who can reply?" -#~ msgstr "Siapa yang dapat membalas?" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Waduh!" @@ -8274,35 +8635,35 @@ msgid "Why should this user be reviewed?" msgstr "Mengapa pengguna ini perlu ditinjau?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Lebar" +#~ msgid "Wide" +#~ msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Tulis pesan" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Tulis postingan" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Tulis balasan Anda" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Penulis" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Ya" @@ -8311,27 +8672,30 @@ msgstr "Ya" msgid "Yes, deactivate" msgstr "Ya, nonaktifkan" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Ya, hapus paket pemula ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" -msgstr "" +msgstr "Ya, lepaskan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" -msgstr "" +msgstr "Ya, sembunyikan" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" msgstr "Ya, aktifkan kembali akun saya" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Kemarin, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Kemarin" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "Anda" @@ -8344,14 +8708,18 @@ msgstr "Anda" msgid "You are in line." msgstr "Anda sedang dalam antrian." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." -msgstr "" +msgstr "Anda tidak diizinkan untuk mengunggah video." #: src/view/com/profile/ProfileFollows.tsx:95 msgid "You are not following anyone." msgstr "Anda tidak mengikuti siapa pun." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "Anda dapat mengatur ini pada Pengaturan Tampilan Anda nantinya." + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8366,15 +8734,15 @@ msgstr "Anda juga dapat menonaktifkan akun untuk sementara, dan mengaktifkannya #~ msgstr "" #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Anda dapat mengubah ini kapan saja." +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Anda dapat melanjutkan percakapan yang sedang berlangsung terlepas dari pengaturan mana yang Anda pilih." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." @@ -8386,7 +8754,7 @@ msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profi msgid "You do not have any followers." msgstr "Anda tidak memiliki pengikut." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Anda tidak mengikuti satu pun pengguna yang mengikuti @{name}." @@ -8394,7 +8762,7 @@ msgstr "Anda tidak mengikuti satu pun pengguna yang mengikuti @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Anda belum memiliki kode undangan! Kami akan mengirimkan kode saat Anda sudah sedikit lama di Bluesky." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Anda tidak memiliki feed yang disematkan." @@ -8402,7 +8770,7 @@ msgstr "Anda tidak memiliki feed yang disematkan." #~ msgid "You don't have any saved feeds!" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Anda tidak memiliki feed yang disimpan." @@ -8420,8 +8788,8 @@ msgstr "Anda telah memblokir pengguna ini" msgid "You have blocked this user. You cannot view their content." msgstr "Anda telah memblokir pengguna ini. Anda tidak dapat melihat konten mereka." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8444,7 +8812,7 @@ msgstr "Anda telah membisukan akun ini." msgid "You have muted this user" msgstr "Anda telah membisukan pengguna ini" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Anda belum memiliki percakapan. Mulai sekarang!" @@ -8452,8 +8820,8 @@ msgstr "Anda belum memiliki percakapan. Mulai sekarang!" msgid "You have no feeds." msgstr "Anda tidak memiliki feed." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Anda tidak memiliki daftar." @@ -8461,15 +8829,15 @@ msgstr "Anda tidak memiliki daftar." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Anda belum memblokir akun apa pun. Untuk memblokir akun, buka profil mereka dan pilih \"Blokir akun\" dari menu di akunnya." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Anda belum membuat kata sandi aplikasi. Anda dapat membuatnya dengan menekan tombol di bawah ini." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil mereka dan pilih \"Bisukan akun\" dari menu di akunnya." @@ -8477,11 +8845,11 @@ msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil m msgid "You have reached the end" msgstr "Anda telah mencapai akhir" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." -msgstr "" +msgstr "Anda telah mencapai batas sementara unggahan video. Silakan coba lagi nanti." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Anda belum membuat paket pemula!" @@ -8492,7 +8860,7 @@ msgstr "Anda belum membisukan kata atau tagar apa pun" #: src/components/moderation/ModerationDetailsDialog.tsx:117 #: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "You hid this reply." -msgstr "" +msgstr "Anda menyembunyikan balasan ini." #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "You may appeal non-self labels if you feel they were placed in error." @@ -8504,21 +8872,25 @@ msgstr "Anda dapat mengajukan banding atas label berikut jika Anda merasa label #: src/screens/StarterPack/Wizard/State.tsx:79 msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" -msgstr "" +msgstr "Anda hanya boleh menambahkan maksimal {STARTER_PACK_MAX_SIZE} profil" #: src/screens/StarterPack/Wizard/State.tsx:97 msgid "You may only add up to 3 feeds" -msgstr "" +msgstr "Anda hanya boleh menambahkan maksimal 3 feed" #: src/screens/StarterPack/Wizard/State.tsx:95 #~ msgid "You may only add up to 50 feeds" -#~ msgstr "Anda hanya boleh menambahkan maksimal 50 feed" +#~ msgstr "" #: src/screens/StarterPack/Wizard/State.tsx:78 #~ msgid "You may only add up to 50 profiles" -#~ msgstr "Anda hanya boleh menambahkan maksimal 50 profil" +#~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar." @@ -8526,7 +8898,7 @@ msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." @@ -8534,12 +8906,11 @@ msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula msgid "You must grant access to your photo library to save a QR code" msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan gambar ini." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" @@ -8547,47 +8918,51 @@ msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" msgid "You previously deactivated @{0}." msgstr "Anda telah menonaktifkan @{0} sebelumnya." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Anda: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Anda: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Anda: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Anda akan otomatis mengikuti para pengguna ini" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "Anda akan menerima email di <0>{0} untuk memverifikasi bahwa ini benar Anda." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Dapatkan informasi terbaru melalui feed berikut" @@ -8606,7 +8981,7 @@ msgstr "Anda sedang dalam antrian" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Anda masuk menggunakan Sandi Aplikasi. Mohon gunakan kata sandi utama untuk melanjutkan penonaktifan akun Anda." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Anda siap untuk mulai!" @@ -8619,15 +8994,15 @@ msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" -msgstr "" +msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" -msgstr "" +msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Akun Anda" @@ -8635,27 +9010,27 @@ msgstr "Akun Anda" msgid "Your account has been deleted" msgstr "Akun Anda telah dihapus" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "" +msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Semua catatan data publik dalam repositori akun Anda dapat diunduh sebagai berkas \"CAR\". Tidak termasuk konten media seperti gambar dan data pribadi yang harus diunduh secara terpisah." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Tanggal lahir Anda" #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 msgid "Your browser does not support the video format. Please try a different browser." -msgstr "" +msgstr "Peramban Anda tidak mendukung format video. Silakan coba peramban lain." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Obrolan Anda telah dinonaktifkan" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan." @@ -8663,9 +9038,9 @@ msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan." #~ msgid "Your default feed is \"Following\"" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Email Anda tidak valid." @@ -8690,7 +9065,7 @@ msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat ap msgid "Your full handle will be" msgstr "Panggilan lengkap Anda akan menjadi" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}" @@ -8702,15 +9077,15 @@ msgstr "Kata yang Anda bisukan" msgid "Your password has been changed successfully!" msgstr "Kata sandi Anda telah berhasil diubah!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Postingan Anda telah dipublikasikan" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisuan bersifat privat." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Profil Anda" @@ -8718,14 +9093,14 @@ msgstr "Profil Anda" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Panggilan Anda" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index f436eeb9d4..3163f1de7f 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Poedit 3.4.4\n" "X-Poedit-SourceCharset: UTF-8\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(contiene allegati)" @@ -23,7 +23,7 @@ msgid "(no email)" msgstr "(no email)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} altro} other {{formattedCount} altri}}" @@ -51,7 +51,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}" @@ -73,15 +73,15 @@ msgstr "{0, plural, one {follower} other {follower}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguito} other {seguiti}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Like (# like)} other {Like (# like)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {like}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {# utente ha messo like} other {# utenti hanno messo like}}" @@ -90,19 +90,19 @@ msgstr "{0, plural, one {# utente ha messo like} other {# utenti hanno messo lik msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {post}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citazione} other {citazioni}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Reply (# risposta)} other {Reply (# risposte)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {repost}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Unlike (# like)} other {Unlike (# like)}}" @@ -122,22 +122,22 @@ msgstr "{0} <0>in <1>tag" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>testo e tag" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" #~ msgid "{0} your feeds" #~ msgstr "{0} tuoi feed" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Foto profilo di {0}" @@ -174,7 +174,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {# utente ha messo like} other {# utenti hanno messo like}}" @@ -199,7 +199,7 @@ msgstr "{count, plural, one {# utente ha messo like} other {# utenti hanno messo #~ msgstr "{diffSeconds, plural, one {secondo} other {secondi}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Starter Pack di {displayName}" @@ -211,12 +211,12 @@ msgstr "{estimatedTimeHrs, plural, one {ora} other {ore}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minuti}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} following" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} non può ricevere messaggi" @@ -229,16 +229,16 @@ msgstr "{handle} non può ricevere messaggi" #~ msgid "{invitesAvailable} invite codes available" #~ msgstr "{invitesAvailable} codici d'invito disponibili" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# utente ha messo like} other {# utenti hanno messo like}}" #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non letto" @@ -262,12 +262,12 @@ msgstr "{profileName} si è iscritto a Bluesky usando uno starter pack {0} giorn #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "<0>{0} e<1> <2>{1} sono inclusi nel tuo starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack" @@ -276,22 +276,22 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} son #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "<0>{0}, <1>{1}, e {2} {3, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {follower} other {follower}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguito} other {seguiti}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} sono inclusi nel tuo starter pack" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} seguito" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} è incluso nel tuo starter pack" @@ -299,6 +299,10 @@ msgstr "<0>{0} è incluso nel tuo starter pack" msgid "<0>{0} members" msgstr "<0>{0} membri" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "<0>{followers} <1>{pluralizedFollowers}" @@ -312,17 +316,17 @@ msgstr "<0>{0} membri" #~ msgstr "<0>Segui alcuni<1>utenti<2>consigliati" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Non applicabile. Questo avviso è disponibile solo per i post che contengono media." +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Non applicabile. Questo avviso è disponibile solo per i post che contengono media." #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Ti diamo il benvenuto su<1>Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Tu e<1> <2>{0} sono inclusi nel tuo starter pack" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Nome utente non valido" @@ -330,7 +334,7 @@ msgstr "⚠Nome utente non valido" msgid "24 hours" msgstr "24 ore" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Conferma 2FA" @@ -352,8 +356,8 @@ msgstr "7 giorni" #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "È disponibile una nuova versione dell'app. Aggiorna per continuare a utilizzarla." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Accedi alle impostazioni di navigazione" @@ -361,38 +365,37 @@ msgstr "Accedi alle impostazioni di navigazione" msgid "Access profile and other navigation links" msgstr "Accedi al profilo e ad altre impostazioni di navigazione" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Accessibilità" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Impostazioni di Accessibilità" #~ msgid "account" #~ msgstr "account" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Account" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Account bloccato" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Account seguito" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Account silenziato" @@ -413,27 +416,27 @@ msgstr "Opzioni dell'account" msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso immediato" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Account sbloccato" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Account non seguito" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Account non silenziato" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Aggiungi" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Aggiungi {0} utenti per continuare" @@ -441,40 +444,42 @@ msgstr "Aggiungi {0} utenti per continuare" msgid "Add {displayName} to starter pack" msgstr "Aggiungi {displayName} allo starter pack" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Aggiungi un avviso sul contenuto" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Aggiungi un utente a questo elenco" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Aggiungi account" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Aggiungi testo alternativo" #~ msgid "Add ALT text" #~ msgstr "Agguingo del testo descrittivo" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Aggiungi la Password per l'App" @@ -506,7 +511,7 @@ msgstr "Aggiungi parole e tag silenziati" msgid "Add recommended feeds" msgstr "Aggiungi feed consigliati" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Aggiungi dei feed al tuo starter pack!" @@ -514,16 +519,16 @@ msgstr "Aggiungi dei feed al tuo starter pack!" msgid "Add the default feed of only people you follow" msgstr "Aggiungi il feed predefinito delle sole persone che segui" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Aggiungi il seguente record DNS al tuo dominio:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Aggiungi feed" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Aggiungi alle Liste" @@ -535,7 +540,7 @@ msgstr "Aggiungi ai miei feed" #~ msgstr "Aggiunto" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Aggiunto alla lista" @@ -547,25 +552,31 @@ msgstr "Aggiunto ai miei feed" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per essere mostrata nel tuo feed." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Contenuto per adulti" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0/>." -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Il contenuto per adulti è disattivato." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Avanzato" @@ -573,11 +584,11 @@ msgstr "Avanzato" msgid "Algorithm training complete!" msgstr "Allenamento dell'algoritmo completato!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Tutti gli account sono stati seguiti!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." @@ -590,53 +601,58 @@ msgstr "Consenti l'accesso ai tuoi messaggi" #~ msgid "Allow messages from" #~ msgstr "Permetti tutti i messaggi di" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Consenti nuovi messaggi da" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Consenti risposte da:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "Consenti l'accesso ai tuoi messaggi" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Hai già un codice?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Hai già effettuato l'accesso come @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Testo alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Testo Alternativo" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "È stata inviata un'e-mail a {0}. Include un codice di conferma che puoi inserire di seguito." @@ -644,7 +660,11 @@ msgstr "È stata inviata un'e-mail a {0}. Include un codice di conferma che puoi msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Una email è stata inviata al tuo indirizzo precedente, {0}. Include un codice di conferma che puoi inserire di seguito." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Si è verificato un errore" @@ -652,15 +672,15 @@ msgstr "Si è verificato un errore" #~ msgid "An error occured" #~ msgstr "Si è verificato un errore" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Si è verificato un errore" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovare?" @@ -673,31 +693,31 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "Si è verificato un errore nel caricare l'immagine." #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Si è verificato un errore nel salvare il codice QR!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Si è verificato un errore durante la cancellazione del messaggio. Per favore riprova più tardi." -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Si è verificato un errore nel seguire tutti" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "Si è verificato un errore nel caricare il video." @@ -709,40 +729,40 @@ msgstr "Un problema non incluso in queste opzioni" msgid "An issue occurred starting the chat" msgstr "Si è verificato un problema nel creare la chat" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Si è verificato un problema nell'aprire la chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Si è verificato un problema, per favore riprova più tardi." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "Si è verificato un errore sconosciuto" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "un etichettatore sconosciuto" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "e" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Animali" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF animata" @@ -750,15 +770,20 @@ msgstr "GIF animata" msgid "Anti-Social Behavior" msgstr "Comportamento antisociale" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Tutti possono interagire" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Lingua dell'app" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Password dell'app eliminata" @@ -770,25 +795,25 @@ msgstr "Le password dell'app possono contenere solo lettere, numeri, spazi, trat msgid "App Password names must be at least 4 characters long." msgstr "Le password delle app devono contenere almeno 4 caratteri." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Impostazioni della password dell'app" #~ msgid "App passwords" #~ msgstr "Passwords dell'app" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Password dell'App" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Ricorso" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Etichetta \"{0}\" del ricorso" @@ -801,34 +826,34 @@ msgstr "Etichetta \"{0}\" del ricorso" #~ msgid "Appeal Decision" #~ msgstr "Decisión de apelación" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appello inviato" #~ msgid "Appeal submitted." #~ msgstr "Ricorso presentato." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Fai ricorso contro questa decisione" #~ msgid "Appeal this decision." #~ msgstr "Appella contro questa decisione." -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Aspetto" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Impostazioni dell'aspetto" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Impostazioni dell'aspetto" @@ -841,7 +866,7 @@ msgstr "Applica i feed raccomandati predefiniti" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "Sicuro di voler eliminare questo starter pack?" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?" @@ -853,10 +878,14 @@ msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Sicuro di voler cancellare questo messaggio? Il messaggio verrà cancellato per te, ma non per gli altri partecipanti." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Sicuro di voler eliminare questo starter pack?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verranno cancellati per te, ma non per gli altri partecipanti." @@ -865,11 +894,11 @@ msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verrann msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "Sicuro di rimuoverlo dai tuoi feed?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Confermi di voler eliminare questa bozza?" @@ -885,11 +914,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Stai scrivendo in <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Arte" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Nudità artistica o non erotica." @@ -898,22 +927,22 @@ msgid "At least 3 characters" msgstr "Almeno 3 caratteri" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Indietro" @@ -925,20 +954,20 @@ msgstr "Indietro" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basato sui tuoi interessi {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Preferenze" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Compleanno" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Compleanno:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Blocca" @@ -947,48 +976,48 @@ msgstr "Blocca" msgid "Block account" msgstr "Blocca account" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Blocca Account" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Bloccare Account?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Blocca gli account" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Lista di account bloccati" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Vuoi bloccare questi account?" #~ msgid "Block this List" #~ msgstr "Blocca questa Lista" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Bloccato" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Accounts bloccati" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Accounts bloccati" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti o interagire in nessun altro modo con te." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo." @@ -1000,26 +1029,30 @@ msgstr "Post bloccato." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Il blocco non impedisce al labeler di inserire etichette nel tuo account." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Il blocco è pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Il blocco non impedirà l'applicazione delle etichette al tuo account, ma impedirà a questo account di rispondere alle tue discussioni o di interagire con te." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky è un network aperto in cui puoi scegliere il tuo provider di hosting. L'hosting personalizzato è adesso disponibile in versione beta per gli sviluppatori." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky è un network aperto in cui puoi scegliere il tuo provider di hosting. L'hosting personalizzato è adesso disponibile in versione beta per gli sviluppatori." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -1035,17 +1068,17 @@ msgstr "Bluesky è meglio cogli amici!" #~ msgstr "Bluesky è pubblico." #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky utilizza gli inviti per costruire una comunità più sana. Se non conosci nessuno con un invito, puoi iscriverti alla lista d'attesa e te ne invieremo uno al più presto." -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sceglierà un set di account consigliati dal tuo network." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti non loggati. Altre applicazioni potrebbero non rispettare questa istruzione. Ciò non rende il tuo account privato." @@ -1061,13 +1094,13 @@ msgid "Blur images and filter from feeds" msgstr "Sfoca le immagini e filtra dai feed" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Libri" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1097,7 +1130,7 @@ msgstr "Cerca altri feed" #~ msgid "Build version {0} {1}" #~ msgstr "Versione {0} {1}" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Attività commerciale" @@ -1111,7 +1144,7 @@ msgstr "da —" #~ msgid "by {0}" #~ msgstr "di {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Di {0}" @@ -1124,14 +1157,26 @@ msgid "by <0/>" msgstr "di <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Creando un account accetti i {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Creando un account accetti i {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "da te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Fotocamera" @@ -1140,33 +1185,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. Deve contenere almeno 4 caratteri, ma non più di 32 caratteri." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Cancella" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1181,19 +1225,19 @@ msgstr "Annulla la cancellazione dell'account" #~ msgid "Cancel add image alt text" #~ msgstr "Cancel·la afegir text a la imatge" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Annulla il cambio del tuo nome utente" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Annulla il ritaglio dell'immagine" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Annulla la modifica del profilo" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Annulla la modifica del profilo" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Annnulla la citazione del post" @@ -1202,6 +1246,7 @@ msgid "Cancel reactivation and log out" msgstr "Cancella la riattivazione e disconnettiti" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Annulla la ricerca" @@ -1212,14 +1257,14 @@ msgstr "Annulla la ricerca" msgid "Cancels opening the linked website" msgstr "Annulla l'apertura del sito collegato" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1228,24 +1273,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Cambia il nome utente" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Cambia il Nome Utente" @@ -1253,12 +1302,12 @@ msgstr "Cambia il Nome Utente" msgid "Change my email" msgstr "Cambia la mia email" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Cambia la password" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Cambia la Password" @@ -1273,9 +1322,10 @@ msgstr "Cambia la lingua del post a {0}" msgid "Change Your Email" msgstr "Cambia la tua email" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Messaggi" @@ -1285,14 +1335,14 @@ msgstr "Conversazione silenziata" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Impostazioni messaggi" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Impostazioni messaggi" @@ -1315,7 +1365,7 @@ msgstr "Verifica il mio stato" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Scopri alcuni utenti consigliati. Seguili per vedere utenti simili." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Controlla la tua email per il codice di accesso e inseriscilo qui." @@ -1338,23 +1388,27 @@ msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'e-mail con il co #~ msgid "Choose at least {0} more" #~ msgstr "Scegli almeno {0} in più" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Scegli feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Scegli per me" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Scegli utenti" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Scegli il servizio" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati." @@ -1374,7 +1428,7 @@ msgstr "Scegli questo colore per il tuo avatar" #~ msgid "Choose your main feeds" #~ msgstr "Scegli i tuoi feed principali" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Scegli la tua password" @@ -1386,16 +1440,15 @@ msgstr "Scegli la tua password" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Cancella tutti i dati legacy in archivio (poi ricomincia)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Cancella tutti i dati in archivio" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Cancella tutti i dati in archivio (poi ricomincia)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Annulla la ricerca" @@ -1403,11 +1456,11 @@ msgstr "Annulla la ricerca" #~ msgid "Clears all legacy storage data" #~ msgstr "Cancella tutti i dati di archiviazione legacy" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Cancella tutti i dati di archiviazione" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clicca qui" @@ -1430,15 +1483,15 @@ msgstr "Clicca qui per aprire il menu per {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clicca qui per aprire il menu per #{tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Clicca per disattivare le citazioni di questo post." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Clicca per attivare le citazioni di questo post." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Clicca per riprovare l'invio" @@ -1450,27 +1503,25 @@ msgstr "Clima" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Chiudi" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Chiudi la finestra attiva" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Chiudi l'avviso" @@ -1478,12 +1529,11 @@ msgstr "Chiudi l'avviso" msgid "Close bottom drawer" msgstr "Chiudi il bottom drawer" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Chiudi la finestra di dialogo" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Chiudi la finestra di dialogo GIF" @@ -1496,29 +1546,29 @@ msgid "Close image viewer" msgstr "Chiudi il visualizzatore di immagini" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Chiudi finestra" +#~ msgid "Close modal" +#~ msgstr "Chiudi finestra" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Chiudi la navigazione del footer" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Chiudi la finestra" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Chiude la barra di navigazione in basso" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Chiude l'editore del post ed elimina la bozza del post" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Chiude l'editore del post ed elimina la bozza del post" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1528,41 +1578,49 @@ msgstr "Chiude il visualizzatore dell'immagine di intestazione" msgid "Collapse list of users" msgstr "Chiudi la lista di utenti" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Commedia" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Linee guida della community" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Completa l'incorporazione e inizia a utilizzare il tuo account" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Completa la challenge" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Componi un post fino a {MAX_GRAPHEME_LENGTH} caratteri" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Scrivi la risposta" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "Compressione in corso..." @@ -1575,17 +1633,19 @@ msgstr "Scrivi la risposta" msgid "Configure content filtering setting for category: {name}" msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Configurato nelle <0>impostazioni di moderazione." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Conferma" @@ -1609,33 +1669,38 @@ msgstr "Conferma l'eliminazione dell'account" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Conferma la tua età per abilitare i contenuti per adulti." -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Conferma la tua età:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Conferma la tua data di nascita" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Codice di conferma" +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Connessione in corso..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Contatta il supporto" @@ -1652,12 +1717,12 @@ msgstr "Contenuto Bloccato" #~ msgid "Content Filtering" #~ msgstr "Filtro dei Contenuti" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Filtri dei contenuti" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Lingue dei contenuti" @@ -1667,13 +1732,13 @@ msgid "Content Not Available" msgstr "Contenuto non disponibile" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Avviso sul Contenuto" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Avviso sui contenuti" @@ -1681,12 +1746,12 @@ msgstr "Avviso sui contenuti" msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Continua" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Continua come {0} (attualmente connesso)" @@ -1694,9 +1759,9 @@ msgstr "Continua come {0} (attualmente connesso)" msgid "Continue thread..." msgstr "Continua thread..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Vai al passaggio successivo" @@ -1708,7 +1773,7 @@ msgstr "Vai al passaggio successivo" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Vai al passaggio successivo senza seguire nessun account" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Conversazione cancellata" @@ -1721,20 +1786,21 @@ msgstr "Cucina" msgid "Copied" msgstr "Copiato" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Versione di build copiata nella clipboard" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Copiato nel clipboard" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Copiato!" @@ -1742,17 +1808,17 @@ msgstr "Copiato!" msgid "Copies app password" msgstr "Copia la password dell'app" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copia" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Copia {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Copia il codice" @@ -1764,12 +1830,12 @@ msgstr "Copia link" msgid "Copy Link" msgstr "Copia link" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Copia il link alla lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Copia il link al post" @@ -1781,17 +1847,17 @@ msgstr "Copia il link al post" msgid "Copy message text" msgstr "Copia il testo del messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Copia il testo del post" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Copia codice QR" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" @@ -1803,11 +1869,11 @@ msgstr "Politica sul diritto d'autore" msgid "Could not leave chat" msgstr "Errore nell'abbandonare la conversazione" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Feed non caricato" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "No si è potuto caricare la lista" @@ -1826,34 +1892,39 @@ msgstr "" #~ msgid "Country" #~ msgstr "Paese" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Crea" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Crea un nuovo account" +#~ msgid "Create a new account" +#~ msgstr "Crea un nuovo account" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Crea un nuovo account Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Crea un codice QR per uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Crea uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Crea uno starter pack per me" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Crea un account" @@ -1862,11 +1933,11 @@ msgstr "Crea un account" msgid "Create an account" msgstr "Crea un account" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "In alternativa crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Creane un altro" @@ -1875,7 +1946,7 @@ msgid "Create App Password" msgstr "Crea un password per l'app" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crea un nuovo account" @@ -1887,7 +1958,7 @@ msgstr "Crea un nuovo account" msgid "Create report for {0}" msgstr "Crea un report per {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Creato {0}" @@ -1901,49 +1972,45 @@ msgstr "Creato {0}" #~ msgstr "Crea una scheda con una miniatura. La scheda si collega a {url}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Cultura" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Personalizzato" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Dominio personalizzato" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "I feed personalizzati creati dalla comunità ti offrono nuove esperienze e ti aiutano a trovare contenuti interessanti." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Personalizza i media da i siti esterni." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Personalizza chi può interagire con questo post." #~ msgid "Danger Zone" #~ msgstr "Zona di Pericolo" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Scuro" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Aspetto scuro" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Tema scuro" @@ -1951,38 +2018,43 @@ msgstr "Tema scuro" #~ msgid "Dark Theme" #~ msgstr "Tema scuro" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Data di nascita" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Disattiva account" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Disattiva il mio account" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Eliminare errori nella Moderazione" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Pannello per il debug" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Elimina l'account" @@ -1993,16 +2065,16 @@ msgstr "Elimina l'account" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Cancella l'account <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Elimina la password dell'app" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Eliminare la password dell'app?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -2010,7 +2082,7 @@ msgstr "" msgid "Delete for me" msgstr "Cancella per me" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Elimina la lista" @@ -2029,33 +2101,33 @@ msgstr "Cancellare account" #~ msgid "Delete my account…" #~ msgstr "Cancella il mio account…" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Cancellare Account…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Elimina il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Elimina starter pack" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Eliminare lo starter pack?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Eliminare questa lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Eliminare questo post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Eliminato" @@ -2063,27 +2135,35 @@ msgstr "Eliminato" msgid "Deleted post." msgstr "Post eliminato." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Descrizione" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Testo descrittivo alternativo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Stacca citazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "Staccare la citazione del post?" @@ -2097,61 +2177,65 @@ msgstr "Staccare la citazione del post?" msgid "Dialog: adjust who can interact with this post" msgstr "Dialog: configura chi può interagire con questo post" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Volevi dire qualcosa?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Soffuso" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "I messaggi diretti sono arrivati!" +#~ msgid "Direct messages are here!" +#~ msgstr "I messaggi diretti sono arrivati!" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "Disattiva la riproduzione automatica per le GIF" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Disattiva l'email 2FA" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Disattiva il feedback tattile" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Disattiva sottotitoli" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Disabilitato" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Scartare" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + #~ msgid "Discard draft" #~ msgstr "Scarta la bozza" -#: src/view/com/composer/Composer.tsx:837 +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" @@ -2168,15 +2252,15 @@ msgstr "Scopri nuovi feed personalizzati" msgid "Discover new feeds" msgstr "Scopri nuovi feed" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Scopri nuovi feed" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "Ignora" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Ignora" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Ignora errore" @@ -2184,19 +2268,29 @@ msgstr "Ignora errore" msgid "Dismiss getting started guide" msgstr "Ignora la guida iniziale" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Ignora l'icona ALT più grande" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Nome visualizzato" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Nome Visualizzato" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Nome Visualizzato" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Pannello DNS" @@ -2204,6 +2298,14 @@ msgstr "Pannello DNS" msgid "Do not apply this mute word to users you follow" msgstr "Non applicare questa parola silenziata agli utenti seguiti" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Non include nudità." @@ -2212,41 +2314,40 @@ msgstr "Non include nudità." msgid "Doesn't begin or end with a hyphen" msgstr "Non inizia o termina con un trattino" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Valore del dominio" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Dominio verificato!" #~ msgid "Don't have an invite code?" #~ msgstr "Non hai un codice di invito?" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fatto" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Fatto" @@ -2255,26 +2356,30 @@ msgstr "Fatto" msgid "Done{extraText}" msgstr "Fatto{extraText}" +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + #~ msgid "Double tap to sign in" #~ msgstr "Usa il doppio tocco per accedere" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Scarica Bluesky" #~ msgid "Download Bluesky account data (repository)" #~ msgstr "Scarica i dati dell'account Bluesky (archivio)" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Scarica il file CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Trascina e rilascia per aggiungere immagini" @@ -2286,39 +2391,43 @@ msgstr "Trascina e rilascia per aggiungere immagini" msgid "Duration:" msgstr "Durata:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "e.g. alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "e.g. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "e.g. Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "e.g. alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "e.g. Artista, amo i gatti, mi piace leggere." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "e.g. Artista, amo i gatti, mi piace leggere." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "E.g. nudi artistici." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "e.g. Gli utenti più seguiti" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "e.g. Spammers" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "e.g. Utenti più prolifici." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "e.g. Utenti che rispondono ripetutamente con annunci." @@ -2326,58 +2435,59 @@ msgstr "e.g. Utenti che rispondono ripetutamente con annunci." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Modifica" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Modifica" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Modifica l'avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Modifica i feed" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Modifica l'immagine" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Modifica le impostazioni di interazione" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Modifica i dettagli della lista" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Modifica l'elenco di moderazione" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Modifica i miei feed" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Modifica il mio profilo" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Modifica il mio profilo" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Modifica utenti" @@ -2386,13 +2496,15 @@ msgstr "Modifica utenti" msgid "Edit post interaction settings" msgstr "Modifica le impostazioni di interazione del post" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Modifica il profilo" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Modifica il Profilo" @@ -2401,11 +2513,11 @@ msgstr "Modifica il Profilo" #~ msgid "Edit Saved Feeds" #~ msgstr "Modifica i feed memorizzati" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Modifica starter pack" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Modifica l'elenco degli utenti" @@ -2413,20 +2525,20 @@ msgstr "Modifica l'elenco degli utenti" msgid "Edit who can reply" msgstr "Modifica chi può rispondere" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Modifica il tuo nome visualizzato" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Modifica il tuo nome visualizzato" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Modifica la descrizione del tuo profilo" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Modifica la descrizione del tuo profilo" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Modifica il tuo starter pack" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Formazione scolastica" @@ -2434,7 +2546,7 @@ msgstr "Formazione scolastica" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "Scegli \"Everybody\" o \"Nobody\\" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Email" @@ -2443,11 +2555,11 @@ msgstr "Email" msgid "Email 2FA disabled" msgstr "E-mail 2FA disattivata" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Indirizzo email" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2464,21 +2576,21 @@ msgstr "Email Aggiornata" msgid "Email verified" msgstr "Email verificata" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Email:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Incorpora il post" @@ -2486,11 +2598,11 @@ msgstr "Incorpora il post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e incollalo nel codice HTML del tuo sito web." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Attiva {0} solo" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Attiva il contenuto per adulti" @@ -2503,24 +2615,24 @@ msgstr "Attiva il contenuto per adulti" #~ msgid "Enable adult content in your feeds" #~ msgstr "Abilita i contenuti per adulti nei tuoi feed" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Abilita i media esterni" #~ msgid "Enable External Media" #~ msgstr "Attiva Media Esterna" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Attiva notifiche prioritarie" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Attiva sottotitoli" @@ -2528,17 +2640,17 @@ msgstr "Attiva sottotitoli" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Abilita solo questa fonte" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Abilitato" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Fine del feed" @@ -2546,7 +2658,7 @@ msgstr "Fine del feed" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2554,7 +2666,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "Inserisci un nome per questa password dell'app" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Inserisci una password" @@ -2563,6 +2675,10 @@ msgstr "Inserisci una password" msgid "Enter a word or tag" msgstr "Inserisci una parola o tag" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Inserire il codice di conferma" @@ -2574,23 +2690,23 @@ msgstr "Inserire il codice di conferma" msgid "Enter the code you received to change your password." msgstr "Inserisci il codice che hai ricevuto per modificare la tua password." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Inserisci il dominio che vuoi utilizzare" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Inserisci l'e-mail che hai utilizzato per creare il tuo account. Ti invieremo un \"codice di reset\" in modo che tu possa impostare una nuova password." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Inserisci la tua data di nascita" #~ msgid "Enter your email" #~ msgstr "Inserisci la tua email" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Inserisci il tuo indirizzo email" @@ -2605,10 +2721,14 @@ msgstr "Inserisci il tuo nuovo indirizzo email qui sotto." #~ msgid "Enter your phone number" #~ msgstr "Inserisci il tuo numero di telefono" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Inserisci il tuo nome utente e la tua password" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Un errore è avvenuto durante il salvataggio del file" @@ -2617,12 +2737,12 @@ msgstr "Un errore è avvenuto durante il salvataggio del file" msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Errore:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Tutti" @@ -2634,10 +2754,8 @@ msgstr "Tutti possono rispondere" msgid "Everybody can reply to this post." msgstr "Tutto possono rispondere a questo post." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Tutti" @@ -2657,7 +2775,7 @@ msgstr "Escludi utenti che segui" msgid "Excludes users you follow" msgstr "Esclude gli utenti che segui" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2665,11 +2783,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "Uscita dall'eliminazione dell'account" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Uscita dal processo di modifica" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Uscita dal processo di ritaglio dell'immagine" @@ -2692,12 +2810,16 @@ msgstr "Ampliare il testo alternativo" msgid "Expand list of users" msgstr "Espoandi la lista di utenti" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi l'intero post a cui stai rispondendo" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "SPERIMENTALE: Abilitando questa opzione, riceverai notifiche esclusivamente dagli utenti che segui. Continueremo ad aggiungere nuovi controlli in futuro." @@ -2717,32 +2839,32 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Esporta i miei dati" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Esporta i miei dati" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Media esterni" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I multimediali esterni possono consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Preferenze multimediali esterni" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Impostazioni multimediali esterni" @@ -2751,12 +2873,12 @@ msgstr "Impostazioni multimediali esterni" msgid "Failed to create app password." msgstr "Impossibile creare la password dell'app." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Impossibile creare starter pack" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova." @@ -2764,11 +2886,11 @@ msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova msgid "Failed to delete message" msgstr "Errore nel cancellare il messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Impossibile cancellare lo starter pack" @@ -2777,12 +2899,11 @@ msgstr "Impossibile cancellare lo starter pack" msgid "Failed to load feeds preferences" msgstr "Impossibile caricare preferenze feed" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Impossibile caricare GIF" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Impossibile caricare messaggi vecchi" @@ -2798,7 +2919,11 @@ msgstr "Impossibile caricare feed consigliati" msgid "Failed to load suggested follows" msgstr "Impossibile caricare follow consigliati" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Non è possibile salvare l'immagine: {0}" @@ -2806,40 +2931,39 @@ msgstr "Non è possibile salvare l'immagine: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Impossibile salvare preferenze notifiche, per favore riprova" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Impossibile inviare messaggio" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Impossibile inviare appello, per favore riprova." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Impossbile abilitare silenziamento thread, per favore riprova" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Impossbile aggiornare i feed" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Feed creato da {0}" @@ -2856,26 +2980,30 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Commenti" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Feed" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo di esperienza nella codifica. Vedi <0/> per ulteriori informazioni." @@ -2883,11 +3011,12 @@ msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo #~ msgid "Feeds can be topical as well!" #~ msgstr "I feed possono anche avere tematiche!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Feed aggiornati!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Archivia i contenuti" @@ -2899,7 +3028,7 @@ msgstr "File salvata con successo!" msgid "Filter from feeds" msgstr "Filtra dai feed" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Finalizzando" @@ -2913,7 +3042,7 @@ msgstr "Scopri account da seguire" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "Scopri nuovi account e feed da seguire in Esplora." -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Scopri post e utenti su Bluesky" @@ -2926,18 +3055,18 @@ msgstr "Scopri post e utenti su Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Scoprendo account simili…" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Ottimizza il contenuto che vedi nel tuo Following feed." #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ottimizza il contenuto che vedi nella Home." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Ottimizza la visualizzazione delle discussioni." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Finalizza" @@ -2949,25 +3078,25 @@ msgstr "Finalizza" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Flessibile" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Gira in orizzontale" +#~ msgid "Flip horizontal" +#~ msgstr "Gira in orizzontale" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Gira in verticale" +#~ msgid "Flip vertically" +#~ msgstr "Gira in verticale" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Segui" @@ -2976,12 +3105,12 @@ msgctxt "action" msgid "Follow" msgstr "Segui" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Segui {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Segui {name}" @@ -2989,13 +3118,13 @@ msgstr "Segui {name}" msgid "Follow 7 accounts" msgstr "Segui 7 account" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Segui l'Account" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Segui tutti" @@ -3003,16 +3132,16 @@ msgstr "Segui tutti" #~ msgid "Follow All" #~ msgstr "Segui tutti" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Ricambia follow" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "Ricambia follow" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Segui altri account per connetterti ai tuoi interessi e crea il tuo network personale." @@ -3048,7 +3177,7 @@ msgstr "Seguito da <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguito da <0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Utenti seguiti" @@ -3064,17 +3193,17 @@ msgstr "ti segue" msgid "followed you back" msgstr "ti ha seguito" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Follower" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Follower di @{0} che conosci" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Follower che conosci" @@ -3082,34 +3211,34 @@ msgstr "Follower che conosci" #~ msgstr "following" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Following" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Seguiti {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Preferenze del feed Following" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Preferenze del Following Feed" @@ -3117,16 +3246,26 @@ msgstr "Preferenze del Following Feed" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "Il feed Following mostra i post più recenti delle persone che segui." -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Ti segue" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Ti Segue" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Cibo" @@ -3138,6 +3277,11 @@ msgstr "Per motivi di sicurezza, invieremo un codice di conferma al tuo indirizz msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Per motivi di sicurezza non potrai visualizzarlo nuovamente. Se perdi questa password, dovrai generarne una nuova." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Per sempre" @@ -3148,16 +3292,16 @@ msgstr "Per sempre" #~ msgid "Forgot password" #~ msgstr "Ho dimenticato la password" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Hai dimenticato la Password" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Hai dimenticato la password?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Password dimenticata?" @@ -3165,34 +3309,34 @@ msgstr "Password dimenticata?" msgid "Frequently Posts Unwanted Content" msgstr "Pubblica spesso contenuti indesiderati" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Di @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Da <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galleria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Genera uno starter pack" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Ottieni aiuto" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Iniziamo" +#~ msgid "Get started" +#~ msgstr "Iniziamo" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3207,7 +3351,7 @@ msgstr "Iniziamo" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Dai un volto al tuo profilo" @@ -3215,14 +3359,13 @@ msgstr "Dai un volto al tuo profilo" msgid "Glaring violations of law or terms of service" msgstr "Evidenti violazioni della legge o dei termini di servizio" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Torna indietro" @@ -3230,10 +3373,10 @@ msgstr "Torna indietro" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Torna Indietro" @@ -3241,35 +3384,35 @@ msgstr "Torna Indietro" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Torna al passaggio precedente" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Torna indietro" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Torna alla home" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Torna alla Home" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Vai a @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Vai alla conversazione con {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Seguente" @@ -3287,6 +3430,8 @@ msgid "Go to user's profile" msgstr "Vai al profilo dell'utente" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Media grafici" @@ -3294,11 +3439,11 @@ msgstr "Media grafici" msgid "Half way there!" msgstr "Siamo a metà!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Nome Utente" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Aptica" @@ -3306,24 +3451,24 @@ msgstr "Aptica" msgid "Harassment, trolling, or intolerance" msgstr "Molestie, trolling o intolleranza" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Ci sono problemi?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Aiuto" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar." @@ -3343,22 +3488,22 @@ msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o msgid "Here is your app password." msgstr "Ecco la password dell'app." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Lista nascosta" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Nascondi" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Nascondi" @@ -3368,36 +3513,36 @@ msgstr "Nascondi" #~ msgid "Hide post" #~ msgstr "Nascondi post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Nascondi post per me" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Nascondi risposta per tutti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Nascondi risposta per me" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Nascondere il contenuto" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Vuoi nascondere questo post?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "Nascondere questa risposta?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Nascondi elenco utenti" @@ -3424,7 +3569,7 @@ msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietari msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Stiamo riscontrando problemi nel trovare questo feed. Potrebbe essere stato cancellato." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Stiamo riscontrando problemi nel trovare questi dati. Guarda PI[U giù per trovare più dettagli. Se il problema continua mettiti in contatto." @@ -3432,51 +3577,55 @@ msgstr "Stiamo riscontrando problemi nel trovare questi dati. Guarda PI[U giù p msgid "Hmmmm, we couldn't load that moderation service." msgstr "Non siamo riusciti a caricare il servizio di moderazione." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Home" #~ msgid "Home Feed Preferences" #~ msgstr "Preferenze per i feed per la pagina d'inizio" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Hosting:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Servizio di hosting" #~ msgid "Hosting provider address" #~ msgstr "Indirizzo del fornitore di hosting" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Come dovremmo aprire questo link?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Ho un codice" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Ho un codice di conferma" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Ho il mio dominio" @@ -3490,18 +3639,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Se il testo alternativo è lungo, attiva/disattiva lo stato del testo alternativo" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Se niente è selezionato, adatto a tutte le età." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Se niente è selezionato, adatto a tutte le età." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se non sei ancora maggiorenne secondo le leggi del tuo Paese, il tuo genitore o tutore legale deve leggere i Termini a tuo nome." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Se elimini questa lista, non potrai recuperarla." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Se rimuovi questo post, non potrai recuperarlo." @@ -3517,19 +3666,18 @@ msgstr "Se stai cercando di cambiare username o email, fallo prima di disattivar msgid "Illegal and Urgent" msgstr "Illegale e Urgente" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Immagine" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Testo alternativo dell'immagine" +#~ msgid "Image alt text" +#~ msgstr "Testo alternativo dell'immagine" #~ msgid "Image options" #~ msgstr "Opzioni per l'immagine" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "Immagine salvata nella galleria!" @@ -3545,7 +3693,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "Messaggi inappropriati or link espliciti" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" @@ -3563,7 +3711,7 @@ msgstr "Inserisci il codice di conferma per la cancellazione dell'account" msgid "Input name for app password" msgstr "Inserisci il nome per la password dell'app" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Inserisci la nuova password" @@ -3574,7 +3722,7 @@ msgstr "Inserisci la password per la cancellazione dell'account" #~ msgid "Input phone number for SMS verification" #~ msgstr "Inserisci il numero di telefono per la verifica via SMS" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Inserisci il codice che ti è stato inviato via email" @@ -3582,7 +3730,7 @@ msgstr "Inserisci il codice che ti è stato inviato via email" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Inserisci la password relazionata a {identifier}" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Inserisci il nome utente o l'indirizzo email che hai utilizzato al momento della registrazione" @@ -3592,11 +3740,11 @@ msgstr "Inserisci il nome utente o l'indirizzo email che hai utilizzato al momen #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Inserisci la tua password" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Inserisci il tuo provider di hosting preferito" @@ -3604,15 +3752,19 @@ msgstr "Inserisci il tuo provider di hosting preferito" msgid "Input your user handle" msgstr "Inserisci il tuo identificatore" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Interazione limitata" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Introduzione ai Messaggi Diretti" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Introduzione ai Messaggi Diretti" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Codice di conferma 2FA non valido." @@ -3621,12 +3773,12 @@ msgstr "Codice di conferma 2FA non valido." msgid "Invalid or unsupported post record" msgstr "Protocollo del post non valido o non supportato" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Nome dell'utente o password errato" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3637,7 +3789,7 @@ msgstr "" msgid "Invite a Friend" msgstr "Invita un amico" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Codice d'invito" @@ -3668,30 +3820,39 @@ msgstr "Invita i tuoi amici per seguire persone e feed preferiti" msgid "Invites, but personal" msgstr "Inviti, ma personali" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Mostra i post delle persone che segui." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Lavori" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Entra in Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Entra nella conversazione" @@ -3705,29 +3866,34 @@ msgstr "Entra nella conversazione" #~ msgstr "Iscriviti alla Lista d'Attesa" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Giornalismo" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "l'etichetta è stata inserita su questo {labelTarget}" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Etichettato da {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Etichettato dall'autore." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Etichette" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere utilizzate per nascondere, avvisare e classificare il network." @@ -3747,54 +3913,64 @@ msgstr "Etichette sul tuo contenuto" msgid "Language selection" msgstr "Seleziona la lingua" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Impostazione delle lingue" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Impostazione delle Lingue" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Lingue" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + #~ msgid "Last step!" #~ msgstr "Ultimo passo!" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Ultime" #~ msgid "Learn more" #~ msgstr "Ulteriori informazioni" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Ulteriori Informazioni" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Scopri di più su Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Scopri di più sulla moderazione applicata a questo contenuto." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Ulteriori informazioni su questo avviso" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Scopri cosa è pubblico su Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Saperne di più." @@ -3815,7 +3991,7 @@ msgstr "Abbandona la chat" msgid "Leave conversation" msgstr "Abbandona la conversazione" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Deseleziona tutte per vedere qualsiasi lingua." @@ -3831,24 +4007,23 @@ msgstr "mancanti." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "L'archivio legacy è stato cancellato, riattiva la app." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Lascia scegliere a me" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Reimpostazione della password!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Andiamo!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Chiaro" @@ -3864,21 +4039,21 @@ msgstr "Metti like a 10 post" msgid "Like 10 posts to train the Discover feed" msgstr "Metti like a 10 post per allenare il feed Discover" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Metti mi piace a questo feed" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Piace a" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Piace A" @@ -3902,7 +4077,7 @@ msgstr "piace il tuo feed personalizzato" msgid "liked your post" msgstr "piace il tuo post" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Mi piace" @@ -3910,24 +4085,24 @@ msgstr "Mi piace" msgid "Likes on this post" msgstr "Mi Piace in questo post" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Lista" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Lista avatar" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Lista bloccata" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Lista di {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Lista cancellata" @@ -3935,32 +4110,31 @@ msgstr "Lista cancellata" msgid "List has been hidden" msgstr "La lista è stata nascosta" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Lista Nascosta" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Lista muta" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nome della lista" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Lista sbloccata" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Lista non mutata" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Liste" @@ -3983,25 +4157,25 @@ msgstr "Carica più feed consigliati" msgid "Load more suggested follows" msgstr "Carica più follow consigliati" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Carica più notifiche" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Carica nuovi posts" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Caricamento..." #~ msgid "Local dev server" #~ msgstr "Server di sviluppo locale" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Log" @@ -4017,22 +4191,30 @@ msgstr "Accedi o Iscriviti" msgid "Log out" msgstr "Esci" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilità degli utenti disconnessi" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Accedi all'account che non è nella lista" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Tieni premutoper aprire il menu dei tag per #{tag}" #~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" #~ msgstr "Sembra che questo feed sia disponibile solo per gli utenti con un account Bluesky. Per favore registrati o accedi per visualizzare questo feed!" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Ha un formato simile a XXXX-XXXXX" @@ -4048,7 +4230,7 @@ msgstr "Sembra che tu non abbia più feed fissati. Ma non ti preoccupare, puoi a msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sembra che ti manchi un following feed. <0>Clicca qui per aggiungere uno." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Creane uno per me" @@ -4071,30 +4253,35 @@ msgstr "Segna come letto" #~ msgid "May only contain letters and numbers" #~ msgstr "Può contenere solo lettere e numeri" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Media" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "utenti menzionati" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Utenti menzionati" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menù" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Messaggio {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Messaggio cancellato" @@ -4105,23 +4292,23 @@ msgstr "Messaggio cancellato" msgid "Message from server: {0}" msgstr "Messaggio dal server: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Input del messaggio" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Il messaggio è troppo lungo" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Impostazioni messaggio" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Messaggi" @@ -4134,63 +4321,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Tema" +#~ msgid "Mode" +#~ msgstr "Tema" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderazione" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Dettagli sulla moderazione" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista di moderazione di {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Lista di moderazione di <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Le tue liste di moderazione" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Lista di moderazione creata" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Lista di moderazione aggiornata" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste di Moderazione" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "impostazioni di moderazione" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Impostazioni di moderazione" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Stato di moderazione" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Strumenti di moderazione" @@ -4199,7 +4386,7 @@ msgstr "Strumenti di moderazione" msgid "Moderator has chosen to set a general warning on the content." msgstr "Il moderatore ha scelto di mettere un avviso generale sul contenuto." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Di più" @@ -4207,52 +4394,53 @@ msgstr "Di più" msgid "More feeds" msgstr "Altri feed" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Altre opzioni" #~ msgid "More post options" #~ msgstr "Altre impostazioni per il post" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Dai priorità alle risposte con più likes" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Film" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Musica" #~ msgid "Must be at least 3 characters" #~ msgstr "Deve contenere almeno 3 caratteri" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Silenzia" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -msgid "Mute" -msgstr "Silenzia" - #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "Silenzia {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Silenzia l'account" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Silenzia gli accounts" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Silenzia tutti i post {displayTag}" @@ -4273,7 +4461,7 @@ msgstr "Silenzia la conversazione" msgid "Mute in:" msgstr "Silenzia in:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Silenziare la lista" @@ -4282,7 +4470,7 @@ msgstr "Silenziare la lista" #~ msgid "Mute notifications" #~ msgstr "Silenza notifiche" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Vuoi silenziare queste liste?" @@ -4313,13 +4501,13 @@ msgstr "Siilenzia questa parola solo nei tags" msgid "Mute this word until you unmute it" msgstr "Silenzia questa parola finchè non la riattivi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Silenzia parole & tags" @@ -4327,16 +4515,16 @@ msgstr "Silenzia parole & tags" #~ msgid "Muted" #~ msgstr "Silenziato" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Account silenziato" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Accounts Silenziati" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tue notifiche. Silenziare è completamente privato." @@ -4344,32 +4532,32 @@ msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tu msgid "Muted by \"{0}\"" msgstr "Silenziato da \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Parole e tags silenziati" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenziare un account è privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post né riceverai le loro notifiche." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Il mio Compleanno" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "I miei Feed" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Il mio Profilo" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "I miei feed salvati" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "I miei Feed Salvati" @@ -4377,11 +4565,11 @@ msgstr "I miei Feed Salvati" #~ msgstr "my-server.com" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nome" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Il nome è obbligatorio" @@ -4393,28 +4581,32 @@ msgid "Name or Description Violates Community Standards" msgstr "Il Nome o la Descrizione Viola gli Standard della Comunità" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Natura" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "Vai a {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Vai allo starter pack" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Vai allo starter pack" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Vai alla schermata successiva" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Vai al tuo profilo" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Hai bisogno di segnalare una violazione del copyright?" @@ -4425,34 +4617,38 @@ msgstr "Hai bisogno di segnalare una violazione del copyright?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Non perdere mai l'accesso ai tuoi follower o ai tuoi dati." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Non importa, crea una handle per me" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Nuova" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Nuova" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Nuova chat" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Nuovo messaggio" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Nuova Lista di Moderazione" @@ -4464,22 +4660,22 @@ msgstr "Nuovo Password" msgid "New Password" msgstr "Nuovo Password" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Nuovo Post" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Nuovo post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Nuovo post" @@ -4491,30 +4687,30 @@ msgstr "Nuovo post" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Nuova lista" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Mostrare prima le risposte più recenti" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Notizie" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4528,35 +4724,39 @@ msgstr "Seguente" msgid "Next image" msgstr "Immagine seguente" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Senza descrizione" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Nessun pannello DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un problema con Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Nessun feed trovato. Prova a cercarne altri." -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Non segui più {0}" @@ -4564,11 +4764,11 @@ msgstr "Non segui più {0}" msgid "No longer than 253 characters" msgstr "Non più di 253 caratteri" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Ancora nessun messaggio" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Nessuna conversazione da visualizzare" @@ -4576,10 +4776,8 @@ msgstr "Nessuna conversazione da visualizzare" msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Nessuno" @@ -4587,16 +4785,24 @@ msgstr "Nessuno" msgid "No one but the author can quote this post." msgstr "Nessuno ma tu potrai citare questo post." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Nessun post. Per ora. :P" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Nessun risultato" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Nessun risultato" @@ -4604,28 +4810,27 @@ msgstr "Nessun risultato" msgid "No results found" msgstr "Nessun risultato trovato" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Nessun risultato trovato per {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Nessun risultato trovato per \"{search}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "No grazie" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Nessuno" @@ -4633,12 +4838,21 @@ msgstr "Nessuno" #~ msgid "Nobody can reply" #~ msgstr "Nessuno puo rispondere" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha messo like. Fallo tu per primo/a!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Nessun utente trovato. Prova a cercarne altri." @@ -4649,8 +4863,8 @@ msgstr "Nudità non sessuale" #~ msgid "Not Applicable." #~ msgstr "Non applicabile." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Non trovato" @@ -4659,49 +4873,48 @@ msgstr "Non trovato" msgid "Not right now" msgstr "Non adesso" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Nota sulla condivisione" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita solo la visibilità dei tuoi contenuti sull'app e sul sito Web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Nulla qui" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Filtri notifiche" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Notifiche" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Notifiche" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notifiche" @@ -4709,11 +4922,12 @@ msgstr "Notifiche" msgid "now" msgstr "ora" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Ora" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Nudità" @@ -4731,29 +4945,28 @@ msgstr "Nudità o contenuti per adulti non etichettati come tali" msgid "Off" msgstr "Spento" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh no!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Oh no! Qualcosa è andato male." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Va bene" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Mostrare prima le risposte più vecchie" @@ -4765,11 +4978,11 @@ msgstr "Mostrare prima le risposte più vecchie" #~ msgid "on {str}" #~ msgstr "su {str}" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Reimpostazione dell'onboarding" @@ -4777,11 +4990,11 @@ msgstr "Reimpostazione dell'onboarding" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Solo i file .jpg e .png sono supportati" @@ -4797,7 +5010,11 @@ msgstr "Solo {0} può rispondere." msgid "Only contains letters, numbers, and hyphens" msgstr "Contiene solo lettere, numeri e trattini" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4806,42 +5023,46 @@ msgid "Oops, something went wrong!" msgstr "Ops! Qualcosa è andato male!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Ops!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Apri" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Apri il creatore di avatar" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Apri opzioni conversazione" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Apri i links con il navigatore della app" @@ -4849,7 +5070,7 @@ msgstr "Apri i links con il navigatore della app" msgid "Open message options" msgstr "Apri opzioni messaggio" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" @@ -4857,20 +5078,20 @@ msgstr "Apri le impostazioni delle parole e dei tag silenziati" msgid "Open navigation" msgstr "Apri la navigazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Apri menu degli starter pack" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Apri il registro di sistema" @@ -4878,15 +5099,19 @@ msgstr "Apri il registro di sistema" msgid "Opens {numItems} options" msgstr "Apre le {numItems} opzioni" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Apre un menu per scegliere chi può rispondere a questo thread" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Apre le impostazioni di accessibilità" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Apre dettagli aggiuntivi per una debug entry" @@ -4894,44 +5119,44 @@ msgstr "Apre dettagli aggiuntivi per una debug entry" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Apre un elenco ampliato di utenti in questa notifica" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Apre le impostazioni del tema" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Apre la fotocamera sul dispositivo" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Apre impostazioni messaggi" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Apre il compositore" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Apre le impostazioni configurabili delle lingue" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Apre la galleria fotografica del dispositivo" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine di sfondo e la descrizione" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Apre le impostazioni esterne per gli incorporamenti" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Apre il procedimento per creare un nuovo account Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Apre il procedimento per accedere al tuo account esistente di Bluesky" @@ -4952,42 +5177,42 @@ msgstr "Apre la finestra per selezionare i GIF" msgid "Opens list of invite codes" msgstr "Apre la lista dei codici di invito" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Apre menu per confermare la disattivazione dell'account" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Apre la modale per la conferma dell'eliminazione dell'account. Richiede un codice e-mail" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Apre il modal per la conferma dell'eliminazione dell'account. Richiede un codice email." -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Apre la modale per modificare il tuo password di Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Apre la modale per la scelta di un nuovo handle di Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Apre la modale per scaricare i dati del tuo account Bluesky (repository)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Apre la modale per la verifica dell'e-mail" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Apre il modal per l'utilizzo del dominio personalizzato" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Apre le impostazioni di moderazione" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Apre il modulo di reimpostazione della password" @@ -4996,18 +5221,18 @@ msgstr "Apre il modulo di reimpostazione della password" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Apre la schermata per modificare i feed salvati" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Apre la schermata con tutti i feed salvati" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Apre le impostazioni della password dell'app" #~ msgid "Opens the app password settings page" #~ msgstr "Apre la pagina delle impostazioni della password dell'app" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Apre le preferenze del feed Following" @@ -5022,25 +5247,25 @@ msgstr "Apre il sito Web collegato" #~ msgid "Opens the message settings page" #~ msgstr "Apre le impostazioni dei messaggi" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Apre la pagina del registro di sistema" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Apre le preferenze dei threads" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Apre questo profilo" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Apre selettore video" @@ -5048,8 +5273,8 @@ msgstr "Apre selettore video" msgid "Option {0} of {numItems}" msgstr "Opzione {0} di {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" @@ -5057,7 +5282,7 @@ msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" msgid "Options:" msgstr "Opzioni:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Oppure combina queste opzioni:" @@ -5070,14 +5295,15 @@ msgid "Or, log into one of your other accounts." msgstr "Oppure, accedi in uno dei tuoi altri account." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Altri" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Altro account" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Altri account" @@ -5088,21 +5314,21 @@ msgstr "Altri account" msgid "Other..." msgstr "Altro..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "I nostri moderatori hanno revisionato i report e deciso di disabilitare il tuo accesso ai messaggi su Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Pagina non trovata" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Pagina non trovata" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -5112,42 +5338,42 @@ msgstr "Password" msgid "Password Changed" msgstr "Password Cambiato" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Password aggiornata" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Password aggiornata!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Pausa" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Metti video in pausa" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Utenti" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "È richiesta l'autorizzazione per accedere al la cartella delle immagini." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "L'autorizzazione per accedere la cartella delle immagini è stata negata. Si prega di abilitarla nelle impostazioni del sistema." @@ -5156,63 +5382,72 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Animali di compagnia" #~ msgid "Phone number" #~ msgstr "Numero di telefono" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Foto" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Immagini per adulti." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Fissa su Home" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Fissa su Home" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Feed Fissati" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Fissa ai tuoi feed" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Play" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Riproduci {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Riproduci o pausa la GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Riproduci video" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Riproduci video" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Riproduci questa GIF" @@ -5221,7 +5456,7 @@ msgid "Please choose your handle." msgstr "Scegli il tuo nome utente." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Scegli la tua password." @@ -5255,11 +5490,11 @@ msgstr "Inserisci una parola, un tag o una frase valida da silenziare" #~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Inserisci la tua email." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Inserisci il tuo codice d'invito." @@ -5267,16 +5502,16 @@ msgstr "Inserisci il tuo codice d'invito." msgid "Please enter your password as well:" msgstr "Inserisci anche la tua password:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Spiega perché ritieni che questa etichetta sia stata applicata in modo errato da {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Per favore spiega perché pensi che i tuoi messaggi siano stati erroneamente disabiltiati" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Accedi come @{0}" @@ -5291,23 +5526,24 @@ msgid "Please Verify Your Email" msgstr "Verifica la tua email" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Attendi il caricamento della scheda di collegamento" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Attendi il caricamento della scheda di collegamento" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politica" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Porno" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Post" @@ -5324,17 +5560,21 @@ msgstr "Post" msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Post eliminato" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Post nascosto" @@ -5349,7 +5589,7 @@ msgstr "Post nascosto dalla Parola Silenziata" msgid "Post Hidden by You" msgstr "Post nascosto da te" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Impostazioni interazioni post" @@ -5357,7 +5597,7 @@ msgstr "Impostazioni interazioni post" msgid "Post language" msgstr "Lingua del post" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Lingue del post" @@ -5366,12 +5606,20 @@ msgstr "Lingue del post" msgid "Post not found" msgstr "Post non trovato" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "post" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Post" @@ -5395,7 +5643,7 @@ msgstr "Link potenzialmente fuorviante" msgid "Preference saved" msgstr "Preferenze salvate" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Premere per tentare di riconnetterti" @@ -5405,8 +5653,8 @@ msgstr "Premi per cambiare provider di hosting" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Premere per riprovare" @@ -5418,79 +5666,83 @@ msgstr "Clicca per vedere i follower di questo account che condividete" msgid "Previous image" msgstr "Immagine precedente" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Lingua principale" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Dai priorità a quelli che segui" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Impostazioni di priorità" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacy" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Informativa sulla privacy" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Messaggia privatamente con altri utenti." +#~ msgid "Privately chat with other users." +#~ msgstr "Messaggia privatamente con altri utenti." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Elaborazione in corso…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profilo" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profilo aggiornato" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Proteggi il tuo account verificando la tua email." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Pubblico" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Elenchi pubblici e condivisibili di utenti da disattivare o bloccare in blocco." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Liste pubbliche e condivisibili che possono impulsare i feed." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Pubblica il post" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Pubblica il post" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Pubblica la risposta" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Pubblica la risposta" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5508,8 +5760,8 @@ msgstr "Codice QR salvato nella galleria!" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5528,32 +5780,32 @@ msgstr "Cita il post" #~ msgid "Quote Post" #~ msgstr "Cita il post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "Citazione post riattaccata" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "Citazione post staccata con successo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "Citazioni post disattivate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "Citazioni post attivate" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Impostazioni citazioni" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Citazioni" @@ -5561,16 +5813,16 @@ msgstr "Citazioni" msgid "Quotes of this post" msgstr "Citazioni post" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Rapporti" +#~ msgid "Ratios" +#~ msgstr "Rapporti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Riattacca citazioni" @@ -5578,23 +5830,25 @@ msgstr "Riattacca citazioni" msgid "Reactivate your account" msgstr "Riattiva account" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Leggi il blog di Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Leggi l'Informativa sulla Privacy di Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Leggi i Termini di Servizio di Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Motivo:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Ricerche recenti" @@ -5604,26 +5858,25 @@ msgstr "Ricerche recenti" #~ msgid "Recommended Users" #~ msgstr "Utenti consigliati" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Riconnetti" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Ricarica notifiche" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Ricarica conversazioni" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5640,11 +5893,11 @@ msgstr "Rimuovi {displayName} dallo starter pack" msgid "Remove account" msgstr "Rimuovi l'account" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Rimuovi Avatar" @@ -5652,7 +5905,7 @@ msgstr "Rimuovi Avatar" msgid "Remove Banner" msgstr "Rimuovi il Banner" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Rimuovi allegato" @@ -5668,13 +5921,14 @@ msgstr "Rimuovere il feed?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Rimuovere dai miei feed?" @@ -5687,7 +5941,7 @@ msgstr "Rimuovere da accesso rapido?" msgid "Remove from saved feeds" msgstr "Rimuovi dai feed salvati" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Rimuovi l'immagine" @@ -5699,24 +5953,24 @@ msgstr "Rimuovi l'immagine" msgid "Remove mute word from your list" msgstr "Rimuovi la parola silenziata dalla tua lista" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Rimuovi profilo" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Rimuovi profilo dalla cronologia di ricerca" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Rimuovi citazione" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Rimuovi la ripubblicazione" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5730,16 +5984,16 @@ msgstr "Rimuovi questo feed dai feed salvati" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Elimina questo feed dai feed salvati?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Rimosso dall'autore" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Rimosso da me" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Elimina dalla lista" @@ -5753,8 +6007,8 @@ msgid "Removed from saved feeds" msgstr "Rimosso dai feed salvati" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Rimosso dai tuoi feed" @@ -5762,13 +6016,13 @@ msgstr "Rimosso dai tuoi feed" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Elimina la miniatura predefinita da {0}" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "Rimuovi post citato" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5779,7 +6033,7 @@ msgstr "" msgid "Replace with Discover" msgstr "Sostituisci con Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Risposte" @@ -5799,7 +6053,7 @@ msgstr "Le risposte a questo post sono disattivate." #~ msgid "Replies to this thread are disabled" #~ msgstr "Le risposte a questo thread sono disabilitate" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Risposta" @@ -5818,11 +6072,11 @@ msgstr "Risposta nascosta dall'autore del thread" msgid "Reply Hidden by You" msgstr "Risposta nascosta da me" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "Impostazioni risposte" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread" @@ -5830,33 +6084,33 @@ msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread" #~ msgid "Reply to <0/>" #~ msgstr "In risposta a <0/>" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Rispondi a <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Rispondi ad un post bloccato" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "Rispondi ad un post" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Rispondi a te" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "Visibilità risposte aggiornata" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "Risposta nascosta con successo" @@ -5869,8 +6123,8 @@ msgstr "Segnala" #~ msgid "Report {collectionName}" #~ msgstr "Segnala {collectionName}" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Segnala l'account" @@ -5880,16 +6134,16 @@ msgstr "Segnala l'account" msgid "Report conversation" msgstr "Segnala la conversazione" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Segnala il dialogo" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Segnala il feed" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Segnala la lista" @@ -5897,13 +6151,13 @@ msgstr "Segnala la lista" msgid "Report message" msgstr "Segnala il messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Segnala il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Segnala starter pack" @@ -5919,8 +6173,8 @@ msgstr "Segnala questo feed" msgid "Report this list" msgstr "Segnala questa lista" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Segnala questo messaggio" @@ -5937,9 +6191,9 @@ msgstr "Segnala questo starter pack" msgid "Report this user" msgstr "Segnala questo utente" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Ripubblicare" @@ -5949,8 +6203,8 @@ msgstr "Ripubblicare" msgid "Repost" msgstr "Ripubblicare" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" @@ -5959,12 +6213,12 @@ msgstr "Ripubblica o cita il post" #~ msgid "Reposted by" #~ msgstr "Repost di" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Ripubblicato da" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Ripubblicato da{0}" @@ -5974,12 +6228,12 @@ msgstr "Ripubblicato da{0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repost di <0/>" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Ripubblicato da <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Ripubblicato da te" @@ -6004,7 +6258,7 @@ msgstr "Richiedi un cambio" msgid "Request Code" msgstr "Richiedi il codice" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Richiedi il testo alternativo prima di pubblicare" @@ -6012,20 +6266,26 @@ msgstr "Richiedi il testo alternativo prima di pubblicare" msgid "Require email code to log into your account" msgstr "Richiedi il codice via email per accedere al tuo account" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Obbligatorio per questo operatore" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Rinvia l'email" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -6040,32 +6300,32 @@ msgstr "Reimposta il Codice" #~ msgid "Reset onboarding" #~ msgstr "Reimposta l'incorporazione" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Reimposta lo stato dell' incorporazione" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Reimposta la password" #~ msgid "Reset preferences" #~ msgstr "Reimposta le preferenze" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Reimposta lo stato dell'incorporazione" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Ritenta l'accesso" @@ -6074,16 +6334,16 @@ msgstr "Ritenta l'accesso" msgid "Retries the last action, which errored out" msgstr "Ritenta l'ultima azione che ha generato un errore" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -6096,54 +6356,65 @@ msgstr "Riprova" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Ritorna alla pagina precedente" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Ritorna su Home" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" #~ msgid "SANDBOX. Posts and accounts are not permanent." #~ msgstr "SANDBOX. I post e gli account non sono permanenti." -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Salva" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Salva" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Salva il testo alternativo" +#~ msgid "Save alt text" +#~ msgstr "Salva il testo alternativo" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Salva il compleanno" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Salva i cambi" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Salva i cambi" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Salva la modifica del tuo identificatore" @@ -6152,95 +6423,92 @@ msgstr "Salva la modifica del tuo identificatore" msgid "Save image" msgstr "Salva immagine" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Salva il ritaglio dell'immagine" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Salva codice QR" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Salva nei miei feed" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Canali salvati" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "Salvata nella tua galleria" #~ msgid "Saved to your camera roll." #~ msgstr "Salvato nel rullino fotografico." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Salva eventuali modifiche al tuo profilo" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Salva eventuali modifiche al tuo profilo" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Salva la modifica del cambio dell'utente in {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Salva le impostazioni di ritaglio dell'immagine" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Di ciao!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Scienza" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Scorri verso l'alto" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Cerca" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Cerca \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Cerca \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Cerca tutti i post di @{authorHandle} con tag {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Cerca tutti i post di @{authorHandle} con tag {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Cerca tutti i post con il tag {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Cerca tutti i post con il tag {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca feed che potresti suggerire ad altri utenti." @@ -6248,18 +6516,16 @@ msgstr "Cerca feed che potresti suggerire ad altri utenti." msgid "Search for users" msgstr "Cerca utenti" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Cerca i Gif" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Cerca profili" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Cerca Tenor" @@ -6275,15 +6541,15 @@ msgstr "Vedi {truncatedTag} post" msgid "See {truncatedTag} posts by user" msgstr "Visualizza i post {truncatedTag} per utente" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Vedi <0>{displayTag} posts" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Vedi <0>{displayTag} posts di questo utente" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Vedi offerte di lavoro in Bluesky" @@ -6292,14 +6558,14 @@ msgstr "Vedi offerte di lavoro in Bluesky" #~ msgid "See profile" #~ msgstr "Vedi il profilo" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Consulta questa guida" #~ msgid "See what's next" #~ msgstr "Scopri cosa c'è dopo" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6311,7 +6577,7 @@ msgstr "Seleziona {item}" msgid "Select a color" msgstr "Scegli un colore" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Seleziona l'account" @@ -6326,7 +6592,7 @@ msgstr "Scegli un emoji" #~ msgid "Select Bluesky Social" #~ msgstr "Seleziona Bluesky Social" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Seleziona da un account esistente" @@ -6334,7 +6600,7 @@ msgstr "Seleziona da un account esistente" msgid "Select GIF" msgstr "Seleziona GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Seleziona GIF \"{0}\"" @@ -6342,15 +6608,15 @@ msgstr "Seleziona GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Seleziona per quanto tempo silenziare questa parola." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Seleziona lingue" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Seleziona moderatore" @@ -6365,7 +6631,7 @@ msgstr "Seleziona l'opzione {i} di {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "Seleziona alcuni account da seguire qui giù" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6373,11 +6639,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "Scegli la {emojiName} emoji come tuo avatar" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Seleziona il/i servizio/i di moderazione per fare la segnalazione" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Seleziona il servizio che ospita i tuoi dati." @@ -6385,7 +6651,7 @@ msgstr "Seleziona il servizio che ospita i tuoi dati." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Seleziona i feed con temi da seguire dal seguente elenco" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Seleziona video" @@ -6397,29 +6663,29 @@ msgstr "Seleziona dove applicare questa parola silenziata." #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Seleziona ciò che vuoi vedere (o non vedere) e noi gestiremo il resto." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. Se non ne viene selezionata nessuna, verranno visualizzate tutte le lingue." #~ msgid "Select your app language for the default text to display in the app" #~ msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare nell'app" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare nell'app." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Seleziona la tua data di nascita" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" #~ msgid "Select your phone's country" #~ msgstr "Seleziona il Paese del tuo cellulare" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." @@ -6435,6 +6701,14 @@ msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." msgid "Send a neat website!" msgstr "Consiglia un sito!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6452,40 +6726,40 @@ msgstr "Invia email" #~ msgid "Send Email" #~ msgstr "Envia Email" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Invia feedback" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Invia messaggio" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Invia post a..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Invia la segnalazione" #~ msgid "Send Report" #~ msgstr "Invia segnalazione" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Invia la segnalazione a {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Invia la email di verifica" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Invia tramite messaggi" @@ -6493,7 +6767,7 @@ msgstr "Invia tramite messaggi" msgid "Sends email with confirmation code for account deletion" msgstr "Invia un'email con il codice di conferma per la cancellazione dell'account" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Indirizzo del server" @@ -6504,7 +6778,7 @@ msgstr "Indirizzo del server" #~ msgid "Set Age" #~ msgstr "Imposta l'età" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Imposta la data di nascita" @@ -6523,33 +6797,33 @@ msgstr "Imposta la data di nascita" #~ msgid "Set dark theme to the dim theme" #~ msgstr "Imposta il tema scuro sul tema scuro" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Imposta una nuova password" #~ msgid "Set password" #~ msgstr "Imposta la password" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Seleziona \"No\" per nascondere tutti i post con le citazioni dal tuo feed. I repost saranno ancora visibili." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Seleziona \"No\" per nascondere tutte le risposte dal tuo feed." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Seleziona \"Sì\" per mostrare le risposte in una visualizzazione concatenata. Questa è una funzionalità sperimentale." #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Seleziona \"Sì\" per mostrare esempi dei feed salvati nel feed successivo. Questa è una funzionalità sperimentale." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Imposta questa impostazione su \"Sì\" per mostrare esempi dei tuoi feed salvati nel feed Seguiti. Questa è una funzionalità sperimentale." @@ -6557,7 +6831,7 @@ msgstr "Imposta questa impostazione su \"Sì\" per mostrare esempi dei tuoi feed msgid "Set up your account" msgstr "Configura il tuo account" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Imposta il tuo nome utente di Bluesky" @@ -6581,7 +6855,7 @@ msgstr "Imposta il tuo nome utente di Bluesky" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "Imposta il tema soffuso" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" @@ -6589,29 +6863,28 @@ msgstr "Imposta l'email per la reimpostazione della password" #~ msgstr "Imposta il provider del hosting per la reimpostazione della password" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Imposta le proporzioni quadrate sull'immagine" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Imposta le proporzioni quadrate sull'immagine" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Imposta l'altura sulle proporzioni dell'immagine" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Imposta l'altura sulle proporzioni dell'immagine" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Imposta l'amplio sulle proporzioni dell'immagine" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Imposta l'amplio sulle proporzioni dell'immagine" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Imposta il server per il client Bluesky" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Impostazioni" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Attività sessuale o nudità erotica." @@ -6619,20 +6892,19 @@ msgstr "Attività sessuale o nudità erotica." msgid "Sexually Suggestive" msgstr "Sessualmente suggestivo" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Condividi" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Condividi" @@ -6645,28 +6917,28 @@ msgstr "Condividi una storia interessante!" msgid "Share a fun fact!" msgstr "Condividi un fatto divertente!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Condividi comunque" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Condividi il feed" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Condividi link" @@ -6684,7 +6956,7 @@ msgstr "" msgid "Share QR code" msgstr "Condividi codice QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Condividi starter pack" @@ -6696,7 +6968,7 @@ msgstr "Condividi starter pack e invita persone a far parte della tua community msgid "Share your favorite feed!" msgstr "Condividi il tuo feed preferito!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Test Preferenze Condiviseha" @@ -6704,22 +6976,26 @@ msgstr "Test Preferenze Condiviseha" msgid "Shares the linked website" msgstr "Condivide il sito Web nel link" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Mostra" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #~ msgid "Show all replies" #~ msgstr "Mostra tutte le repliche" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Mostra testo alternativo" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Mostra comunque" @@ -6744,8 +7020,8 @@ msgstr "Mostra badge e filtra dai feed" msgid "Show hidden replies" msgstr "Mostra risposte nascoste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Mostra meno come questo" @@ -6753,14 +7029,14 @@ msgstr "Mostra meno come questo" msgid "Show list anyway" msgstr "Mosta comunque questa lista" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Mostra di più" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Mosta altro come questo" @@ -6768,11 +7044,11 @@ msgstr "Mosta altro come questo" msgid "Show muted replies" msgstr "Mosta risposte silenziate" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Mostra post dai miei feed" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Mostra post con citazioni" @@ -6788,11 +7064,11 @@ msgstr "Mostra post con citazioni" #~ msgid "Show re-posts in Following feed" #~ msgstr "Mostra re-post nel feed Seguiti" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Mostra risposte" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." @@ -6807,12 +7083,12 @@ msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostra risposte con almeno {value} {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Mostra risposta per tutti" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Mostra ripubblicazioni" @@ -6820,7 +7096,7 @@ msgstr "Mostra ripubblicazioni" #~ msgid "Show reposts in Following" #~ msgstr "Mostra i re-repost in Seguiti" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Mostra il contenuto" @@ -6841,38 +7117,37 @@ msgstr "Mostra avviso e filtra dai feed" #~ msgstr "Mostra un elenco di utenti simili a questo utente." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Mostra i post di {0} nel tuo feed" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Mostra i post di {0} nel tuo feed" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Accedi" #~ msgid "Sign In" #~ msgstr "Accedi" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Accedi come... {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Accedi come..." @@ -6887,42 +7162,41 @@ msgstr "Accedi o crea il tuo account per partecipare alla conversazione!" msgid "Sign into Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Esci" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Iscrizione" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Iscriviti o accedi per partecipare alla conversazione" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Iscriviti o accedi per partecipare alla conversazione" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "È richiesta l'autenticazione" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Iscritto/a come" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Iscritto/a come @{0}" @@ -6933,8 +7207,8 @@ msgstr "iscritto/a col tuo starter pack" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Esci da Bluesky con {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "Iscriviti senza uno starter pack" @@ -6942,20 +7216,25 @@ msgstr "Iscriviti senza uno starter pack" msgid "Similar accounts" msgstr "Account simili" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Salta" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Salta" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #~ msgid "SMS verification" #~ msgstr "Verifica tramite SMS" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Sviluppo Software" @@ -6971,7 +7250,7 @@ msgstr "Solo alcune persone possono rispondere" #~ msgid "Some subtitle" #~ msgstr "Altri sottotitoli" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Qualcosa è andato storto" @@ -6983,43 +7262,44 @@ msgstr "Qualcosa è andato storto" msgid "Something went wrong, please try again" msgstr "Qualcosa è andato storto, per favore riprova" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Qualcosa è andato male, prova di nuovo." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Qualcosa è andato storto!" #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Qualcosa è andato storto. Controlla la tua email e riprova." -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Scusa! La tua sessione è scaduta. Per favore accedi di nuovo." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Ordina le risposte" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Ordina le risposte allo stesso post per:" -#~ msgid "Source:" -#~ msgstr "Origine:" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "Origine:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "Fonte: <0>{0}" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Fonte: <0>{sourceName}" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Fonte: <0>{sourceName}" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -7031,89 +7311,93 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menzioni o risposte eccessive" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Sports" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Quadrato" +#~ msgid "Square" +#~ msgstr "Quadrato" #~ msgid "Staging" #~ msgstr "Allestimento" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Avvia una nuova conversazione" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Avvia conversazione con {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Iniza a conversare" +#~ msgid "Start chatting" +#~ msgstr "Iniza a conversare" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Starter pack di {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Lo starter pack non è valido" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti coi tuoi amici." #~ msgid "Status page" #~ msgstr "Pagina di stato" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Pagina di stato" #~ msgid "Step" #~ msgstr "Passo" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Step {0} di {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Passo {0} di {numSteps}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Spazio di archiviazione eliminato. Riavvia l'app." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Cronologia" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Invia" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Iscriviti" @@ -7121,7 +7405,7 @@ msgstr "Iscriviti" msgid "Subscribe to @{0} to use these labels:" msgstr "Iscriviti a @{0} per utilizzare queste etichette:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Iscriviti a Labeler" @@ -7130,14 +7414,18 @@ msgstr "Iscriviti a Labeler" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Iscriviti a {0} feed" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Iscriviti a questo labeler" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Iscriviti alla lista" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Account suggeriti" @@ -7150,21 +7438,22 @@ msgstr "Account suggeriti" msgid "Suggested for you" msgstr "Suggerito per te" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Suggestivo" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Supporto" #~ msgid "Swipe up to see more" #~ msgstr "Scorri verso l'alto per vedere di più" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Cambia account" @@ -7172,20 +7461,21 @@ msgstr "Cambia account" #~ msgid "Switch between feeds to control your experience." #~ msgstr "Cambia tra i feed per avere il totale controllo della tua esperienza." -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Cambia a {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Cambia l'account dal quale hai effettuato l'accesso" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Registro di sistema" @@ -7193,7 +7483,7 @@ msgstr "Registro di sistema" #~ msgid "tag" #~ msgstr "tag" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Tag menu: {displayTag}" @@ -7202,22 +7492,22 @@ msgid "Tags only" msgstr "Solo tag" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Alto" +#~ msgid "Tall" +#~ msgstr "Alto" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Clicca per ignorare" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "Clicca per entrare in modalità a schermo intero" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "Clicca per attivare o disattivare l'audio" @@ -7239,7 +7529,7 @@ msgid "Teach our algorithm what you like" msgstr "Impara all'algoritmo cosa ti piace" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Tecnologia" @@ -7247,23 +7537,27 @@ msgstr "Tecnologia" msgid "Tell a joke!" msgstr "Racconta una barzalletta!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Dicci un po' di più" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Termini" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Termini di servizio" @@ -7282,25 +7576,33 @@ msgstr "I termini utilizzati violano gli standard della comunità" msgid "Text & tags" msgstr "Testo e tag" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo di testo" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Grazie. La tua segnalazione è stata inviata." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Che contiene il seguente:" @@ -7308,21 +7610,21 @@ msgstr "Che contiene il seguente:" msgid "That handle is already taken." msgstr "Questo handle è già stato preso." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "Impossibile trovare starter pack." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "L'account sarà in grado di interagire con te dopo lo sblocco." @@ -7334,15 +7636,15 @@ msgstr "L'account sarà in grado di interagire con te dopo lo sblocco." msgid "The author of this thread has hidden this reply." msgstr "L'autore del thread ha nascosto questa risposta." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "L'applicazione web di Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Le Linee guida della community sono state spostate a<0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "La politica sul copyright è stata spostata a <0/>" @@ -7355,7 +7657,7 @@ msgstr "Il feed Discover" msgid "The Discover feed now knows what you like" msgstr "Ora il feed Discover sa cosa ti piace" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L'esperienza è migliore tramite l'app. Scarica ora Bluesky e ritorneremo da dove eravamo rimasti." @@ -7380,33 +7682,38 @@ msgstr "I passaggi seguenti ti aiuteranno a personalizzare la tua esperienza con msgid "The post may have been deleted." msgstr "Il post potrebbe essere stato cancellato." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "La politica sulla privacy è stata spostata a <0/><0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "Questo video è più grande di 50MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Questo starter pack non è valido. Prova a cancellare questo starter pack invece." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Il modulo di supporto è stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." #~ msgid "The support form has been moved. If you need help, please<0/> or visit {HELP_DESK_URL} to get in touch with us." #~ msgstr "Il modulo di supporto è stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "I Termini di Servizio sono stati spostati a" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Ci sono molti feed da provare:" @@ -7415,23 +7722,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "Non c'è limite di tempo per la disattivazione dell'account, torna quando vuoi." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Si è verificato un problema nel contattare il server, controlla la tua connessione Internet e riprova." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Si è verificato un problema nel contattare il server, controlla la tua connessione Internet e riprova." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Si è verificato un problema durante la connessione a Tenor." @@ -7439,15 +7745,18 @@ msgstr "Si è verificato un problema durante la connessione a Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Si è verificato un errore nel connettersi alla chat." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Si è verificato un problema durante il contatto con il server" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7457,21 +7766,25 @@ msgstr "Si è verificato un problema durante il contatto con il tuo server" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Si è verificato un problema durante il recupero dell'elenco. Tocca qui per riprovare." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle tue liste. Tocca qui per riprovare." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Si è verificato un problema durante l'invio della segnalazione. Per favore controlla la tua connessione Internet." @@ -7479,21 +7792,27 @@ msgstr "Si è verificato un problema durante l'invio della segnalazione. Per fav #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Si è verificato un problema durante la sincronizzazione delle tue preferenze con il server" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Si è verificato un problema durante il recupero delle password dell'app" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Si è verificato un problema! {0}" @@ -7501,16 +7820,15 @@ msgstr "Si è verificato un problema! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Si è verificato un problema. Per favore controlla la tua connessione Internet e prova di nuovo." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Si è verificato un problema imprevisto nell'applicazione. Per favore facci sapere se ti è successo!" @@ -7528,11 +7846,11 @@ msgstr "C'è stata un'ondata di nuovi utenti su Bluesky! Attiveremo il tuo accou #~ msgid "This {0} has been labeled." #~ msgstr "Questo {0} è stato etichettato." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} è stata segnalata:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Questo account ha richiesto agli utenti di accedere Bluesky per visualizzare il profilo." @@ -7544,15 +7862,15 @@ msgstr "Questo account è bloccato da uno o più appartenente alle tue liste di #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "Questo ricorso verrà inviato a <0>{0}." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Questo ricorso verrà inviato a <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Questo appello verrà inviato al servizio di moderazione Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Questa chat è stata disconnessa" @@ -7564,7 +7882,7 @@ msgstr "Questo contenuto è stato nascosto dai moderatori." msgid "This content has received a general warning from moderators." msgstr "Questo contenuto ha ricevuto un avviso generale dai moderatori." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Questo contenuto è hosted da {0}. Vuoi abilitare i media esterni?" @@ -7577,14 +7895,14 @@ msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti h msgid "This content is not viewable without a Bluesky account." msgstr "Questo contenuto non è visualizzabile senza un account Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "L'utente di questa conversazione ha disattivato o cancellato l'account. Premi per le opzioni." #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." #~ msgstr "Questa funzionalità è in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni dell' archivio in <0>questo post del blog." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Questa funzionalità è in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni del repository in <0>questo post del blog." @@ -7603,8 +7921,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Questo feed è vuoto." @@ -7612,7 +7930,7 @@ msgstr "Questo feed è vuoto." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Questo feed non è più online. Stiamo mostrando <0>Discover al suo posto." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Queste informazioni non vengono condivise con altri utenti." @@ -7626,15 +7944,15 @@ msgstr "Questo è importante nel caso in cui avessi bisogno di modificare la tua #~ msgid "This label was applied by {0}." #~ msgstr "Questa etichetta è stata applicata da {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Questa etichetta è stata applicata da <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Questa etichetta è stata applicata dall'autore." -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Questa etichetta è stata applicata da te." @@ -7650,7 +7968,7 @@ msgstr "Questo link ti porta al seguente sito web:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Questa lista - creata da <0>{0} - contiene violazioni dei termini della community di Bluesky nel nome o nella descrizione." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Questa lista è vuota!" @@ -7662,16 +7980,16 @@ msgstr "Questo servizio di moderazione non è disponibile. Vedi giù per ulterio msgid "This name is already in use" msgstr "Questo nome è già in uso" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Questo post è stato cancellato." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Questo post è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversibile." @@ -7679,15 +7997,15 @@ msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversi #~ msgid "This post will be hidden from feeds." #~ msgstr "Questo post verrà nascosto dai feed." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "L'autore di questo post ha disattivato le citazioni." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Questo profilo è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Questa risposta verrà spostata in una sezione nascosta in basso al thread e disattiverà le notifiche delle risposte - sia per te che per gli altri." @@ -7695,7 +8013,7 @@ msgstr "Questa risposta verrà spostata in una sezione nascosta in basso al thre msgid "This service has not provided terms of service or a privacy policy." msgstr "Questo servizio non ha fornito termini di servizio o un'informativa sulla privacy." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Questo dovrebbe creare un record di dominio in:" @@ -7759,16 +8077,16 @@ msgstr "Questo eliminerà \"{0}\" dalle tue parole silenziate. Puoi riaggiungerl msgid "This will remove @{0} from the quick access list." msgstr "Questo rimuoverà @{0} dalla lista d'accesso rapido." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Questo rimuoverà il tuo post da questa citazione per tutti gli utenti, e la rimpiazzerà con un placeholder." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Preferenze delle discussioni" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Preferenze delle Discussioni" @@ -7776,15 +8094,15 @@ msgstr "Preferenze delle Discussioni" #~ msgid "Thread settings updated" #~ msgstr "Impostazioni thread aggiornate" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Modalità discussione" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Per disabilitare il metodo 2FA via e-mail, verifica il tuo accesso all'indirizzo e-mail." @@ -7792,18 +8110,22 @@ msgstr "Per disabilitare il metodo 2FA via e-mail, verifica il tuo accesso all'i msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Per segnalare una conversazione, segnala uno dei messaggi nella schermata della conversazione. Questo permetterà ai nostri moderatori di capire il contesto del problema." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "A chi desideri inviare questo report?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "Alterna tra le opzioni delle parole silenziate." @@ -7812,25 +8134,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Attiva/disattiva il menu a discesa" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Top" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Trasformazioni" +#~ msgid "Transformations" +#~ msgstr "Trasformazioni" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Tradurre" @@ -7842,40 +8164,40 @@ msgstr "Riprova" #~ msgid "Try again" #~ msgstr "Provalo di nuovo" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Scrivi il tuo messaggio qui" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Tipo:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Sblocca la lista" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Riattiva questa lista" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Impossibile eliminare" @@ -7883,14 +8205,14 @@ msgstr "Impossibile eliminare" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Sblocca" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Sblocca" @@ -7900,17 +8222,17 @@ msgstr "Sblocca" msgid "Unblock account" msgstr "Sblocca l'account" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Sblocca Account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Sblocca Account?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7925,12 +8247,12 @@ msgstr "Smetti di seguire" #~ msgid "Unfollow" #~ msgstr "Smetti di seguire" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Smetti di seguire questo account" @@ -7940,31 +8262,31 @@ msgstr "Smetti di seguire questo account" #~ msgid "Unlike" #~ msgstr "Togli Mi piace" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Togli il like a questo feed" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Riattiva" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Riattiva" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Riattiva {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Riattiva questo account" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Riattiva tutti i post di {displayTag}" @@ -7972,12 +8294,12 @@ msgstr "Riattiva tutti i post di {displayTag}" msgid "Unmute conversation" msgstr "Riattiva conversazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Riattiva auto" @@ -7985,27 +8307,32 @@ msgstr "Riattiva auto" #~ msgid "Unmuted" #~ msgstr "Audio riattivato" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Stacca dal profilo" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Stacca dalla Home" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Stacca la lista di moderazione" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Sblocca dai tuoi feed" #~ msgid "Unsave" #~ msgstr "Rimuovi" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Annulla l'iscrizione" @@ -8014,7 +8341,7 @@ msgstr "Annulla l'iscrizione" msgid "Unsubscribe from list" msgstr "Disiscriviti dalla lista" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Disiscriviti da questo/a labeler" @@ -8022,7 +8349,7 @@ msgstr "Disiscriviti da questo/a labeler" msgid "Unsubscribed from list" msgstr "Disiscritto dalla lista" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -8032,78 +8359,95 @@ msgid "Unwanted Sexual Content" msgstr "Contenuti Sessuali Indesiderati" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Aggiorna {displayName} negli elenchi" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Aggiorna {displayName} negli elenchi" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" #~ msgid "Update Available" #~ msgstr "Aggiornamento disponibile" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Aggiorna a {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "Impossibile aggiornare allegato" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "Impossibile aggiornare visibilità risposte" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Aggiornamento..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Alternativamente carica una foto" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Carica una file di testo a:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Carica dalla fotocamera" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Carica dai Files" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Carica dalla Libreria" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Utilizza un file sul tuo server" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Utilizza le password dell'app per accedere ad altri client Bluesky senza fornire l'accesso completo al tuo account o alla tua password." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Utilizza bsky.social come provider di hosting" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Utilizza il tuo provider predefinito" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Utilizza il browser dell'app" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Utilizza il mio browser predefinito" @@ -8111,7 +8455,7 @@ msgstr "Utilizza il mio browser predefinito" msgid "Use recommended" msgstr "Usa consigliati" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Utilizza il pannello DNS" @@ -8154,36 +8498,36 @@ msgstr "Questo utente ti blocca" #~ msgid "User handle" #~ msgstr "Handle dell'utente" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Lista di {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Lista di<0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "La tua lista" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Lista creata" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Lista aggiornata" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Liste publiche" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Nome utente o indirizzo Email" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Utenti" @@ -8195,52 +8539,51 @@ msgstr "Utenti" msgid "users followed by <0>@{0}" msgstr "utenti seguiti da <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Utenti che seguo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Utenti in «{0}»" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Utenti a cui è piaciuto questo contenuto o profilo" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Valore:" #~ msgid "Verification code" #~ msgstr "Codice di verifica" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" #~ msgid "Verify {0}" #~ msgstr "Verifica {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Verifica record DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Verifica Email" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Verifica la mia email" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Verifica la Mia Email" @@ -8249,14 +8592,15 @@ msgstr "Verifica la Mia Email" msgid "Verify New Email" msgstr "Verifica la nuova email" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Verifica file di testo" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Verifica la tua email" @@ -8264,21 +8608,21 @@ msgstr "Verifica la tua email" #~ msgid "Version {0}" #~ msgstr "Versione {0}" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Versione {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "Video" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Video Games" @@ -8286,11 +8630,15 @@ msgstr "Video Games" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -8298,12 +8646,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "I video non possono essere più grandi di 50MB" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Vedi l'avatar di {0}" @@ -8316,15 +8664,23 @@ msgstr "Vedi il profilo di {0}" msgid "View {displayName}'s profile" msgstr "Vedi il profilo di {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Vedi questo profilo bloccato" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Vedi il blogpost per maggiori dettagli" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Vedi le informazioni del debug" @@ -8344,11 +8700,13 @@ msgstr "Vedi la discussione completa" msgid "View information about these labels" msgstr "Visualizza le informazioni su queste etichette" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Vedi il profilo" @@ -8356,28 +8714,28 @@ msgstr "Vedi il profilo" msgid "View the avatar" msgstr "Vedi l'avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Visualizza il servizio di etichettatura fornito da @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Vedi i tuoi account bloccati" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Vedi i tuoi feed e scoprine degli altri" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Vedi le tue liste di moderazione" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Vedi i tuoi account silenziati" @@ -8403,11 +8761,11 @@ msgstr "Avvisa i contenuti e filtra dai feed" #~ msgid "We also think you'll like \"For You\" by Skygaze:" #~ msgstr "Pensiamo che ti piacerà anche \"Per Te\" di Skygaze:" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Non riusciamo a caricare questa conversazione" @@ -8415,11 +8773,11 @@ msgstr "Non riusciamo a caricare questa conversazione" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Stimiamo {estimatedTime} prima che il tuo account sia pronto." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Speriamo di darti dei momenti dei bei momenti. Ricorda, Bluesky è:" @@ -8435,19 +8793,19 @@ msgstr "Abbiamo esaurito i posts dei tuoi follower. Ecco le ultime novità da <0 #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Consigliamo il nostro feed \"Scopri\":" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Non siamo riusciti a caricare le tue preferenze relative alla data di nascita. Per favore riprova." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Al momento non è stato possibile caricare le etichettatori configurati." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare il tuo account. Se il problema persiste, puoi ignorare questo flusso." @@ -8458,19 +8816,23 @@ msgstr "Ti faremo sapere quando il tuo account sarà pronto." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Esamineremo il tuo ricorso al più presto." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Lo useremo per personalizzare la tua esperienza." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il problema persiste, contatta il creatore della lista, @{handleOrDid}." @@ -8478,16 +8840,16 @@ msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il p msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole silenziate. Per favore riprova si nuovo." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Siamo spiacenti, ma non è stato possibile completare la ricerca. Riprova tra qualche minuto." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato cancellato." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." @@ -8495,7 +8857,7 @@ msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Ci dispiace! Puoi iscriverti solo a dieci etichettatori e hai raggiunto il limite di dieci." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ci dispiace! Puoi iscriverti solo a venti etichettatori e hai raggiunto il limite di dieci." @@ -8510,7 +8872,7 @@ msgstr "Bentornat*!" msgid "Welcome, friend!" msgstr "Benvenut*, amic*!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Quali sono i tuoi interessi?" @@ -8524,17 +8886,17 @@ msgstr "Come vuoi chiamare il tuo starter pack?" #~ msgid "What's next?" #~ msgstr "Qual è il prossimo?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Come va?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Che lingue sono utilizzate in questo post?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?" @@ -8544,8 +8906,8 @@ msgstr "Chi puo interagire a questo post?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Chi puoi inviarti messaggi?" +#~ msgid "Who can message you?" +#~ msgstr "Chi puoi inviarti messaggi?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8560,7 +8922,7 @@ msgstr "Chi può rispondere" #~ msgstr "Chi può rispondere?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Ops!" @@ -8593,25 +8955,25 @@ msgid "Why should this user be reviewed?" msgstr "Perché questo utente dovrebbe essere revisionato?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Largo" +#~ msgid "Wide" +#~ msgstr "Largo" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Scrivi un messaggio" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Scrivi la tua risposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Scrittori" @@ -8619,12 +8981,12 @@ msgstr "Scrittori" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Si" @@ -8633,15 +8995,15 @@ msgstr "Si" msgid "Yes, deactivate" msgstr "Sì, disattiva il mio account" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Sì, elimina questo starter pack" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Sì" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Sì" @@ -8649,11 +9011,14 @@ msgstr "Sì" msgid "Yes, reactivate my account" msgstr "Sì, riattiva il mio account" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Ieri, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Ieri, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "io" @@ -8666,7 +9031,7 @@ msgstr "Io" msgid "You are in line." msgstr "Sei nella lista." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8674,6 +9039,10 @@ msgstr "" msgid "You are not following anyone." msgstr "Non stai seguendo nessuno." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8691,15 +9060,15 @@ msgstr "Puoi anche disattivare temporaneamente il tuo account, e riattivarlo in #~ msgstr "Potrai modificare queste impostazioni in seguito." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Puoi modificarlo in qualsiasi momento." +#~ msgid "You can change this at any time." +#~ msgstr "Puoi modificarlo in qualsiasi momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puoi proseguire le conversazioni in corso indipendentemente da quale settaggio scegli." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." @@ -8711,7 +9080,7 @@ msgstr "Puoi riattivare il tuo account per accedere. Il tuo profilo e i tuoi pos msgid "You do not have any followers." msgstr "Non hai follower." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Non segui nessuno che segue @{name}." @@ -8719,14 +9088,14 @@ msgstr "Non segui nessuno che segue @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Non hai ancora alcun codice di invito! Te ne invieremo alcuni quando utilizzerai Bluesky per un po' più a lungo." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Non hai fissato nessun feed." #~ msgid "You don't have any saved feeds!" #~ msgstr "Non hai salvato nessun feed!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Non hai salvato nessun feed." @@ -8744,8 +9113,8 @@ msgstr "Hai bloccato questo utente" msgid "You have blocked this user. You cannot view their content." msgstr "Hai bloccato questo utente. Non è possibile visualizzare il contenuto." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8771,7 +9140,7 @@ msgstr "Hai silenziato questo utente" #~ msgid "You have muted this user." #~ msgstr "Hai disattivato questo utente." -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Non hai ancora nessuna conversazione. Avviane una!" @@ -8779,23 +9148,23 @@ msgstr "Non hai ancora nessuna conversazione. Avviane una!" msgid "You have no feeds." msgstr "Non hai feed." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Non hai liste." -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Non hai ancora bloccato nessun account. Per bloccare un account, vai sul profilo e seleziona \"Blocca account\" dal menu dell'account." #~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." #~ msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premendo il pulsante qui sotto." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai al suo profilo e seleziona \"Silenzia account\" dal menu dell' account." @@ -8806,11 +9175,11 @@ msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai msgid "You have reached the end" msgstr "Hai raggiunto la fine" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Non hai ancora creato uno starter pack!" @@ -8847,7 +9216,11 @@ msgstr "Puoi aggiungere un massimo di 3 feed" #~ msgid "You may only add up to 50 profiles" #~ msgstr "Puoi aggiungere un massimo di 50 utenti" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Per iscriverti devi avere almeno 13 anni." @@ -8858,7 +9231,7 @@ msgstr "Per iscriverti devi avere almeno 13 anni." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Devi seguire almeno altre 7 utenti per creare uno starter pack." @@ -8866,12 +9239,11 @@ msgstr "Devi seguire almeno altre 7 utenti per creare uno starter pack." msgid "You must grant access to your photo library to save a QR code" msgstr "Devi attivare il permesso alla Galleria per salvare il codice QR" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Devi attivare il permesso alla Galleria per salvare l'immagine." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "È necessario selezionare almeno un'etichettatore per un report" @@ -8879,47 +9251,51 @@ msgstr "È necessario selezionare almeno un'etichettatore per un report" msgid "You previously deactivated @{0}." msgstr "Hai precedentemente disattivato @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Non riceverai più notifiche per questo filo di discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Adesso riceverai le notifiche per questa discussione" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Riceverai un'email con un \"codice di reset\". Inserisci il codice qui, poi inserisci la nuova password." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Tu: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Tu: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirai gli utenti e feed consigliati alla fine della creazione del tuo account!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirai gli utenti consigliati alla fine della creazione del tuo account!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Seguirai queste persone e {0} altre" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Seguirai immediatamente queste persone" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Resterai aggiornato su questi feed" @@ -8938,7 +9314,7 @@ msgstr "Sei in fila" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Hai effettuato l'accesso con una password dell'app. Accedi con la tua password principale per disattivare il tuo account." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Sei pronto per iniziare!" @@ -8951,15 +9327,15 @@ msgstr "Hai scelto di nascondere una parola o un tag in questo post." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Il tuo account" @@ -8967,15 +9343,15 @@ msgstr "Il tuo account" msgid "Your account has been deleted" msgstr "Il tuo account è stato eliminato" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "L'archivio del tuo account, che contiene tutti i record di dati pubblici, può essere scaricato come file \"CAR\". Questo file non include elementi multimediali incorporati, come immagini o dati privati, che devono essere recuperati separatamente." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "La tua data di nascita" @@ -8983,11 +9359,11 @@ msgstr "La tua data di nascita" msgid "Your browser does not support the video format. Please try a different browser." msgstr "Il tuo browser non supporta questo formato video. Per favore prova un altro browser." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Le tue conversazioni sonos state disabiltate" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "La tua scelta verrà salvata, ma potrà essere modificata successivamente nelle impostazioni." @@ -8995,9 +9371,9 @@ msgstr "La tua scelta verrà salvata, ma potrà essere modificata successivament #~ msgid "Your default feed is \"Following\"" #~ msgstr "Il tuo feed predefinito è \"Following\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." @@ -9025,7 +9401,7 @@ msgstr "Il tuo feed seguente è vuoto! Segui più utenti per vedere cosa sta suc msgid "Your full handle will be" msgstr "Il tuo nome di utente completo sarà" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Il tuo nome di utente completo sarà <0>@{0}" @@ -9043,15 +9419,15 @@ msgstr "Le tue parole silenziate" msgid "Your password has been changed successfully!" msgstr "La tua password è stata modificata correttamente!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Il tuo post è stato pubblicato" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "I tuoi post, i tuoi Mi piace e i tuoi blocchi sono pubblici. I conti silenziati sono privati." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Il tuo profilo" @@ -9059,14 +9435,14 @@ msgstr "Il tuo profilo" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Il tuo profilo, post, feed, e liste non saranno più visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "La tua risposta è stata pubblicata" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "La tua segnalazione verrà inviata al Servizio Moderazione di Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Il tuo handle utente" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index d369bec348..a2f9dfbca0 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -8,12 +8,12 @@ msgstr "" "Language: ja\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-14 17:17+0900\n" +"PO-Revision-Date: 2024-10-20 20:26+0900\n" "Last-Translator: tkusano\n" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(埋め込みコンテンツあり)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(メールがありません)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {他{formattedCount}人}}" @@ -50,7 +50,7 @@ msgstr "{0, plural, other {#分}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {#ヶ月}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#回のリポスト}}" @@ -68,15 +68,15 @@ msgstr "{0, plural, other {フォロワー}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {フォロー中}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {いいね(#個のいいね)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {いいね}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#人のユーザーがいいね}}" @@ -85,19 +85,19 @@ msgstr "{0, plural, other {#人のユーザーがいいね}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {投稿}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, other {引用}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {返信(#件の返信)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {リポスト}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" @@ -111,19 +111,19 @@ msgstr "<0><1>タグ中の{0}" msgid "{0} <0>in <1>text & tags" msgstr "<0><1>テキストとタグ中の{0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0} / {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0}人がこのスターターパックを使用しました!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "{0}のアバター" @@ -160,12 +160,12 @@ msgstr "{0}ヶ月" msgid "{0}s" msgstr "{0}秒" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, other {#人のユーザーがいいね}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "{displayName}のスターターパック" @@ -177,22 +177,22 @@ msgstr "{estimatedTimeHrs, plural, other {時間}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} フォロー" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle}にメッセージを送れません" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#人のユーザーがいいね}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}件の未読" @@ -204,29 +204,29 @@ msgstr "{profileName}はBlueskyに{0}前に参加しました" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName}はスターターパックを使って{0}前に参加しました" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#人}}があなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#フィード}}があなたのスターターパックに含まれています" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {フォロワー}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0}と<2>{1}はあなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}はあなたのスターターパックに含まれています" @@ -234,15 +234,15 @@ msgstr "<0>{0}はあなたのスターターパックに含まれていま msgid "<0>{0} members" msgstr "<0>{0}のメンバー" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>適用できません。 この警告はメディアが添付された投稿にのみ利用可能です。" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} {time}" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>あなたと<1><2>{0}はあなたのスターターパックに含まれています" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠無効なハンドル" @@ -250,7 +250,7 @@ msgstr "⚠無効なハンドル" msgid "24 hours" msgstr "24時間" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "2要素認証の確認" @@ -262,8 +262,8 @@ msgstr "30日" msgid "7 days" msgstr "7日" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "ナビゲーションリンクと設定にアクセス" @@ -271,35 +271,34 @@ msgstr "ナビゲーションリンクと設定にアクセス" msgid "Access profile and other navigation links" msgstr "プロフィールと他のナビゲーションリンクにアクセス" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "アクセシビリティ" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "アカウント" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "アカウントをブロックしました" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "アカウントをフォローしました" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "アカウントをミュートしました" @@ -320,27 +319,27 @@ msgstr "アカウントオプション" msgid "Account removed from quick access" msgstr "クイックアクセスからアカウントを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "アカウントのブロックを解除しました" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "アカウントのフォローを解除しました" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "アカウントのミュートを解除しました" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "追加" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "続けるにはさらに{0}ユーザー追加してください" @@ -348,37 +347,39 @@ msgstr "続けるにはさらに{0}ユーザー追加してください" msgid "Add {displayName} to starter pack" msgstr "{displayName}をスターターパックに加える" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "コンテンツの警告を追加" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "リストにユーザーを追加" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "アカウントを追加" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "ALTテキストを追加" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "ALTテキストを追加(オプション)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "アプリパスワードを追加" @@ -394,7 +395,7 @@ msgstr "ミュートするワードとタグを追加" msgid "Add recommended feeds" msgstr "おすすめのフィードを追加" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "あなたのスターターパックにフィードをいくつか追加してください!" @@ -402,16 +403,16 @@ msgstr "あなたのスターターパックにフィードをいくつか追加 msgid "Add the default feed of only people you follow" msgstr "フォローしているユーザーのみのデフォルトのフィードを追加" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "次のDNSレコードをドメインに追加してください:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "このフィードをあなたのフィードに追加する" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "リストに追加" @@ -420,7 +421,7 @@ msgid "Add to my feeds" msgstr "マイフィードに追加" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "リストに追加" @@ -428,22 +429,28 @@ msgstr "リストに追加" msgid "Added to my feeds" msgstr "マイフィードに追加" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "成人向けコンテンツ" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "成人向けコンテンツは<0>bsky.appのウェブ版からしか有効にできません。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "成人向けコンテンツは無効になっています。" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "成人向けコンテンツのラベル" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "高度な設定" @@ -451,11 +458,11 @@ msgstr "高度な設定" msgid "Algorithm training complete!" msgstr "アルゴリズムのトレーニング完了!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "すべてのアカウントをフォローしました!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "保存したすべてのフィードを1箇所にまとめます。" @@ -464,53 +471,58 @@ msgstr "保存したすべてのフィードを1箇所にまとめます。" msgid "Allow access to your direct messages" msgstr "ダイレクトメッセージへのアクセスを許可" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "新しいメッセージを誰から受け取れるか:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "誰が返信できるか:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "ダイレクトメッセージへのアクセスを許可" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "コードをすでに持っていますか?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "@{0}としてすでにサインイン済み" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "ALTテキスト" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "ALTテキスト" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "ALTテキストは、すべての人が文脈を理解できるようにするために、視覚障害者や低視力者向けに提供する画像の説明文です。" +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "ALTテキストは切り詰められます。上限:{0}文字。" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "メールが{0}に送信されました。以下に入力できる確認コードがそのメールに記載されています。" @@ -518,19 +530,23 @@ msgstr "メールが{0}に送信されました。以下に入力できる確認 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "以前のメールアドレス{0}にメールが送信されました。以下に入力できる確認コードがそのメールに記載されています。" -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "メールが送信されました!メールに書かれている確認コードを以下に入力してください。" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "エラーが発生しました" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "エラーが発生しました" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "ビデオの圧縮中にエラーが発生しました。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "スターターパックの生成中にエラーが発生しました。もう一度試しますか?" @@ -542,25 +558,21 @@ msgstr "ビデオの読み込み時にエラーが発生しました。時間を msgid "An error occurred while loading the video. Please try again." msgstr "ビデオの読み込み時にエラーが発生しました。もう一度お試しください。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "画像の保存中にエラーが発生しました!" - #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "ビデオの選択中にエラーが発生しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "ビデオのアップロード中にエラーが発生しました。" @@ -572,40 +584,40 @@ msgstr "ほかの選択肢にはあてはまらない問題" msgid "An issue occurred starting the chat" msgstr "チャットの開始時に問題が発生しました" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "チャットを開始しようとした時に問題が発生しました" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "何らかのエラーが発生しました" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "不明なラベラー" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "および" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "アニメーションGIF" @@ -613,15 +625,20 @@ msgstr "アニメーションGIF" msgid "Anti-Social Behavior" msgstr "反社会的な行動" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "全言語" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "誰でも反応可能" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "アプリの言語" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "アプリパスワードを削除しました" @@ -633,56 +650,56 @@ msgstr "アプリパスワードの名前には、英数字、スペース、ハ msgid "App Password names must be at least 4 characters long." msgstr "アプリパスワードの名前は長さが4文字以上である必要があります。" -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "アプリパスワードの設定" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "アプリパスワード" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "異議を申し立てる" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "「{0}」のラベルに異議を申し立てる" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "異議申し立てを提出しました" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "この決定に異議を申し立てる" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" -msgstr "背景" +msgstr "外観" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" -msgstr "背景の設定" +msgstr "外観の設定" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" -msgstr "背景の設定" +msgstr "外観の設定" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "アプリパスワード「{name}」を本当に削除しますか?" @@ -690,10 +707,14 @@ msgstr "アプリパスワード「{name}」を本当に削除しますか?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "本当にこのスターターパックを削除したいですか?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "本当に変更を破棄したいですか?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" @@ -702,11 +723,11 @@ msgstr "この会話から退出しますか?あなたのメッセージはあ msgid "Are you sure you want to remove {0} from your feeds?" msgstr "あなたのフィードから{0}を削除してもよろしいですか?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "本当にこのフィードをあなたのフィードから削除したいですか?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "本当にこの下書きを破棄しますか?" @@ -719,11 +740,11 @@ msgid "Are you writing in <0>{0}?" msgstr "<0>{0}で書かれた投稿ですか?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "アート" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "芸術的または性的ではないヌード。" @@ -732,39 +753,39 @@ msgid "At least 3 characters" msgstr "少なくとも3文字" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "戻る" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "基本" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "生年月日" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "生年月日:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "ブロック" @@ -773,45 +794,45 @@ msgstr "ブロック" msgid "Block account" msgstr "アカウントをブロック" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "アカウントをブロック" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "アカウントをブロックしますか?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "アカウントをブロック" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "リストをブロック" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "これらのアカウントをブロックしますか?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "ブロックされています" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。" -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。あなたは相手のコンテンツを見ることができず、相手はあなたのコンテンツを見ることができなくなります。" @@ -823,40 +844,36 @@ msgstr "投稿をブロックしました。" msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができます。" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ブロックしたことは公開されます。ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。" -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができますが、このアカウントがあなたのスレッドに返信したり、やりとりをしたりといったことはできなくなります。" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "ブログ" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky は、ホスティング プロバイダーを選択できるオープン ネットワークです。 カスタムホスティングは、開発者向けのベータ版で利用できるようになりました。" +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky は、ホスティング プロバイダーを選択できるオープン ネットワークです。 あなたが開発者であれば、自分のサーバーをホストできます。" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Blueskyは友達と一緒のほうが楽しい!" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "Bluesky のユーザー数は現在 1,000 万人を超えており、私は #{0} 番目でした。" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Blueskyはログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。" @@ -869,14 +886,10 @@ msgid "Blur images and filter from feeds" msgstr "画像のぼかしとフィードからのフィルタリング" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "書籍" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "ちょっと自慢してみよう!" - #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" msgstr "検索ページでさらにアカウントを見る" @@ -902,7 +915,7 @@ msgstr "検索ページでさらにおすすめを見る" msgid "Browse other feeds" msgstr "他のフィードを見る" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "ビジネス" @@ -910,7 +923,7 @@ msgstr "ビジネス" msgid "by —" msgstr "作成者:-" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "作成者:{0}" @@ -918,15 +931,23 @@ msgstr "作成者:{0}" msgid "by <0/>" msgstr "作成者:<0/>" -#: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "アカウントを作成することで、{els}に同意したものとみなされます。" +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "アカウントを作成することで、<0>プライバシーポリシーに同意したものとみなされます。" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "アカウントを作成することで、<0>利用規約と<1>プライバシーポリシーに同意したものとみなされます。" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "アカウントを作成することで、<0>利用規約に同意したものとみなされます。" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "作成者:あなた" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "カメラ" @@ -935,33 +956,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "英数字、スペース、ハイフン、アンダースコアのみが使用可能です。長さは4文字以上32文字以下である必要があります。" #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "キャンセル" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +993,15 @@ msgstr "キャンセル" msgid "Cancel account deletion" msgstr "アカウントの削除をキャンセル" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "ハンドルの変更をキャンセル" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "画像の切り抜きをキャンセル" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "プロフィールの編集をキャンセル" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "引用をキャンセル" @@ -994,6 +1010,7 @@ msgid "Cancel reactivation and log out" msgstr "再有効化をキャンセルしてログアウト" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "検索をキャンセル" @@ -1001,14 +1018,14 @@ msgstr "検索をキャンセル" msgid "Cancels opening the linked website" msgstr "リンク先のウェブサイトを開くことをキャンセル" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "ブロックしたユーザーとはやりとりできません" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "キャプション(.vtt)" @@ -1016,25 +1033,25 @@ msgstr "キャプション(.vtt)" msgid "Captions & alt text" msgstr "キャプション&ALTテキスト" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "{0} 人のユーザーを祝福" - #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "メールアドレスを変更" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "ハンドルを変更" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "ハンドルを変更" @@ -1042,12 +1059,12 @@ msgstr "ハンドルを変更" msgid "Change my email" msgstr "メールアドレスを変更" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "パスワードを変更" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "パスワードを変更" @@ -1059,9 +1076,10 @@ msgstr "投稿の言語を{0}に変更します" msgid "Change Your Email" msgstr "メールアドレスを変更" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "チャット" @@ -1071,14 +1089,14 @@ msgstr "チャットをミュートしました" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "チャットの設定" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "チャットの設定" @@ -1091,7 +1109,7 @@ msgstr "チャットのミュートを解除しました" msgid "Check my status" msgstr "ステータスを確認" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "確認コードが記載されたメールを確認し、ここに入力してください。" @@ -1099,23 +1117,27 @@ msgstr "確認コードが記載されたメールを確認し、ここに入力 msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "入力したメールアドレスの受信トレイを確認して、以下に入力するための確認コードが記載されたメールが届いていないか確認してください:" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "フィードの選択" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "私向けに選んで" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "ユーザーの選択" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "投稿しようとしているメディアに適した自己ラベルを選んでください。何も選択しない場合は、この投稿はすべての閲覧者へ適したものとします。" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "サービスを選択" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "カスタムフィードのアルゴリズムを選択できます。" @@ -1123,28 +1145,27 @@ msgstr "カスタムフィードのアルゴリズムを選択できます。" msgid "Choose this color as your avatar" msgstr "この色をアバターとして選択" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "パスワードを入力" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "すべてのストレージデータをクリア" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "すべてのストレージデータをクリア(このあと再起動します)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "検索クエリをクリア" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "すべてのストレージデータをクリア" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "こちらをクリック" @@ -1160,15 +1181,15 @@ msgstr "詳しい情報についてはここをクリック。" msgid "Click here to open tag menu for {tag}" msgstr "{tag}のタグメニューをクリックして表示" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "クリックしてこの投稿の引用投稿を無効に。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "クリックしてこの投稿の引用投稿を有効に。" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "送信失敗したメッセージを再送信" @@ -1180,27 +1201,25 @@ msgstr "気象" msgid "Clip 🐴 clop 🐴" msgstr "パカラッ 🐴 パカラッ 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "閉じる" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "アクティブなダイアログを閉じる" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "アラートを閉じる" @@ -1208,12 +1227,11 @@ msgstr "アラートを閉じる" msgid "Close bottom drawer" msgstr "一番下の引き出しを閉じる" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "ダイアログを閉じる" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "GIFのダイアログを閉じる" @@ -1225,30 +1243,26 @@ msgstr "画像を閉じる" msgid "Close image viewer" msgstr "画像ビューアを閉じる" -#: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "モーダルを閉じる" - -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "ナビゲーションフッターを閉じる" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "このダイアログを閉じる" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "下部のナビゲーションバーを閉じる" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "パスワード更新アラートを閉じる" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "投稿の編集画面を閉じて下書きを削除する" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "投稿の編集画面を閉じて下書きを削除する" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1258,56 +1272,66 @@ msgstr "ヘッダー画像のビューワーを閉じる" msgid "Collapse list of users" msgstr "ユーザーリストを折りたたむ" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "カラーモード" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "コメディー" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "コミュニティガイドライン" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "初期設定を完了してアカウントを使い始める" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "テストをクリアしてください" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "{MAX_GRAPHEME_LENGTH}文字までの投稿を作成" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "返信を作成" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "ビデオを圧縮中…" + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "このカテゴリのコンテンツフィルタリングを設定:{name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "<0>モデレーションの設定で設定されています。" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "確認" @@ -1324,30 +1348,35 @@ msgstr "コンテンツの言語設定を確認" msgid "Confirm delete account" msgstr "アカウントの削除を確認" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "年齢の確認:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "生年月日の確認" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "確認コード" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "確認コード" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "接続中…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "サポートに連絡" @@ -1355,12 +1384,12 @@ msgstr "サポートに連絡" msgid "Content Blocked" msgstr "ブロックされたコンテンツ" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "コンテンツのフィルター" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "コンテンツの言語" @@ -1370,13 +1399,13 @@ msgid "Content Not Available" msgstr "コンテンツはありません" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "コンテンツの警告" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "コンテンツの警告" @@ -1384,12 +1413,12 @@ msgstr "コンテンツの警告" msgid "Context menu backdrop, click to close the menu." msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "続行" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "{0}として続行(現在サインイン中)" @@ -1397,13 +1426,13 @@ msgstr "{0}として続行(現在サインイン中)" msgid "Continue thread..." msgstr "スレッドの続き…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "次のステップへ進む" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "会話が削除されました" @@ -1416,20 +1445,21 @@ msgstr "料理" msgid "Copied" msgstr "コピーしました" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "クリップボードにコピーしました" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "コピーしました!" @@ -1437,17 +1467,17 @@ msgstr "コピーしました!" msgid "Copies app password" msgstr "アプリパスワードをコピーします" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "コピー" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "{0}をコピー" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "コードをコピー" @@ -1459,12 +1489,12 @@ msgstr "リンクをコピー" msgid "Copy Link" msgstr "リンクをコピー" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "リストへのリンクをコピー" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "投稿へのリンクをコピー" @@ -1473,17 +1503,17 @@ msgstr "投稿へのリンクをコピー" msgid "Copy message text" msgstr "メッセージのテキストをコピー" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "投稿のテキストをコピー" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "QRコードをコピー" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "著作権ポリシー" @@ -1491,11 +1521,11 @@ msgstr "著作権ポリシー" msgid "Could not leave chat" msgstr "チャットからの退出に失敗しました" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "フィードの読み込みに失敗しました" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "リストの読み込みに失敗しました" @@ -1507,34 +1537,34 @@ msgstr "チャットのミュートに失敗しました" msgid "Could not process your video" msgstr "ビデオを処理できませんでした" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "作成" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "新しいアカウントを作成" - -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "新しいBlueskyアカウントを作成" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "スターターパックのQRコードを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "スターターパックを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "私向けのスターターパックを作成" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "アカウントを作成" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "アカウントを作成" @@ -1543,11 +1573,11 @@ msgstr "アカウントを作成" msgid "Create an account" msgstr "アカウントを作成" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "代わりにアバターを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "別のものを作成" @@ -1556,7 +1586,7 @@ msgid "Create App Password" msgstr "アプリパスワードを作成" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "新しいアカウントを作成" @@ -1564,86 +1594,87 @@ msgstr "新しいアカウントを作成" msgid "Create report for {0}" msgstr "{0}の報告を作成" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0}に作成" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "文化" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "カスタム" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "カスタムドメイン" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "コミュニティによって作成されたカスタムフィードは、あなたに新しい体験をもたらし、あなたが好きなコンテンツを見つけるのに役立ちます。" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "外部サイトのメディアをカスタマイズします。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "この投稿に誰が反応できるかカスタマイズする。" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "ダーク" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "ダークモード" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "ダークテーマ" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "生年月日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "モデレーションをデバッグ" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "デバッグパネル" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "デフォルト" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "削除" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "アカウントを削除" @@ -1651,16 +1682,16 @@ msgstr "アカウントを削除" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "アカウント<0>「<1>{0}<2>」を削除" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "アプリパスワードを削除" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "アプリパスワードを削除しますか?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "チャットの宣言レコードを削除" @@ -1668,7 +1699,7 @@ msgstr "チャットの宣言レコードを削除" msgid "Delete for me" msgstr "自分宛を削除" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "リストを削除" @@ -1684,33 +1715,33 @@ msgstr "メッセージの宛先から自分を削除" msgid "Delete my account" msgstr "アカウントを削除" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "アカウントを削除…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "投稿を削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "スターターパックを削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "スターターパックを削除しますか?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "このリストを削除しますか?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "この投稿を削除しますか?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "削除されています" @@ -1718,27 +1749,35 @@ msgstr "削除されています" msgid "Deleted post." msgstr "投稿を削除しました。" -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "チャットの宣言レコードを削除する" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "説明" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "説明が長すぎます" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "説明が長すぎます。最大{DESCRIPTION_MAX_GRAPHEMES}文字までです。" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "説明的なALTテキスト" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "引用を切り離す" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "引用投稿を切り離しますか?" @@ -1746,54 +1785,54 @@ msgstr "引用投稿を切り離しますか?" msgid "Dialog: adjust who can interact with this post" msgstr "ダイアログ:この投稿に誰が反応できるか調整" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "なにか言いたいことはあった?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "グレー" -#: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "ダイレクトメッセージはこちら!" - -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "ビデオやGIFを自動再生しない" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "メールでの2要素認証を無効化" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "触覚フィードバックを無効化" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "サブタイトル(字幕)を無効にする" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "無効" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "破棄" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "変更を破棄しますか?" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "下書きを削除しますか?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする" @@ -1806,11 +1845,15 @@ msgstr "新しいカスタムフィードを見つける" msgid "Discover new feeds" msgstr "新しいフィードを探す" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "新しいフィードを探す" -#: src/view/com/composer/Composer.tsx:1107 +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "消す" + +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "エラーを消す" @@ -1818,19 +1861,25 @@ msgstr "エラーを消す" msgid "Dismiss getting started guide" msgstr "入門ガイドを消す" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "大きなALTテキストのバッジを表示" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "表示名" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "表示名" +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "表示名が長すぎます" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "表示名が長すぎます。最大{DISPLAY_NAME_MAX_GRAPHEMES}文字までです。" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNSパネルがある場合" @@ -1838,6 +1887,14 @@ msgstr "DNSパネルがある場合" msgid "Do not apply this mute word to users you follow" msgstr "このミュートワードはフォローしているユーザーには適用しない" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "成人向けコンテンツは含んでいません。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "生々しい(グロい)、または困惑させるコンテンツを含んでいません。" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "ヌードは含まれません。" @@ -1846,38 +1903,37 @@ msgstr "ヌードは含まれません。" msgid "Doesn't begin or end with a hyphen" msgstr "ハイフンで始まったり終ったりしない" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "ドメインの値" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "ドメインを確認しました!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "完了" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "完了" @@ -1886,20 +1942,20 @@ msgstr "完了" msgid "Done{extraText}" msgstr "完了{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "ダブルタップでダイアログを閉じる" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Blueskyをダウンロード" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "CARファイルをダウンロード" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "画像をダウンロード" - -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "ドロップして画像を追加する" @@ -1907,39 +1963,35 @@ msgstr "ドロップして画像を追加する" msgid "Duration:" msgstr "期間:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "例:太郎" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" msgstr "例:山田 太郎" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "例:taro.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例:アーティスト、犬好き、熱烈な読書愛好家。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例:芸術的なヌード。" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "例:重要な投稿をするユーザー" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "例:スパム" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "例:絶対に投稿を見逃してはならないユーザー。" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "例:返信として広告を繰り返し送ってくるユーザー。" @@ -1947,58 +1999,55 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "編集" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "編集" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "アバターを編集" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "フィードを編集" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "画像を編集" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "反応関連の設定を編集" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "リストの詳細を編集" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "マイフィードを編集" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "マイプロフィールを編集" - -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "ユーザーを編集" @@ -2007,21 +2056,23 @@ msgstr "ユーザーを編集" msgid "Edit post interaction settings" msgstr "投稿への反応の設定を編集" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "プロフィールを編集" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "プロフィールを編集" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "スターターパックを編集" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "ユーザーリストを編集" @@ -2029,24 +2080,16 @@ msgstr "ユーザーリストを編集" msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "あなたの表示名を編集します" - -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "あなたのプロフィールの説明を編集します" - -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "スターターパックを編集" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "教育" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "メールアドレス" @@ -2055,11 +2098,11 @@ msgstr "メールアドレス" msgid "Email 2FA disabled" msgstr "メールでの2要素認証を無効にしました" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "メールアドレス" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "メール再送済" @@ -2076,21 +2119,21 @@ msgstr "メールアドレスは更新されました" msgid "Email verified" msgstr "メールアドレスは認証されました" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "メールアドレス確認完了" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "メールアドレス:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "HTMLコードを埋め込む" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "投稿を埋め込む" @@ -2098,47 +2141,47 @@ msgstr "投稿を埋め込む" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "この投稿をあなたのウェブサイトに埋め込みます。以下のスニペットをコピーして、あなたのウェブサイトのHTMLコードに貼り付けるだけです。" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "{0}のみ有効にする" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "成人向けコンテンツを有効にする" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "外部メディアを有効にする" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "有効にするメディアプレイヤー" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "優先通知を有効にする" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "サブタイトル(字幕)を有効にする" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "このソースのみ有効にする" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "有効" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "フィードの終わり" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "各字幕ファイルに言語が選択されてることを確認してください。" @@ -2146,7 +2189,7 @@ msgstr "各字幕ファイルに言語が選択されてることを確認して msgid "Enter a name for this App Password" msgstr "このアプリパスワードの名前を入力" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "パスワードを入力" @@ -2155,6 +2198,10 @@ msgstr "パスワードを入力" msgid "Enter a word or tag" msgstr "ワードまたはタグを入力" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "コードを入力" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "確認コードを入力してください" @@ -2163,20 +2210,20 @@ msgstr "確認コードを入力してください" msgid "Enter the code you received to change your password." msgstr "パスワードを変更するために受け取ったコードを入力してください。" -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "使用するドメインを入力してください" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "アカウントの作成に使用したメールアドレスを入力します。新しいパスワードを設定できるように、「リセットコード」をお送りします。" -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "生年月日を入力してください" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "メールアドレスを入力してください" @@ -2188,10 +2235,14 @@ msgstr "上記に新しいメールアドレスを入力してください" msgid "Enter your new email address below." msgstr "以下に新しいメールアドレスを入力してください。" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "ユーザー名とパスワードを入力してください" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "エラー" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "ファイルの保存中にエラーが発生しました" @@ -2200,12 +2251,12 @@ msgstr "ファイルの保存中にエラーが発生しました" msgid "Error receiving captcha response." msgstr "CAPTCHAレスポンスの受信中にエラーが発生しました。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "エラー:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "全員" @@ -2217,10 +2268,8 @@ msgstr "誰でも返信可能" msgid "Everybody can reply to this post." msgstr "この投稿に全員が返信できる。" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "全員" @@ -2240,7 +2289,7 @@ msgstr "フォローしているユーザーは除外" msgid "Excludes users you follow" msgstr "フォローしているユーザーは除外" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "全画面表示を終了" @@ -2248,11 +2297,11 @@ msgstr "全画面表示を終了" msgid "Exits account deletion process" msgstr "アカウントの削除処理を終了" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "ハンドルの変更を終了" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "画像の切り抜き処理を終了" @@ -2272,12 +2321,16 @@ msgstr "ALTテキストを展開" msgid "Expand list of users" msgstr "ユーザーリストを展開" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "返信する投稿全体を展開または折りたたむ" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "レコードを指すURIではありません" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "実験的機能: この設定を有効にすると、フォローしているユーザーからの返信と引用通知のみを受け取るようになります。今後、いろんなコントロールを追加していきます。" @@ -2297,32 +2350,32 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "私のデータをエクスポートする" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "私のデータをエクスポートする" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "外部メディア" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "外部メディアを有効にすると、それらのメディアのウェブサイトがあなたやお使いのデバイスに関する情報を収集する場合があります。その場合でも、あなたが「再生」ボタンを押すまで情報は送信されず、要求もされません。" -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "外部メディアの設定" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "外部メディアの設定" @@ -2331,12 +2384,12 @@ msgstr "外部メディアの設定" msgid "Failed to create app password." msgstr "アプリパスワードの作成に失敗しました。" -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "スターターパックの作成に失敗しました" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "リストの作成に失敗しました。インターネットへの接続を確認の上、もう一度試してください。" @@ -2344,11 +2397,11 @@ msgstr "リストの作成に失敗しました。インターネットへの接 msgid "Failed to delete message" msgstr "メッセージの削除に失敗しました" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" @@ -2357,12 +2410,11 @@ msgstr "スターターパックの削除に失敗しました" msgid "Failed to load feeds preferences" msgstr "フィードの設定の読み込みに失敗しました" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "GIFの読み込みに失敗しました" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "過去のメッセージの読み込みに失敗しました" @@ -2375,7 +2427,11 @@ msgstr "おすすめのフィードの読み込みに失敗しました" msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "投稿の固定に失敗しました" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "画像の保存に失敗しました:{0}" @@ -2383,40 +2439,44 @@ msgstr "画像の保存に失敗しました:{0}" msgid "Failed to save notification preferences, please try again" msgstr "通知の設定の保存に失敗しました。もう一度お試しください" -#: src/components/dms/MessageItem.tsx:225 +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "投稿の反応の設定を保存できませんでした。投稿はされましたが、他のユーザーが反応してくるかもしれません。" + +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "送信に失敗" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "異議申し立ての送信に失敗しました。もう一度お試しください。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。もう一度お試しください" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "フィードの更新に失敗しました" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "設定の更新に失敗しました" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "ビデオのアップロードに失敗しました" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "フィード" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "{0}によるフィード" @@ -2426,31 +2486,36 @@ msgid "Feed toggle" msgstr "フィードの切り替え" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "フィードバック" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "フィードバックを送りました!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "フィード" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "フィードを更新しました!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "ファイルのコンテンツ" @@ -2462,7 +2527,7 @@ msgstr "ファイルの保存に成功しました!" msgid "Filter from feeds" msgstr "フィードからのフィルター" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "最後に" @@ -2472,19 +2537,19 @@ msgstr "最後に" msgid "Find accounts to follow" msgstr "フォローするアカウントを探す" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "投稿やユーザーをBlueskyで検索" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Followingフィードに表示されるコンテンツを調整します。" -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "ディスカッションスレッドを微調整します。" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "完了" @@ -2492,25 +2557,16 @@ msgstr "完了" msgid "Fitness" msgstr "フィットネス" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "柔軟です" -#: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "水平方向に反転" - -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "垂直方向に反転" - #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "フォロー" @@ -2519,12 +2575,12 @@ msgctxt "action" msgid "Follow" msgstr "フォロー" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "{0}をフォロー" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "{name}をフォロー" @@ -2532,18 +2588,18 @@ msgstr "{name}をフォロー" msgid "Follow 7 accounts" msgstr "7アカウントをフォロー" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "アカウントをフォロー" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "すべてフォロー" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "フォローバック" @@ -2572,7 +2628,7 @@ msgstr "<0>{0}と<1>{1}がフォロー中" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロー中" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "自分がフォローしているユーザー" @@ -2584,62 +2640,72 @@ msgstr "があなたをフォローしました" msgid "followed you back" msgstr "があなたをフォローバックしました" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "フォロワー" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "あなたが知っているフォロワー" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "フォロー中" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "{0}をフォローしています" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "{name}をフォローしています" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "あなたをフォロー" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "あなたをフォロー" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "フォント" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "フォントサイズ" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "食べ物" @@ -2651,20 +2717,25 @@ msgstr "セキュリティ上の理由から、あなたのメールアドレス msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "セキュリティ上の理由から、これを再度表示することはできません。このパスワードを紛失した場合は、新しいパスワードを生成する必要があります。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "ベストな体験のために、テーマフォントの使用をお勧めします。" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "永久" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "パスワードを忘れた" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "パスワードを忘れた?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "忘れた?" @@ -2672,35 +2743,31 @@ msgstr "忘れた?" msgid "Frequently Posts Unwanted Content" msgstr "望ましくないコンテンツを頻繁に投稿" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor}による" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>から" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "全画面表示" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "ギャラリー" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "スターターパックを生成" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "ヘルプを表示" -#: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "始める" - #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" @@ -2714,7 +2781,7 @@ msgstr "入門" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "プロフィールに顔をつける" @@ -2722,14 +2789,13 @@ msgstr "プロフィールに顔をつける" msgid "Glaring violations of law or terms of service" msgstr "法律または利用規約への明らかな違反" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "戻る" @@ -2737,39 +2803,39 @@ msgstr "戻る" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "戻る" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "前のステップに戻る" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "前のステップに戻る" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "ホームへ" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "ホームへ" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "{0}との会話へ" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "次へ" @@ -2783,6 +2849,8 @@ msgid "Go to user's profile" msgstr "ユーザーのプロフィールへ移動" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "生々しいメディア" @@ -2790,11 +2858,11 @@ msgstr "生々しいメディア" msgid "Half way there!" msgstr "半分まで来ました!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "ハンドル" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "触覚フィードバック" @@ -2802,24 +2870,24 @@ msgstr "触覚フィードバック" msgid "Harassment, trolling, or intolerance" msgstr "嫌がらせ、荒らし、不寛容" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "ハッシュタグ" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "ハッシュタグ:#{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "なにか問題が発生しましたか?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "ヘルプ" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。" @@ -2827,56 +2895,56 @@ msgstr "画像をアップロードするかアバターを作ってあなたが msgid "Here is your app password." msgstr "アプリパスワードをお知らせします。" -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "非表示のリスト" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "非表示" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "投稿を自分には非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "返信を全員に非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "返信を自分には非表示" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "コンテンツを非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "この投稿を非表示にしますか?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "この返信を非表示にしますか?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "ユーザーリストを非表示" @@ -2900,7 +2968,7 @@ msgstr "フィードサーバーの反応が悪いようです。この問題を msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "このフィードが見つからないようです。もしかしたら削除されたのかもしれません。" -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "このデータの読み込みに問題があるようです。詳細は以下をご覧ください。この問題が解決しない場合は、サポートにご連絡ください。" @@ -2908,45 +2976,49 @@ msgstr "このデータの読み込みに問題があるようです。詳細は msgid "Hmmmm, we couldn't load that moderation service." msgstr "そのモデレーションサービスを読み込めませんでした。" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "ホーム" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "ホスト:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "ホスティングプロバイダー" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "このリンクをどのように開きますか?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "コードを持っています" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "コードを持っています" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "確認コードを持っています" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "自分のドメインを持っています" @@ -2959,19 +3031,15 @@ msgstr "理解した" msgid "If alt text is long, toggles alt text expanded state" msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える" -#: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "なにも選択しない場合は、全年齢対象です。" - -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "あなたがお住いの国の法律においてまだ成人していない場合は、親権者または法定後見人があなたに代わって本規約をお読みください。" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "このリストを削除すると、復元できなくなります。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "この投稿を削除すると、復元できなくなります。" @@ -2987,16 +3055,11 @@ msgstr "ハンドルやメールアドレスを変えるのであれば、無効 msgid "Illegal and Urgent" msgstr "違法かつ緊急" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "画像" -#: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "画像のALTテキスト" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "画像をカメラロールに保存しました!" @@ -3012,7 +3075,7 @@ msgstr "なりすまし、偽情報、あるいは虚偽の主張" msgid "Inappropriate messages or explicit links" msgstr "不適切なメッセージ、または露骨なコンテンツへのリンク" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "パスワードをリセットするためにあなたのメールアドレスに送られたコードを入力" @@ -3024,7 +3087,7 @@ msgstr "アカウント削除のために確認コードを入力" msgid "Input name for app password" msgstr "アプリパスワードの名前を入力" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "新しいパスワードを入力" @@ -3032,19 +3095,19 @@ msgstr "新しいパスワードを入力" msgid "Input password for account deletion" msgstr "アカウント削除のためにパスワードを入力" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "メールで送られたコードを入力" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "サインアップ時に使用したユーザー名またはメールアドレスを入力" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "あなたのパスワードを入力" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "ご希望のホスティングプロバイダーを入力" @@ -3052,15 +3115,15 @@ msgstr "ご希望のホスティングプロバイダーを入力" msgid "Input your user handle" msgstr "あなたのユーザーハンドルを入力" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "反応が制限されています" -#: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "ダイレクトメッセージの紹介" +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "新しいフォント設定の紹介" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "無効な2要素認証の確認コードです。" @@ -3069,12 +3132,12 @@ msgstr "無効な2要素認証の確認コードです。" msgid "Invalid or unsupported post record" msgstr "無効またはサポートされていない投稿のレコード" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "無効なユーザー名またはパスワード" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "無効な確認コード" @@ -3082,7 +3145,7 @@ msgstr "無効な確認コード" msgid "Invite a Friend" msgstr "友達を招待" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "招待コード" @@ -3110,50 +3173,60 @@ msgstr "お気に入りのフィードやユーザーをフォローするよう msgid "Invites, but personal" msgstr "招待、ただし個人的なもの" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "入力したメールアドレスは間違ってるようです。本当にそれで合ってますか?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "合ってます" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "ジョブID:{0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "仕事" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Blueskyに参加" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "会話に参加" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "{0} に参加" - #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "報道" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "{0}によるラベル" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "投稿者によるラベル。" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "ラベル" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "ラベルが追加されました" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ラベルは、ユーザーやコンテンツに対する注釈です。ラベルはネットワークを隠したり、警告したり、分類したりするのに使われます。" @@ -3170,48 +3243,58 @@ msgstr "あなたのコンテンツのラベル" msgid "Language selection" msgstr "言語の選択" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "言語の設定" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "言語の設定" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "言語" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "大きい" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "最新" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "詳細" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Blueskyについての詳細" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "自分用のPDSをホスティングする方法を学ぶ。" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください。" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "この警告の詳細" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Blueskyで公開されている内容はこちらを参照してください。" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "詳細。" @@ -3232,7 +3315,7 @@ msgstr "チャットを退出" msgid "Leave conversation" msgstr "会話を退出" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "どの言語も表示するには、すべてのチェックを外したままにします。" @@ -3244,21 +3327,20 @@ msgstr "Blueskyから離れる" msgid "left to go." msgstr "あと少しです。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "選ばせて" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "パスワードをリセットしましょう!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "さあ始めましょう!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "ライト" @@ -3271,21 +3353,21 @@ msgstr "10投稿をいいね" msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "このフィードをいいね" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "いいねしたユーザー" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "いいねしたユーザー" @@ -3297,7 +3379,7 @@ msgstr "があなたのカスタムフィードをいいねしました" msgid "liked your post" msgstr "があなたの投稿をいいねしました" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "いいね" @@ -3305,24 +3387,24 @@ msgstr "いいね" msgid "Likes on this post" msgstr "この投稿をいいねする" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "リスト" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "リストのアバター" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "リストをブロックしました" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "{0}によるリスト" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "リストを削除しました" @@ -3330,32 +3412,31 @@ msgstr "リストを削除しました" msgid "List has been hidden" msgstr "リストは非表示です" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "非表示のリスト" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "リストをミュートしました" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "リストの名前" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "リストのブロックを解除しました" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "リスト" @@ -3375,22 +3456,22 @@ msgstr "おすすめのフィードをさらに読み込む" msgid "Load more suggested follows" msgstr "おすすめのフォローをさらに読み込む" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "最新の通知を読み込む" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "最新の投稿を読み込む" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "読み込み中…" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "ログ" @@ -3406,19 +3487,27 @@ msgstr "ログインまたはサインアップ" msgid "Log out" msgstr "ログアウト" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "ログアウトしたユーザーからの可視性" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "リストにないアカウントにログイン" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "<0/>によるロゴ" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "<0>@sawaratsuki.bsky.socialによるロゴ" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "長押しで #{tag} のタグメニューを開く" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXXみたいなもの" @@ -3434,7 +3523,7 @@ msgstr "すべてのフィードのピン留めを外したようですね。心 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Followingフィードを消したようです。<0>ここをクリックして追加。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "私のために作って" @@ -3451,30 +3540,35 @@ msgstr "ミュートしたワードとタグの管理" msgid "Mark as read" msgstr "既読にする" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "メディア" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "メンションされたユーザー" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "メンションされたユーザー" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "メニュー" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "{0}へメッセージを送る" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "メッセージは削除されました" @@ -3482,23 +3576,23 @@ msgstr "メッセージは削除されました" msgid "Message from server: {0}" msgstr "サーバーからのメッセージ:{0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "メッセージを入力するフィールド" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "メッセージが長すぎます" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "メッセージの設定" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "メッセージ" @@ -3510,64 +3604,60 @@ msgstr "誤解を招くアカウント" msgid "Misleading Post" msgstr "誤解を招く投稿" -#: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "モード" - -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "モデレーション" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "モデレーションの詳細" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0}の作成したモデレーションリスト" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "<0/>の作成したモデレーションリスト" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "あなたの作成したモデレーションリスト" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "モデレーションリストを作成しました" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "モデレーションリストを更新しました" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "モデレーションリスト" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "モデレーションの設定" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "モデレーションのステータス" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "モデレーションのツール" @@ -3576,7 +3666,7 @@ msgstr "モデレーションのツール" msgid "Moderator has chosen to set a general warning on the content." msgstr "モデレーターによりコンテンツに一般的な警告が設定されました。" -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "さらに" @@ -3584,28 +3674,29 @@ msgstr "さらに" msgid "More feeds" msgstr "その他のフィード" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "その他のオプション" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "いいねの数が多い順に返信を表示" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "映画" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "音楽" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "ミュート" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "ミュート" @@ -3614,16 +3705,16 @@ msgstr "ミュート" msgid "Mute {truncatedTag}" msgstr "{truncatedTag}をミュート" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "アカウントをミュート" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "アカウントをミュート" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "{displayTag}のすべての投稿をミュート" @@ -3636,11 +3727,11 @@ msgstr "会話をミュート" msgid "Mute in:" msgstr "ミュート対象:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "リストをミュート" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "これらのアカウントをミュートしますか?" @@ -3668,26 +3759,26 @@ msgstr "タグのみでこのワードをミュート" msgid "Mute this word until you unmute it" msgstr "このワードをミュート解除するまでミュート" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "スレッドをミュート" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "ワードとタグをミュート" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "ミュート中のアカウント" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ミュート中のアカウントの投稿は、フィードや通知から取り除かれます。ミュートの設定は完全に非公開です。" @@ -3695,41 +3786,41 @@ msgstr "ミュート中のアカウントの投稿は、フィードや通知か msgid "Muted by \"{0}\"" msgstr "「{0}」によってミュート中" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "ミュートしたワードとタグ" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ミュートの設定は非公開です。ミュート中のアカウントはあなたと引き続き関わることができますが、そのアカウントの投稿や通知を受信することはできません。" -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "生年月日" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "マイフィード" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "マイプロフィール" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "保存されたフィード" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "保存されたフィード" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "名前" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "名前は必須です" @@ -3741,60 +3832,64 @@ msgid "Name or Description Violates Community Standards" msgstr "名前または説明がコミュニティ基準に違反" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "自然" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "{0}へ移動します" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "スターターパックへ移動します" - -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "次の画面に移動します" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "あなたのプロフィールに移動します" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "変更が必要?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "著作権侵害を報告する必要がありますか?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "フォロワーやデータへのアクセスを失うことはありません。" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "気にせずにハンドルを作成" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "新規" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "新規" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "新しいチャット" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "新しいフォント設定 ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "新しいメッセージ" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "新しいモデレーションリスト" @@ -3806,22 +3901,22 @@ msgstr "新しいパスワード" msgid "New Password" msgstr "新しいパスワード" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "新しい投稿" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "新しい投稿" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "新しい投稿" @@ -3830,30 +3925,30 @@ msgstr "新しい投稿" msgid "New user info dialog" msgstr "新しいユーザー情報ダイアログ" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "新しいユーザーリスト" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "新しい順に返信を表示" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "ニュース" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3863,35 +3958,39 @@ msgstr "次へ" msgid "Next image" msgstr "次の画像" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "いいえ" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "説明はありません" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "DNSパネルがない場合" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "おすすめのGIFが見つかりません。Tenorに問題があるかもしれません。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "いいねはありません" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" @@ -3899,11 +3998,11 @@ msgstr "{0}のフォローを解除しました" msgid "No longer than 253 characters" msgstr "253文字まで" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "メッセージはありません" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "これ以上表示できる会話はありません" @@ -3911,10 +4010,8 @@ msgstr "これ以上表示できる会話はありません" msgid "No notifications yet!" msgstr "お知らせはありません!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "誰からも受け取らない" @@ -3922,16 +4019,24 @@ msgstr "誰からも受け取らない" msgid "No one but the author can quote this post." msgstr "投稿主だけがこの投稿を引用できます。" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "まだ投稿がありません。" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "まだ引用がありません" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "まだリポストがありません" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "結果はありません" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "結果はありません" @@ -3939,37 +4044,49 @@ msgstr "結果はありません" msgid "No results found" msgstr "結果は見つかりません" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "「{query}」の検索結果はありません" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "「{query}」の検索結果はありません" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "「{search}」の検索結果はありません。" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "この投稿にはメディアが含まれてないので自己ラベルは適用されません。" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "結構です" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "返信不可" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "まだ誰もこれをいいねしていません。あなたが最初になるべきかもしれません!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "まだ誰もこれを引用していません。あなたが最初になるべきかもしれません!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "まだ誰もこれをリポストしていません。あなたが最初になるべきかもしれません!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "誰も見つかりませんでした。他を探してみて。" @@ -3977,8 +4094,8 @@ msgstr "誰も見つかりませんでした。他を探してみて。" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "見つかりません" @@ -3987,49 +4104,48 @@ msgstr "見つかりません" msgid "Not right now" msgstr "今はしない" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "共有についての注意事項" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。" -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "何もありません" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "通知フィルター" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "通知設定" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "通知設定" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "通知音" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "通知音" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "通知" @@ -4037,11 +4153,12 @@ msgstr "通知" msgid "now" msgstr "今" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "今" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "ヌード" @@ -4053,45 +4170,40 @@ msgstr "ヌードあるいは成人向けコンテンツと表示されていな msgid "Off" msgstr "オフ" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "ちょっと!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "ちょっと!何らかの問題が発生したようです。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "ああ、残念!共有するための画像を生成できませんでした。ご安心ください、ここに来てくれて嬉しいです🦋" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "OK" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "古い順に返信を表示" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "オンボーディングのリセット" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr ".jpgと.pngファイルのみに対応しています" @@ -4103,7 +4215,11 @@ msgstr "{0}のみ返信可能。" msgid "Only contains letters, numbers, and hyphens" msgstr "英数字とハイフンのみ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "画像ファイルのみに対応しています" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt)ファイルのみに対応しています" @@ -4112,50 +4228,54 @@ msgid "Oops, something went wrong!" msgstr "おっと、何らかの問題が発生したようです!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "おっと!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "開かれています" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "{name}のプロフィールのショートカットメニューを開く" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "アバター・クリエイターを開く" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "会話のオプションを開く" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "絵文字を入力" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "{niceUrl}へのリンクを開く" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" -msgstr "アプリ内ブラウザーでリンクを開く" +msgstr "アプリ内ブラウザでリンクを開く" #: src/components/dms/ActionsWrapper.tsx:87 msgid "Open message options" msgstr "メッセージのオプションを開く" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "ミュートしたワードとタグの設定を開く" @@ -4163,20 +4283,20 @@ msgstr "ミュートしたワードとタグの設定を開く" msgid "Open navigation" msgstr "ナビゲーションを開く" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "投稿のオプションを開く" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "絵本のページを開く" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "システムのログを開く" @@ -4184,53 +4304,57 @@ msgstr "システムのログを開く" msgid "Opens {numItems} options" msgstr "{numItems}個のオプションを開く" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "自分の投稿にコンテンツの警告を追加するダイアログを開く" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "このスレッドに誰が返信できるかを選択するダイアログを開く" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "アクセシビリティの設定を開く" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "デバッグエントリーの追加詳細を開く" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" -msgstr "背景の設定を開く" +msgstr "外観の設定を開く" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "デバイスのカメラを開く" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "チャットの設定を開く" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "編集画面を開く" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "構成可能な言語設定を開く" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "デバイスのフォトギャラリーを開く" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "外部コンテンツの埋め込みの設定を開く" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "新しいBlueskyのアカウントを作成するフローを開く" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "既存のBlueskyアカウントにサインインするフローを開く" @@ -4242,51 +4366,51 @@ msgstr "GIFの選択のダイアログを開く" msgid "Opens list of invite codes" msgstr "招待コードのリストを開く" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "アカウント無効化の確認のモーダルを開く" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "アカウントの削除確認用のモーダルを開きます。メールアドレスのコードが必要です" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Blueskyのパスワードを変更するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "新しいBlueskyのハンドルを選択するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Blueskyのアカウントのデータ(リポジトリ)をダウンロードするためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "メールアドレスの認証のためのモーダルを開く" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "カスタムドメインを使用するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "モデレーションの設定を開く" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "パスワードリセットのフォームを開く" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "保存されたすべてのフィードで画面を開く" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "アプリパスワードの設定を開く" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Followingフィードの設定を開く" @@ -4294,25 +4418,25 @@ msgstr "Followingフィードの設定を開く" msgid "Opens the linked website" msgstr "リンク先のウェブサイトを開く" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "ストーリーブックのページを開く" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "システムログのページを開く" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "スレッドの設定を開く" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "プロフィールを開く" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "ビデオの選択画面を開く" @@ -4320,8 +4444,8 @@ msgstr "ビデオの選択画面を開く" msgid "Option {0} of {numItems}" msgstr "{numItems}個中{0}目のオプション" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "オプションとして、以下に追加情報をご記入ください:" @@ -4329,7 +4453,7 @@ msgstr "オプションとして、以下に追加情報をご記入ください msgid "Options:" msgstr "オプション:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "または以下のオプションを組み合わせてください:" @@ -4342,14 +4466,15 @@ msgid "Or, log into one of your other accounts." msgstr "または、あなたの他のアカウントにログインする。" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "その他" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "その他のアカウント" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "その他のアカウント" @@ -4357,21 +4482,21 @@ msgstr "その他のアカウント" msgid "Other..." msgstr "その他…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "モデレーターが報告をレビューし、Blueskyであなたがチャットにアクセスできないようにしました。" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "ページが見つかりません" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "ページが見つかりません" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4381,42 +4506,42 @@ msgstr "パスワード" msgid "Password Changed" msgstr "パスワードが変更されました" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "パスワードが更新されました" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "パスワードが更新されました!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "一時停止" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "ビデオを一時停止" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "ユーザー" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "カメラへのアクセス権限が必要です。" -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "カメラへのアクセスが拒否されました。システムの設定で有効にしてください。" @@ -4425,60 +4550,69 @@ msgid "Person toggle" msgstr "ユーザーを切り替え" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "ペット" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "写真" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "成人向けの画像です。" -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "ホームにピン留め" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "ホームにピン留め" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "プロフィールに固定" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "固定" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "ピン留めされたフィード" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "フィードにピン留めしました" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "再生" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "{0}を再生" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "GIFの再生や一時停止" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "ビデオを再生" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "ビデオを再生" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "GIFを再生" @@ -4487,7 +4621,7 @@ msgid "Please choose your handle." msgstr "ハンドルをお選びください。" #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "パスワードを選択してください。" @@ -4512,11 +4646,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "ミュートにする有効な単語、タグ、フレーズを入力してください" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "メールアドレスを入力してください。" -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "招待コードを入力してください。" @@ -4524,16 +4658,16 @@ msgstr "招待コードを入力してください。" msgid "Please enter your password as well:" msgstr "パスワードも入力してください:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0}によって適用されたこのラベルが誤りであると思われる理由を説明してください" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "チャットが間違って無効化されたと考える理由を説明してください" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "@{0}としてサインインしてください" @@ -4541,21 +4675,18 @@ msgstr "@{0}としてサインインしてください" msgid "Please Verify Your Email" msgstr "メールアドレスを確認してください" -#: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "リンクカードが読み込まれるまでお待ちください" - #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "政治" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "ポルノ" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "投稿" @@ -4569,17 +4700,21 @@ msgstr "投稿" msgid "Post by {0}" msgstr "{0}による投稿" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "@{0}による投稿" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "投稿を削除" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "投稿のアップロードに失敗しました。インターネット接続を確認し、再度試してください。" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "投稿を非表示" @@ -4594,7 +4729,7 @@ msgstr "ミュートしたワードによって投稿が表示されません" msgid "Post Hidden by You" msgstr "あなたが非表示にした投稿" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "投稿への反応の設定" @@ -4602,7 +4737,7 @@ msgstr "投稿への反応の設定" msgid "Post language" msgstr "投稿の言語" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "投稿の言語" @@ -4611,12 +4746,24 @@ msgstr "投稿の言語" msgid "Post not found" msgstr "投稿が見つかりません" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "投稿を固定しました" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "投稿の固定を解除しました" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "投稿中…" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "投稿" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "投稿" @@ -4636,7 +4783,7 @@ msgstr "誤解を招く可能性のあるリンク" msgid "Preference saved" msgstr "設定を保存しました" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "再接続してみる" @@ -4646,8 +4793,8 @@ msgstr "ホスティングプロバイダーを変える" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "再実行する" @@ -4659,79 +4806,79 @@ msgstr "あなたもフォローしているこのアカウントのフォロワ msgid "Previous image" msgstr "前の画像" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "第一言語" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "あなたのフォローを優先" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "優先通知" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "プライバシー" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "プライバシーポリシー" -#: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "他のユーザーとプライベートにチャットします。" +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "ビデオを処理中…" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "処理中…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "プロフィール" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "プロフィール" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "プロフィールを更新しました" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "メールアドレスを確認してアカウントを保護します。" -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "公開されています" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "ユーザーを一括でミュートまたはブロックする、公開された共有可能なリスト。" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "フィードとして利用できる、公開された共有可能なリスト。" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "投稿を公開" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "投稿を公開" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "返信を公開" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "返信を公開" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4745,39 +4892,39 @@ msgstr "QRコードをダウンロードしました!" msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "引用" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "引用投稿が再び関連付けられました" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "引用投稿を切り離すことができました" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "引用投稿は無効です" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "引用投稿は有効です" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "引用の設定" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "引用" @@ -4785,16 +4932,12 @@ msgstr "引用" msgid "Quotes of this post" msgstr "この投稿の引用" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "ランダムな順番で表示(別名「投稿者のルーレット」)" -#: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "比率" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "引用を再度関連付ける" @@ -4802,46 +4945,47 @@ msgstr "引用を再度関連付ける" msgid "Reactivate your account" msgstr "あなたのアカウントを再有効化" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Blueskyのブログを読む" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Blueskyのプライバシーポリシーを読む" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Blueskyの利用規約を読む" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "理由:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "検索履歴" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "再接続" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "通知を更新" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "会話を再読み込み" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4855,11 +4999,11 @@ msgstr "{displayName}をスターターパックから削除" msgid "Remove account" msgstr "アカウントを削除" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "添付を削除" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "アバターを削除" @@ -4867,7 +5011,7 @@ msgstr "アバターを削除" msgid "Remove Banner" msgstr "バナーを削除" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "埋め込みを削除" @@ -4883,13 +5027,14 @@ msgstr "フィードを削除しますか?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "マイフィードから削除" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "マイフィードから削除しますか?" @@ -4902,7 +5047,7 @@ msgstr "クイックアクセスから削除しますか?" msgid "Remove from saved feeds" msgstr "保存フィードから削除" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "イメージを削除" @@ -4910,24 +5055,24 @@ msgstr "イメージを削除" msgid "Remove mute word from your list" msgstr "リストからミュートワードを削除" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "プロフィールを削除" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "検索履歴からプロフィールを削除する" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "引用を削除" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "リポストを削除" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "字幕ファイルを削除" @@ -4935,16 +5080,16 @@ msgstr "字幕ファイルを削除" msgid "Remove this feed from your saved feeds" msgstr "保存したフィードからこのフィードを削除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "投稿者が削除しました" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "あなたが削除しました" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "リストから削除されました" @@ -4958,25 +5103,21 @@ msgid "Removed from saved feeds" msgstr "保存フィードから削除しました" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "あなたのフィードから削除しました" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "引用を削除する" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "添付を削除する" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Discoverで置き換える" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "返信" @@ -4988,7 +5129,7 @@ msgstr "返信できません" msgid "Replies to this post are disabled." msgstr "この投稿への返信は無効化されています。" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "返信" @@ -5003,41 +5144,41 @@ msgstr "返信はスレッドの投稿者によって非表示に" msgid "Reply Hidden by You" msgstr "返信はあなたによって非表示に" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "返信の設定" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "返信の設定はスレッドの投稿者によって選択されています" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/>に返信" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "ブロックした投稿への返信" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "投稿への返信" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "あなたへの返信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "表示・非表示の設定を更新しました" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "返信を非表示にすることができました" @@ -5047,8 +5188,8 @@ msgstr "返信を非表示にすることができました" msgid "Report" msgstr "報告" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "アカウントを報告" @@ -5058,16 +5199,16 @@ msgstr "アカウントを報告" msgid "Report conversation" msgstr "会話を報告" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "報告ダイアログ" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "フィードを報告" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "リストを報告" @@ -5075,13 +5216,13 @@ msgstr "リストを報告" msgid "Report message" msgstr "メッセージを報告" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "投稿を報告" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "スタータパックを報告" @@ -5097,8 +5238,8 @@ msgstr "このフィードを報告" msgid "Report this list" msgstr "このリストを報告" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "このメッセージを報告" @@ -5115,9 +5256,9 @@ msgstr "このスターターパックを報告" msgid "Report this user" msgstr "このユーザーを報告" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "リポスト" @@ -5127,28 +5268,28 @@ msgstr "リポスト" msgid "Repost" msgstr "リポスト" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "リポストまたは引用" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "リポストしたユーザー" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "{0}にリポストされた" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "<0><1/>がリポスト" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "あなたのリポスト" @@ -5170,7 +5311,7 @@ msgstr "変更を要求" msgid "Request Code" msgstr "コードをリクエスト" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "画像投稿時にALTテキストを必須とする" @@ -5178,20 +5319,26 @@ msgstr "画像投稿時にALTテキストを必須とする" msgid "Require email code to log into your account" msgstr "アカウントにログインする時にメールのコードを必須とする" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "このプロバイダーに必要" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "あなたの地域では必要" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "メールを再送" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "メール再送済" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "確認メールを再送済" @@ -5203,29 +5350,29 @@ msgstr "リセットコード" msgid "Reset Code" msgstr "リセットコード" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "オンボーディングの状態をリセット" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "パスワードをリセット" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "設定をリセット" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "オンボーディングの状態をリセットします" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "設定の状態をリセットします" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "ログインをやり直す" @@ -5234,16 +5381,16 @@ msgstr "ログインをやり直す" msgid "Retries the last action, which errored out" msgstr "エラーになった最後のアクションをやり直す" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5253,51 +5400,54 @@ msgstr "再試行" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "前のページに戻る" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "ホームページに戻る" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "前のページに戻る" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "保存" -#: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "ALTテキストを保存" - -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "生年月日を保存" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "変更を保存" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "ハンドルの変更を保存" @@ -5306,92 +5456,77 @@ msgstr "ハンドルの変更を保存" msgid "Save image" msgstr "画像を保存" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "画像の切り抜きを保存" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "QRコードを保存" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "マイフィードに保存" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "保存されたフィード" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "カメラロールに保存しました" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "フィードを保存しました" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "プロフィールに加えた変更を保存します" - -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "{handle}へのハンドルの変更を保存" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "画像の切り抜き設定を保存" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "よろしく!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "科学" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "一番上までスクロール" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "検索" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "「{query}」を検索" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "「{searchText}」を検索" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "{displayTag}のすべての投稿を検索(@{authorHandle}のみ)" - -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー)" - -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "他の人におすすめしたいフィードを検索。" @@ -5399,18 +5534,16 @@ msgstr "他の人におすすめしたいフィードを検索。" msgid "Search for users" msgstr "ユーザーを検索" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "GIFを検索" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "プロフィールを検索" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Tenorを検索" @@ -5426,23 +5559,23 @@ msgstr "{truncatedTag}の投稿を表示(すべてのユーザー)" msgid "See {truncatedTag} posts by user" msgstr "{truncatedTag}の投稿を表示(このユーザーのみ)" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "<0>{displayTag}の投稿を表示(すべてのユーザー)" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "<0>{displayTag}の投稿を表示(このユーザーのみ)" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Blueskyの求人を見る" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "ガイドを見る" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "シークバー" @@ -5454,7 +5587,7 @@ msgstr "{item}を選択" msgid "Select a color" msgstr "色を選択" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "アカウントを選択" @@ -5466,7 +5599,7 @@ msgstr "アバターを選択" msgid "Select an emoji" msgstr "絵文字を選択" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "既存のアカウントから選択" @@ -5474,7 +5607,7 @@ msgstr "既存のアカウントから選択" msgid "Select GIF" msgstr "GIFを選ぶ" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF「{0}」を選ぶ" @@ -5482,15 +5615,15 @@ msgstr "GIF「{0}」を選ぶ" msgid "Select how long to mute this word for." msgstr "このワードをどのくらいの間ミュートするのかを選択。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "言語を選択…" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "言語を選択" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "モデレーターを選択" @@ -5498,7 +5631,7 @@ msgstr "モデレーターを選択" msgid "Select option {i} of {numItems}" msgstr "{numItems}個中{i}個目のオプションを選択" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "字幕ファイル(.vtt)を選択" @@ -5506,15 +5639,15 @@ msgstr "字幕ファイル(.vtt)を選択" msgid "Select the {emojiName} emoji as your avatar" msgstr "絵文字{emojiName}をアバターとして選択" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "報告先のモデレーションサービスを選んでください" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "データをホストするサービスを選択します。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "ビデオを選択" @@ -5522,23 +5655,23 @@ msgstr "ビデオを選択" msgid "Select what content this mute word should apply to." msgstr "このミュートワードをどのコンテンツに適用するのかを選択。" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "登録されたフィードに含める言語を選択します。選択されていない場合は、すべての言語が表示されます。" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "アプリに表示されるデフォルトのテキストの言語を選択" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "生年月日を選択" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "次のオプションから興味のあるものを選択してください" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "フィード内の翻訳に使用する言語を選択します。" @@ -5546,6 +5679,14 @@ msgstr "フィード内の翻訳に使用する言語を選択します。" msgid "Send a neat website!" msgstr "素敵なウェブサイトを送って!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "確認を送信" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "確認のメールを送信" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -5560,37 +5701,37 @@ msgctxt "action" msgid "Send Email" msgstr "メールを送信" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "フィードバックを送信" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "メッセージを送信" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "投稿を送る…" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "報告を送信" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "{0}に報告を送信" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "確認メールを送信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "ダイレクトメッセージで送信" @@ -5598,35 +5739,35 @@ msgstr "ダイレクトメッセージで送信" msgid "Sends email with confirmation code for account deletion" msgstr "アカウントの削除の確認コードをメールに送信" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "サーバーアドレス" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "生年月日を設定" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "新しいパスワードを設定" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "フィード内の引用をすべて非表示にするには、この設定を「いいえ」にします。リポストは引き続き表示されます。" -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "フィード内の返信をすべて非表示にするには、この設定を「いいえ」にします。" -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "フィード内のリポストをすべて非表示にするには、この設定を「いいえ」にします。" -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "スレッド表示で返信を表示するには、この設定を「はい」にします。これは実験的な機能です。" -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "保存されたフィードから投稿を抽出してFollowingフィードに表示するには、この設定を「はい」にします。これは実験的な機能です。" @@ -5634,35 +5775,22 @@ msgstr "保存されたフィードから投稿を抽出してFollowingフィー msgid "Set up your account" msgstr "アカウントを設定する" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Blueskyのユーザーネームを設定" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "パスワードをリセットするためのメールアドレスを入力" -#: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "画像のアスペクト比を正方形に設定" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "画像のアスペクト比を縦長に設定" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "画像のアスペクト比をワイドに設定" - -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "設定" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "性的行為または性的なヌード。" @@ -5670,20 +5798,19 @@ msgstr "性的行為または性的なヌード。" msgid "Sexually Suggestive" msgstr "性的にきわどい" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "共有" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "共有" @@ -5696,28 +5823,20 @@ msgstr "クールなストーリーをシェアして!" msgid "Share a fun fact!" msgstr "面白いことをシェアして!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "とにかく共有" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "フィードを共有" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "画像を外部に共有する" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "投稿で画像を共有" - #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "リンクを共有" @@ -5735,7 +5854,7 @@ msgstr "リンク共有のダイアログ" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "このスターターパックを共有" @@ -5747,7 +5866,7 @@ msgstr "このスターターパックを共有して、他のユーザーがBlu msgid "Share your favorite feed!" msgstr "お気に入りのフィードをシェアして!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Shared Preferencesのテスター" @@ -5755,19 +5874,19 @@ msgstr "Shared Preferencesのテスター" msgid "Shares the linked website" msgstr "リンクしたウェブサイトを共有" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "表示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "ALTテキストを表示" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "とにかく表示" @@ -5785,8 +5904,8 @@ msgstr "バッジの表示とフィードからのフィルタリング" msgid "Show hidden replies" msgstr "非表示の返信を表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "このような投稿の表示を減らす" @@ -5794,14 +5913,14 @@ msgstr "このような投稿の表示を減らす" msgid "Show list anyway" msgstr "とにかくリストを表示" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "さらに表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "このような投稿の表示を増やす" @@ -5809,32 +5928,32 @@ msgstr "このような投稿の表示を増やす" msgid "Show muted replies" msgstr "ミュートした返信を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "マイフィードからの投稿を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "引用を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "返信を表示" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "自分がフォローしているユーザーからの返信を、他のすべての返信の前に表示します。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "返信を全員に見せる" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "リポストを表示" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "コンテンツを表示" @@ -5847,36 +5966,31 @@ msgstr "警告を表示" msgid "Show warning and filter from feeds" msgstr "警告の表示とフィードからのフィルタリング" -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "マイフィード内の{0}からの投稿を表示します" - #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "サインイン" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "{0}としてサインイン" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "アカウントの選択" @@ -5888,42 +6002,37 @@ msgstr "会話に参加するにはサインインするか新しくアカウン msgid "Sign into Bluesky or create a new account" msgstr "Blueskyにサインイン または 新規アカウントの登録" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "サインアウト" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "すべてのアカウントからサインアウト" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "サインアップ" -#: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "サインアップまたはサインインして会話に参加" - -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "サインインが必要" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "サインイン済み" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "@{0}でサインイン" @@ -5931,8 +6040,8 @@ msgstr "@{0}でサインイン" msgid "signed up with your starter pack" msgstr "あなたのスターターパックでサインアップ" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "スターターパックを使わずにサインアップ" @@ -5940,17 +6049,22 @@ msgstr "スターターパックを使わずにサインアップ" msgid "Similar accounts" msgstr "似ているアカウント" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "スキップ" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "この手順をスキップする" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "小さい" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "ソフトウェア開発" @@ -5962,7 +6076,7 @@ msgstr "お好みかもしれない他のフィード" msgid "Some people can reply" msgstr "一部の人が返信可能" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "何らかの問題が発生したようです" @@ -5971,33 +6085,33 @@ msgstr "何らかの問題が発生したようです" msgid "Something went wrong, please try again" msgstr "何らかの問題が発生したようなので、もう一度お試しください" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "何らかの問題が発生したようなので、もう一度お試しください。" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "何らかの問題が発生したようです!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "大変申し訳ありません!セッションの有効期限が切れました。もう一度ログインしてください。" -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "返信を並び替える" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "次の方法で同じ投稿への返信を並び替えます。" -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "ソース:<0>{sourceName}" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "ソース:" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6009,73 +6123,69 @@ msgid "Spam; excessive mentions or replies" msgstr "スパム、過剰なメンションや返信" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "スポーツ" -#: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "正方形" - -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "新しいチャットを開始" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "{displayName}とのチャットを開始" -#: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "チャットを開始" - -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "スターターパック" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "{0}によるスターターパック" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "自分のスターターパック" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "スターターパックが無効です" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "スターターパック" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "ステータスページ" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "ステップ {0} / {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。" -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "ストーリーブック" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "送信" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "登録" @@ -6083,18 +6193,22 @@ msgstr "登録" msgid "Subscribe to @{0} to use these labels:" msgstr "これらのラベルを使用するには@{0}を登録してください:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "ラベラーを登録する" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "このラベラーを登録" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "このリストに登録" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "成功!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "おすすめのアカウント" @@ -6103,39 +6217,41 @@ msgstr "おすすめのアカウント" msgid "Suggested for you" msgstr "あなたへのおすすめ" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "きわどい" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "サポート" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "アカウントを切り替える" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "{0}に切り替え" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "ログインしているアカウントを切り替えます" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "システム" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "システムログ" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "タグメニュー:{displayTag}" @@ -6143,23 +6259,19 @@ msgstr "タグメニュー:{displayTag}" msgid "Tags only" msgstr "タグのみ" -#: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "トール" - #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "タップして消す" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "タップしてフルスクリーンに" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "タップして再生または一時停止" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "タップして音の切り替え" @@ -6177,7 +6289,7 @@ msgid "Teach our algorithm what you like" msgstr "アルゴリズムを鍛える" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "テクノロジー" @@ -6185,23 +6297,23 @@ msgstr "テクノロジー" msgid "Tell a joke!" msgstr "ジョークを言って!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "あなた自身について少し教えて" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "もう少し教えて" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "1,000万" - #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "条件" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "利用規約" @@ -6216,25 +6328,25 @@ msgstr "使用されている用語がコミュニティ基準に違反してい msgid "Text & tags" msgstr "テキストとタグ" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "テキストの入力フィールド" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "ありがとう!メールの確認に成功しました。" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "ありがとうございます。あなたの報告は送信されました。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "最初の 1,000 万人のユーザーの 1 人になっていただきありがとうございます。" +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "ありがとう、メールアドレスの確認に成功しました。このダイアログを閉じても大丈夫です。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "ありがとう、メールアドレスの確認に成功しました。" - -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "その内容は以下の通りです:" @@ -6242,21 +6354,21 @@ msgstr "その内容は以下の通りです:" msgid "That handle is already taken." msgstr "そのハンドルはすでに使用されています。" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "そのスターターパックが見つかりませんでした。" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "以上です、皆さん!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。" @@ -6265,15 +6377,15 @@ msgstr "このアカウントは、ブロック解除後にあなたとやり取 msgid "The author of this thread has hidden this reply." msgstr "このスレッドの投稿者がこの返信を非表示にしました" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Blueskyウェブアプリ" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "コミュニティガイドラインは<0/>に移動しました" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "著作権ポリシーは<0/>に移動しました" @@ -6286,7 +6398,7 @@ msgstr "Discoverフィード" msgid "The Discover feed now knows what you like" msgstr "Discoverフィードはあなたの好みを学習しました" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -6311,63 +6423,55 @@ msgstr "次の手順であなたのBlueskyでの体験をカスタマイズで msgid "The post may have been deleted." msgstr "投稿が削除された可能性があります。" -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "選択したビデオのサイズが50MBを超えています。" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "サポートフォームは移動しました。サポートが必要な場合は、<0/>または{HELP_DESK_URL}にアクセスしてご連絡ください。" -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "サービス規約は移動しました" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "入力された確認コードが正しくありません。正しいリンクを使用したかを確認するか、新しい確認コードを要求してください。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "テーマ" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "アカウントの無効化に期限はありません。いつでも戻ってこられます。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "サーバーへの問い合わせ中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" - -#: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" - -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "フィードの更新中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" - -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Tenorへの接続中に問題が発生しました。" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "サーバーへの問い合わせ中に問題が発生しました" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6377,39 +6481,49 @@ msgstr "サーバーへの問い合わせ中に問題が発生しました" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "報告の送信に問題が発生しました。インターネットの接続を確認してください。" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "フィードの更新中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "アプリパスワードの取得中に問題が発生しました" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "問題が発生しました! {0}" @@ -6417,16 +6531,15 @@ msgstr "問題が発生しました! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "アプリケーションに予期しない問題が発生しました。このようなことが繰り返した場合はサポートへお知らせください!" @@ -6434,11 +6547,11 @@ msgstr "アプリケーションに予期しない問題が発生しました。 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Blueskyに新規ユーザーが殺到しています!できるだけ早くアカウントを有効にできるよう努めます。" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "この{screenDescription}にはフラグが設定されています:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "このアカウントを閲覧するためにはサインインが必要です。" @@ -6446,15 +6559,15 @@ msgstr "このアカウントを閲覧するためにはサインインが必要 msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "このアカウントは1つ、あるいは複数のモデレーションリストでブロックされています。ブロックを解除するにはリストの画面に移動してこのユーザーをリストから外してください。" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "この申し立ては<0>{sourceName}に送られます。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "この異議申し立てはBlueskyのモデレーション・サービスに送られます。" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "このチャットは切断されました" @@ -6466,7 +6579,7 @@ msgstr "このコンテンツはモデレーターによって非表示になっ msgid "This content has received a general warning from moderators." msgstr "このコンテンツはモデレーターから一般的な警告を受けています。" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "このコンテンツは{0}によってホストされています。外部メディアを有効にしますか?" @@ -6479,11 +6592,11 @@ msgstr "このコンテンツは関係するユーザーの一方が他方をブ msgid "This content is not viewable without a Bluesky account." msgstr "このコンテンツはBlueskyのアカウントがないと閲覧できません。" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "削除あるいは無効化されたアカウントとの会話です。押すと選択肢が表示されます。" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "この機能はベータ版です。リポジトリのエクスポートの詳細については、<0>このブログ投稿を参照してください。" @@ -6496,8 +6609,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "このフィードは空です。" @@ -6505,7 +6618,7 @@ msgstr "このフィードは空です。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "このフィードはもはやオンラインではありません。代わりに<0>Discoverを表示しています。" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "この情報は他のユーザーと共有されません。" @@ -6513,15 +6626,15 @@ msgstr "この情報は他のユーザーと共有されません。" msgid "This is important in case you ever need to change your email or reset your password." msgstr "これは、メールアドレスの変更やパスワードのリセットが必要な場合に重要です。" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "<0>{0}によって適用されたラベルです。" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "投稿者によって適用されたラベルです。" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "あなたによって適用されたラベルです。" @@ -6537,7 +6650,7 @@ msgstr "このリンクは次のウェブサイトへリンクしています: msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "このリスト — <0>{0}が作成 — は名前か説明がBlueskyのコミュニティガイドラインに違反している可能性があります。" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "このリストは空です!" @@ -6549,28 +6662,28 @@ msgstr "このモデレーションのサービスはご利用できません。 msgid "This name is already in use" msgstr "この名前はすでに使用中です" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "この投稿は削除されました。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "この投稿はログインしているユーザーにのみ表示されます。ログインしていない方には見えません。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "この投稿の投稿者は引用投稿を無効にしています。" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "このプロフィールはログインしているユーザーにのみ表示されます。ログインしていない方には見えません。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "この返信はスレッドの一番下にある非表示のセクションに移動され、その後のあなたや他のユーザー宛の返信の通知をミュートします。" @@ -6578,7 +6691,7 @@ msgstr "この返信はスレッドの一番下にある非表示のセクショ msgid "This service has not provided terms of service or a privacy policy." msgstr "このサービスには、利用規約もプライバシーポリシーもありません。" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "右記にドメインレコードを作成されるはずです:" @@ -6623,28 +6736,28 @@ msgstr "ミュートしたワードから「{0}」が削除されます。あと msgid "This will remove @{0} from the quick access list." msgstr "クイックアクセスのリストから@{0}を削除します。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "これによってあなたの投稿が全員に見える引用投稿からは削除され、プレースホルダーに置き換えられます。" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "スレッドの設定" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "スレッドの設定" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "スレッドモード" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "スレッドの設定" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "メールでの2要素認証を無効にするには、メールアドレスにアクセスできるか確認してください。" @@ -6652,41 +6765,37 @@ msgstr "メールでの2要素認証を無効にするには、メールアド msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "会話を報告するには、会話の画面からメッセージのうちの一つを報告してください。それによって問題の文脈をモデレーターが理解できるようになります。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Blueskyにビデオをアップロードするには、まずメールアドレスを確認しなくてはなりません。" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "この報告を誰に送りたいですか?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "私たちは一緒にソーシャル インターネットを再構築しています。ご参加いただきありがとうございます。" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "今日" #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "ドロップダウンを切り替え" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "成人向けコンテンツの有効もしくは無効の切り替え" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "トップ" -#: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "変換" - #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "翻訳" @@ -6695,40 +6804,40 @@ msgctxt "action" msgid "Try again" msgstr "再試行" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "テレビ" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "2要素認証" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "ここにメッセージを入力する" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "タイプ:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "リストでのブロックを解除" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "リストでのミュートを解除" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "削除できません" @@ -6736,14 +6845,14 @@ msgstr "削除できません" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "ブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "ブロックを解除" @@ -6753,17 +6862,17 @@ msgstr "ブロックを解除" msgid "Unblock account" msgstr "アカウントのブロックを解除" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "アカウントのブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "アカウントのブロックを解除しますか?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6774,26 +6883,26 @@ msgctxt "action" msgid "Unfollow" msgstr "フォローを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "{0}のフォローを解除" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "アカウントのフォローを解除" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "このフィードからいいねを外す" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "ミュートを解除" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "ミュートを解除" @@ -6802,12 +6911,12 @@ msgstr "ミュートを解除" msgid "Unmute {truncatedTag}" msgstr "{truncatedTag}のミュートを解除" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "アカウントのミュートを解除" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "{displayTag}のすべての投稿のミュートを解除" @@ -6815,33 +6924,38 @@ msgstr "{displayTag}のすべての投稿のミュートを解除" msgid "Unmute conversation" msgstr "会話のミュートを解除" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "スレッドのミュートを解除" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "ビデオのミュートを解除" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "ピン留めを解除" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "ホームからピン留めを解除" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "プロフィールから固定を解除" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "モデレーションリストのピン留めを解除" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "フィードからピン留めを解除" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "登録を解除" @@ -6850,7 +6964,7 @@ msgstr "登録を解除" msgid "Unsubscribe from list" msgstr "リストの登録を解除" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "このラベラーの登録を解除" @@ -6858,7 +6972,7 @@ msgstr "このラベラーの登録を解除" msgid "Unsubscribed from list" msgstr "リストの登録を解除しました" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "サポートしていないビデオ形式:{mimeType}" @@ -6868,83 +6982,96 @@ msgid "Unwanted Sexual Content" msgstr "望まない性的なコンテンツ" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "リストの{displayName}を更新" +msgid "Update <0>{displayName} in Lists" +msgstr "リストの<0>{displayName}を更新" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "{handle}に更新" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "引用の切り離しに失敗しました" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "返信の表示・非表示に変更に失敗しました" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "更新中…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "代わりに写真をアップロード" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "テキストファイルのアップロード先:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "カメラからアップロード" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "ファイルからアップロード" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "ライブラリーからアップロード" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "画像をアップロード中…" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "リンクのサムネイルをアップロード中…" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "ビデオをアップロード中…" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "あなたのサーバーのファイルを使用" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "他のBlueskyクライアントにアカウントやパスワードに完全にアクセスする権限を与えずに、アプリパスワードを使ってログインします。" -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "ホスティングプロバイダーとしてbsky.socialを使用" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "デフォルトプロバイダーを使用" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" -msgstr "アプリ内ブラウザーを使用" +msgstr "アプリ内ブラウザを使用" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" -msgstr "デフォルトのブラウザーを使用" +msgstr "デフォルトのブラウザを使用" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" msgstr "おすすめを使う" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "DNSパネルを使用" @@ -6981,36 +7108,36 @@ msgstr "あなたをブロックしているユーザー" msgid "User Blocks You" msgstr "あなたをブロックしているユーザー" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "<0/>の作成したユーザーリスト" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "<0/>の作成したユーザーリスト" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "あなたの作成したユーザーリスト" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "ユーザーリストを作成しました" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "ユーザーリストを更新しました" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "ユーザーリスト" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "ユーザー名またはメールアドレス" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "ユーザー" @@ -7018,46 +7145,45 @@ msgstr "ユーザー" msgid "users followed by <0>@{0}" msgstr "<0>@{0}にフォローされているユーザー" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "フォローしているユーザー" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "{0}のユーザー" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "このコンテンツやプロフィールにいいねをしているユーザー" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "値:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "メールアドレスの確認が必要" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "DNSレコードを確認" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "メールアドレスを確認" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "メールアドレス確認ダイアログ" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "メールアドレスを確認" @@ -7066,33 +7192,34 @@ msgstr "メールアドレスを確認" msgid "Verify New Email" msgstr "新しいメールアドレスを確認" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "確認する" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "テキストファイルを確認" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "バージョン {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "ビデオ" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "ビデオの処理に失敗" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "ビデオゲーム" @@ -7100,20 +7227,24 @@ msgstr "ビデオゲーム" msgid "Video not found." msgstr "ビデオが見つかりません。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "ビデオの設定" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "ビデオをアップロードしました" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "ビデオ:{0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "ビデオは60秒より短くなくてはなりません" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "{0}のアバターを表示" @@ -7126,15 +7257,23 @@ msgstr "{0}のプロフィールを表示" msgid "View {displayName}'s profile" msgstr "{displayName}のプロフィールを表示" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "{displayTag}の投稿をすべて表示(@{authorHandle}のみ)" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "{displayTag}の投稿をすべて表示(すべてのユーザー)" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "ブロック中のユーザーのプロフィールを表示" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "詳細についてのブログの記事を見る" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "デバッグエントリーを表示" @@ -7154,11 +7293,13 @@ msgstr "スレッドをすべて表示" msgid "View information about these labels" msgstr "これらのラベルに関する情報を見る" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "プロフィールを表示" @@ -7166,28 +7307,28 @@ msgstr "プロフィールを表示" msgid "View the avatar" msgstr "アバターを表示" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "@{0}によって提供されるラベリングサービスを見る" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "ブロックしたアカウントを見る" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "フィードを表示し、さらにフィードを探す" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "モデレーションリストを見る" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "ミュートしたアカウントを見る" @@ -7210,11 +7351,11 @@ msgstr "コンテンツの警告" msgid "Warn content and filter from feeds" msgstr "コンテンツの警告とフィードからのフィルタリング" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "そのハッシュタグの検索結果は見つかりませんでした。" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "この会話を読み込めませんでした" @@ -7222,11 +7363,11 @@ msgstr "この会話を読み込めませんでした" msgid "We estimate {estimatedTime} until your account is ready." msgstr "あなたのアカウントが準備できるまで{estimatedTime}ほどかかります。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "別の確認コードを<0>{0}へ送りました。" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "素敵なひとときをお過ごしください。覚えておいてください、Blueskyは:" @@ -7234,19 +7375,19 @@ msgstr "素敵なひとときをお過ごしください。覚えておいてく msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "あなたのフォロー中のユーザーの投稿を読み終わりました。フィード<0/>内の最新の投稿を表示します。" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "あなたがビデオのアップロードを許可されているかどうか判断できません。もう一度お試しください。" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "生年月日の設定を読み込むことはできませんでした。もう一度お試しください。" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "現在設定されたラベラーを読み込めません。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "接続できませんでした。アカウントの設定を続けるためにもう一度お試しください。繰り返し失敗する場合は、この手順をスキップすることもできます。" @@ -7254,19 +7395,23 @@ msgstr "接続できませんでした。アカウントの設定を続けるた msgid "We will let you know when your account is ready." msgstr "アカウントの準備ができたらお知らせします。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "これはあなたの体験をカスタマイズするために使用されます。" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "ネットワークで問題が発生しています。もう一度試してください" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "新しいテーマフォントを導入し、フォントサイズを調整可能にしました。" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "私たちはあなたが参加してくれることをとても楽しみにしています!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "大変申し訳ありませんが、このリストを解決できませんでした。それでもこの問題が解決しない場合は、作成者の@{handleOrDid}までお問い合わせください。" @@ -7274,20 +7419,20 @@ msgstr "大変申し訳ありませんが、このリストを解決できませ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "大変申し訳ありませんが、現在ミュートされたワードを読み込むことができませんでした。もう一度お試しください。" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後にもう一度お試しください。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "大変申し訳ありません!お探しのページは見つかりません。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "大変申し訳ありません!ラベラーは20までしか登録できず、すでに上限に達しています。" @@ -7299,7 +7444,7 @@ msgstr "おかえりなさい!" msgid "Welcome, friend!" msgstr "ようこそ、友よ!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "なにに興味がありますか?" @@ -7307,17 +7452,17 @@ msgstr "なにに興味がありますか?" msgid "What do you want to call your starter pack?" msgstr "あなたのスターターパックを何と呼びたいですか?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "最近どう?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "この投稿ではどの言語が使われていますか?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "アルゴリズムによるフィードにはどの言語を使用しますか?" @@ -7325,17 +7470,12 @@ msgstr "アルゴリズムによるフィードにはどの言語を使用しま msgid "Who can interact with this post?" msgstr "誰がこの投稿に反応できますか?" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "誰があなたへメッセージを送れるか?" - #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "返信できるユーザー" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "おっと!" @@ -7367,36 +7507,32 @@ msgstr "なぜこのスターターパックをレビューする必要があり msgid "Why should this user be reviewed?" msgstr "なぜこのユーザーをレビューする必要がありますか?" -#: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "ワイド" - -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "メッセージを書く" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "投稿を書く" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "返信を書く" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "ライター" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "はい" @@ -7405,15 +7541,15 @@ msgstr "はい" msgid "Yes, deactivate" msgstr "はい、無効化します" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "はい、切り離します" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "はい、非表示にします" @@ -7421,11 +7557,10 @@ msgstr "はい、非表示にします" msgid "Yes, reactivate my account" msgstr "はい、アカウントを再有効化します" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "昨日、{time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "昨日" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "あなた" @@ -7438,7 +7573,7 @@ msgstr "あなた" msgid "You are in line." msgstr "あなたは並んでいます。" -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "あなたはビデオのアップロードを許可されていません。" @@ -7446,6 +7581,10 @@ msgstr "あなたはビデオのアップロードを許可されていません msgid "You are not following anyone." msgstr "あなたはまだだれもフォローしていません。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "これらは後で外観の設定で調整できます。" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -7455,16 +7594,12 @@ msgstr "また、あなたはフォローすべき新しいカスタムフィー msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "代わりにアカウントを一時的に無効化して、いつでも再有効化することもできます。" -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "これはいつでも変更できます。" - -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "どの設定を選択しても進行中の会話は続けることができます。" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "新しいパスワードでサインインできるようになりました。" @@ -7476,7 +7611,7 @@ msgstr "アカウントを再有効化してログインし続けることがで msgid "You do not have any followers." msgstr "あなたはまだだれもフォロワーがいません。" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "@{name}をフォローしているユーザーを誰もフォローしていません。" @@ -7484,11 +7619,11 @@ msgstr "@{name}をフォローしているユーザーを誰もフォローし msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "まだ招待コードがありません!Blueskyをもうしばらく利用したらお送りします。" -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "ピン留めされたフィードがありません。" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "保存されたフィードがありません。" @@ -7506,8 +7641,8 @@ msgstr "あなたはこのユーザーをブロックしました" msgid "You have blocked this user. You cannot view their content." msgstr "あなたはこのユーザーをブロックしているため、コンテンツを閲覧できません。" -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -7530,7 +7665,7 @@ msgstr "このアカウントをミュートしました。" msgid "You have muted this user" msgstr "このユーザーをミュートしました" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "まだ会話していません。始めましょう!" @@ -7538,20 +7673,20 @@ msgstr "まだ会話していません。始めましょう!" msgid "You have no feeds." msgstr "フィードがありません。" -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "リストがありません。" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "ブロック中のアカウントはまだありません。アカウントをブロックするには、ユーザーのプロフィールに移動し、アカウントメニューから「アカウントをブロック」を選択します。" -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "アプリパスワードはまだ作成されていません。下のボタンを押すと作成できます。" -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "ミュートしているアカウントはまだありません。アカウントをミュートするには、プロフィールに移動し、アカウントメニューから「アカウントをミュート」を選択します。" @@ -7559,11 +7694,11 @@ msgstr "ミュートしているアカウントはまだありません。アカ msgid "You have reached the end" msgstr "最後まで到達しました" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "スターターパックをまだ作成していません!" @@ -7590,26 +7725,29 @@ msgstr "{STARTER_PACK_MAX_SIZE}ユーザーまで追加できます" #: src/screens/StarterPack/Wizard/State.tsx:97 msgid "You may only add up to 3 feeds" -msgstr "3フィードまで追加できます" +msgstr "3つまでフィードを追加できます" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "画像は4枚まで選択できます" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "サインアップするには、13歳以上である必要があります。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "スターターパックを作成するには少なくとも7人フォローしていなくてはなりません" +msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。" #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "報告をするには少なくとも1つのラベラーを選択する必要があります" @@ -7617,47 +7755,51 @@ msgstr "報告をするには少なくとも1つのラベラーを選択する msgid "You previously deactivated @{0}." msgstr "以前、あなたは@{0}を無効化しました。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることはできなくなります" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることができます" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "「リセットコード」が記載されたメールが届きます。ここにコードを入力し、新しいパスワードを入力します。" -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "あなた: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "あなた: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "あなた: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "これらのユーザーや他{0}をフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "本人確認のために<0>{0}へメールが届きます。" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "これらのフィードの更新を受け取ります" @@ -7672,7 +7814,7 @@ msgstr "あなたは並んでいます。" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "アプリパスワードでログイン中です。アカウントの無効化を続けるにはメインのパスワードでログインしてください。" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "準備ができました!" @@ -7685,15 +7827,15 @@ msgstr "この投稿でワードまたはタグを隠すことを選択しまし msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。" -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "ビデオのアップロードの一日の上限に到達しました(容量が大きすぎます)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "あなたのアカウント" @@ -7701,15 +7843,15 @@ msgstr "あなたのアカウント" msgid "Your account has been deleted" msgstr "あなたのアカウントは削除されました" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "あなたのアカウントはまだ新しいのでビデオをアップロードできません。もう一度お試しください。" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "あなたのアカウントの公開データの全記録を含むリポジトリは、「CAR」ファイルとしてダウンロードできます。このファイルには、画像などのメディア埋め込み、また非公開のデータは含まれていないため、それらは個別に取得する必要があります。" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "生年月日" @@ -7717,17 +7859,17 @@ msgstr "生年月日" msgid "Your browser does not support the video format. Please try a different browser." msgstr "利用中のブラウザがこのビデオ形式をサポートしていません。他のブラウザをお試しください。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "あなたのチャットは無効化されています" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "ここで選択した内容は保存されますが、あとから設定で変更できます。" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "メールアドレスが無効なようです。" @@ -7752,7 +7894,7 @@ msgstr "Followingフィードは空です!もっと多くのユーザーをフ msgid "Your full handle will be" msgstr "フルハンドルは" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "フルハンドルは<0>@{0}になります" @@ -7764,15 +7906,15 @@ msgstr "ミュートしたワード" msgid "Your password has been changed successfully!" msgstr "パスワードの変更が完了しました!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "投稿を公開しました" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "投稿、いいね、ブロックは公開されます。ミュートは非公開です。" -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "あなたのプロフィール" @@ -7780,14 +7922,14 @@ msgstr "あなたのプロフィール" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "返信を公開しました" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "あなたの報告はBluesky Moderation Serviceに送られます" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "あなたのユーザーハンドル" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 69db5d9409..2942105ec7 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -8,12 +8,12 @@ msgstr "" "Language: ko\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-17 00:08+0900\n" +"PO-Revision-Date: 2024-10-25 09:19+0900\n" "Last-Translator: quiple\n" "Language-Team: quiple, lens0021, HaruChanHeart, hazzzi, heartade\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(임베드 콘텐츠 포함)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(이메일 없음)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "외 {0, plural, other {{formattedCount}}}명" @@ -50,7 +50,7 @@ msgstr "{0, plural, other {#}}분" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {#}}개월" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, other {#}}개" @@ -68,15 +68,15 @@ msgstr "팔로워" msgid "{0, plural, one {following} other {following}}" msgstr "팔로우 중" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "좋아요 ({0, plural, other {#}}개)" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "좋아요" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#}}명의 사용자가 좋아함" @@ -85,19 +85,19 @@ msgstr "{0, plural, other {#}}명의 사용자가 좋아함" msgid "{0, plural, one {post} other {posts}}" msgstr "게시물" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "인용" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "답글 ({0, plural, other {#}}개)" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "재게시" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "좋아요 취소 ({0, plural, other {#}}개)" @@ -111,19 +111,19 @@ msgstr "<0><1>태그에서 {0}" msgid "{0} <0>in <1>text & tags" msgstr "<0><1>텍스트 및 태그에서 {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "이번 주에 {0}명이 가입함" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0}/{1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0}명이 이 스타터 팩을 사용했습니다!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "{0} 님의 아바타" @@ -160,12 +160,12 @@ msgstr "{0}개월" msgid "{0}s" msgstr "{0}초" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, other {#}}명의 사용자가 좋아함" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "{displayName} 님의 스타터 팩" @@ -177,22 +177,22 @@ msgstr "시간" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "분" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 팔로우 중" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#}}명의 사용자가 좋아함" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}개 읽지 않음" @@ -204,29 +204,29 @@ msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName} 님은 {0} 전에 스타터 팩을 사용하여 Bluesky에 가입했습니다" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#}}명이 스타터 팩에 포함됩니다" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#}}개가 스타터 팩에 포함됩니다" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} 팔로워" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} 팔로우 중" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} 및<1> <2>{1}이(가) 스타터 팩에 포함됩니다" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}이(가) 스타터 팩에 포함됩니다" @@ -234,15 +234,15 @@ msgstr "<0>{0}이(가) 스타터 팩에 포함됩니다" msgid "<0>{0} members" msgstr "<0>{0}의 멤버" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>해당 없음. 이 경고는 미디어가 첨부된 게시물에만 사용할 수 있습니다." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} {time}" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>나와<1> <2>{0} 님이 스타터 팩에 포함됩니다" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠잘못된 핸들" @@ -250,7 +250,7 @@ msgstr "⚠잘못된 핸들" msgid "24 hours" msgstr "24시간" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "2단계 인증" @@ -262,8 +262,8 @@ msgstr "30일" msgid "7 days" msgstr "7일" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "탐색 링크 및 설정으로 이동합니다" @@ -271,35 +271,34 @@ msgstr "탐색 링크 및 설정으로 이동합니다" msgid "Access profile and other navigation links" msgstr "프로필 및 기타 탐색 링크로 이동합니다" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "접근성" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "접근성 설정" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "접근성 설정" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "계정" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "계정 차단됨" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "계정 팔로우함" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "계정 뮤트됨" @@ -320,27 +319,27 @@ msgstr "계정 옵션" msgid "Account removed from quick access" msgstr "빠른 액세스에서 계정 제거" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "계정 차단 해제됨" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "계정 언팔로우함" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "계정 언뮤트됨" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "추가" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "계속하려면 {0}명 더 추가하기" @@ -348,37 +347,39 @@ msgstr "계속하려면 {0}명 더 추가하기" msgid "Add {displayName} to starter pack" msgstr "스타터 팩에 {displayName} 추가" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "콘텐츠 경고 추가" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "이 리스트에 사용자 추가" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "계정 추가" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "대체 텍스트 추가" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "대체 텍스트 추가 (선택 사항)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "앱 비밀번호 추가" @@ -394,7 +395,7 @@ msgstr "뮤트할 단어 및 태그 추가" msgid "Add recommended feeds" msgstr "추천 피드 추가" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "스타터 팩에 피드를 추가해 보세요!" @@ -402,16 +403,16 @@ msgstr "스타터 팩에 피드를 추가해 보세요!" msgid "Add the default feed of only people you follow" msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "도메인에 다음 DNS 레코드를 추가하세요:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "이 피드를 내 피드에 추가하기" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "리스트에 추가" @@ -420,7 +421,7 @@ msgid "Add to my feeds" msgstr "내 피드에 추가" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "리스트에 추가됨" @@ -428,22 +429,28 @@ msgstr "리스트에 추가됨" msgid "Added to my feeds" msgstr "내 피드에 추가됨" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "성인 콘텐츠" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "성인 콘텐츠는 <0>bsky.app에서 웹을 통해서만 활성화할 수 있습니다." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "성인 콘텐츠가 비활성화되어 있습니다." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "성인 콘텐츠 라벨" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "고급" @@ -451,11 +458,11 @@ msgstr "고급" msgid "Algorithm training complete!" msgstr "알고리즘 훈련 완료!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "모든 계정을 팔로우했습니다" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "저장한 모든 피드를 한 곳에서 확인하세요." @@ -464,53 +471,58 @@ msgstr "저장한 모든 피드를 한 곳에서 확인하세요." msgid "Allow access to your direct messages" msgstr "다이렉트 메시지 접근 허용" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "새 메시지를 허용할 대상" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "답글을 허용할 대상" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "다이렉트 메시지 접근 허용" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "이미 코드가 있나요?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "이미 @{0}(으)로 로그인했습니다" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "대체 텍스트" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "대체 텍스트" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "대체 텍스트를 자릅니다. 제한: {0}자." + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다." @@ -518,19 +530,23 @@ msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "이전 주소인 {0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "이메일을 보냈습니다! 아래에 이메일에 포함된 인증 코드를 입력하세요." + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "오류 발생" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "오류 발생" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "동영상을 압축하는 동안 오류가 발생했습니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?" @@ -542,25 +558,21 @@ msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 나중에 msgid "An error occurred while loading the video. Please try again." msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 시도하세요." -#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "이미지를 저장하는 동안 오류가 발생했습니다" - #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "동영상을 선택하는 동안 오류가 발생했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "동영상을 업로드하는 동안 오류가 발생했습니다." @@ -572,40 +584,40 @@ msgstr "어떤 옵션에도 포함되지 않는 문제" msgid "An issue occurred starting the chat" msgstr "채팅을 시작하는 동안 문제가 발생했습니다" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "채팅을 여는 동안 문제가 발생했습니다" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "알 수 없는 오류가 발생했습니다" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "알 수 없는 라벨러" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "및" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "동물" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "움직이는 GIF" @@ -613,15 +625,20 @@ msgstr "움직이는 GIF" msgid "Anti-Social Behavior" msgstr "반사회적 행위" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "모든 언어" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "누구나 상호작용할 수 있음" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "앱 언어" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "앱 비밀번호 삭제됨" @@ -633,47 +650,47 @@ msgstr "앱 비밀번호 이름에는 문자, 숫자, 공백, 대시, 밑줄만 msgid "App Password names must be at least 4 characters long." msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "앱 비밀번호 설정" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "앱 비밀번호" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "이의신청" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "\"{0}\" 라벨 이의신청" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "이의신청 제출함" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "이 결정에 이의신청" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "모양" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "모양 설정" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "모양 설정" @@ -682,7 +699,7 @@ msgstr "모양 설정" msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "앱 비밀번호 \"{name}\"을(를) 삭제하시겠습니까?" @@ -690,10 +707,14 @@ msgstr "앱 비밀번호 \"{name}\"을(를) 삭제하시겠습니까?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "정말 이 메시지를 삭제하시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "이 스타터 팩을 삭제하시겠습니까?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "변경 사항을 삭제하시겠습니까?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." @@ -702,11 +723,11 @@ msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "피드에서 {0}을(를) 제거하시겠습니까?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "이 초안을 삭제하시겠습니까?" @@ -719,52 +740,52 @@ msgid "Are you writing in <0>{0}?" msgstr "{0}(으)로 쓰고 있나요?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "예술" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." -msgstr "선정적이지 않거나 예술적인 노출." +msgstr "선정적이지 않거나 예술적인 나체." #: src/screens/Signup/StepHandle.tsx:173 msgid "At least 3 characters" msgstr "3자 이상" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "뒤로" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "기본" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "생년월일" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "생년월일:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "차단" @@ -773,45 +794,45 @@ msgstr "차단" msgid "Block account" msgstr "계정 차단" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "계정 차단" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "계정을 차단하시겠습니까?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "계정 차단" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "리스트 차단" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "이 계정들을 차단하시겠습니까?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "차단됨" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "차단한 계정" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다. 차단한 계정의 콘텐츠를 볼 수 없으며 해당 계정도 내 콘텐츠를 볼 수 없게 됩니다." @@ -823,40 +844,36 @@ msgstr "차단된 게시물." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 것을 막지는 못합니다." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단 목록은 공개됩니다. 차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "차단하더라도 내 계정에 라벨이 붙는 것은 막지 못하지만, 이 계정이 내 스레드에 답글을 달거나 나와 상호작용하는 것은 중지됩니다." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "블로그" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky는 호스팅 제공자를 선택할 수 있는 개방형 네트워크입니다. 개발자를 위한 사용자 지정 호스팅이 베타 버전으로 제공됩니다." +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky는 호스팅 제공자를 선택할 수 있는 개방형 네트워크입니다. 개발자라면 직접 서버를 호스팅할 수 있습니다." #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Bluesky는 친구와 함께하면 더 좋답니다!" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "Bluesky는 현재 천만 명이 넘는 사용자를 보유하고 있으며, 나는 {0}번째였습니다!" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky가 네트워크에 있는 사람들 중에서 임의로 추천 계정 세트를 선택합니다." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "로그아웃한 사용자에게 내 프로필과 게시물을 표시하지 않습니다. 다른 앱에서는 이 설정을 따르지 않을 수 있습니다. 내 계정을 비공개로 전환하지는 않습니다." @@ -869,14 +886,10 @@ msgid "Blur images and filter from feeds" msgstr "이미지 흐리게 및 피드에서 필터링" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "책" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Brag a little!" -msgstr "자랑해 보세요!" - #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" msgstr "탐색 페이지에서 더 많은 계정 찾아보기" @@ -902,7 +915,7 @@ msgstr "탐색 페이지에서 더 많은 추천 찾아보기" msgid "Browse other feeds" msgstr "다른 피드 탐색하기" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "비즈니스" @@ -910,7 +923,7 @@ msgstr "비즈니스" msgid "by —" msgstr "— 님이 만듦" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "{0} 님이 만듦" @@ -918,15 +931,23 @@ msgstr "{0} 님이 만듦" msgid "by <0/>" msgstr "<0/> 님이 만듦" -#: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "계정을 만들면 {els}에 동의하는 것입니다." +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "계정을 만들면 <0>개인정보 처리방침에 동의하는 것입니다." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "계정을 만들면 <0>서비스 이용약관 및 <1>개인정보 처리방침에 동의하는 것입니다." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "계정을 만들면 <0>서비스 이용약관에 동의하는 것입니다." #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "내가 만듦" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "카메라" @@ -935,33 +956,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다. 길이는 4자 이상이어야 하고 32자를 넘지 않아야 합니다." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "취소" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +993,15 @@ msgstr "취소" msgid "Cancel account deletion" msgstr "계정 삭제 취소" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "핸들 변경 취소" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "이미지 자르기 취소" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "프로필 편집 취소" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "게시물 인용 취소" @@ -994,6 +1010,7 @@ msgid "Cancel reactivation and log out" msgstr "재활성화 취소 및 로그아웃" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "검색 취소" @@ -1001,14 +1018,14 @@ msgstr "검색 취소" msgid "Cancels opening the linked website" msgstr "연결된 웹사이트를 여는 것을 취소합니다" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "차단된 사용자와 상호작용할 수 없습니다" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "자막(.vtt)" @@ -1016,25 +1033,25 @@ msgstr "자막(.vtt)" msgid "Captions & alt text" msgstr "자막 및 대체 텍스트" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:369 -msgid "Celebrating {0} users" -msgstr "사용자 {0}명 축하하기" - #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "이메일 주소 변경" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "핸들 변경" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "핸들 변경" @@ -1042,12 +1059,12 @@ msgstr "핸들 변경" msgid "Change my email" msgstr "내 이메일 변경하기" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "비밀번호 변경" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "비밀번호 변경" @@ -1059,9 +1076,10 @@ msgstr "게시물 언어를 {0}(으)로 변경" msgid "Change Your Email" msgstr "이메일 변경" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "대화" @@ -1071,14 +1089,14 @@ msgstr "대화 뮤트됨" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "대화 설정" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "대화 설정" @@ -1091,7 +1109,7 @@ msgstr "대화 언뮤트됨" msgid "Check my status" msgstr "내 상태 확인" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "이메일에서 로그인 코드를 확인한 후 여기에 입력하세요." @@ -1099,23 +1117,27 @@ msgstr "이메일에서 로그인 코드를 확인한 후 여기에 입력하세 msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "받은 편지함에서 아래에 입력할 인증 코드가 포함된 이메일이 있는지 확인하세요." -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "피드 선택" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "임의로 선택하기" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "사람들 선택" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "게시하는 미디어에 적용할 자체 라벨을 선택하세요. 아무것도 선택하지 않으면 이 게시물이 모든 대상에게 적합하다는 것입니다." + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "서비스 선택" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요." @@ -1123,28 +1145,27 @@ msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요." msgid "Choose this color as your avatar" msgstr "이 색상을 아바타로 선택" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "비밀번호를 입력하세요" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "모든 스토리지 데이터 지우기" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "검색어 지우기" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "모든 스토리지 데이터를 지웁니다" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "이곳을 클릭" @@ -1160,15 +1181,15 @@ msgstr "자세한 내용을 보려면 이곳을 클릭하세요." msgid "Click here to open tag menu for {tag}" msgstr "이곳을 클릭하여 {tag}의 태그 메뉴 열기" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "이 게시물의 인용 게시물을 비활성화하려면 클릭하세요." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "이 게시물의 인용 게시물을 활성화하려면 클릭하세요." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "클릭하여 메시지를 다시 보내기" @@ -1180,27 +1201,25 @@ msgstr "기후" msgid "Clip 🐴 clop 🐴" msgstr "다그닥 🐴 다그닥 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "닫기" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "열려 있는 대화 상자 닫기" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "알림 닫기" @@ -1208,12 +1227,11 @@ msgstr "알림 닫기" msgid "Close bottom drawer" msgstr "하단 서랍 닫기" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "대화 상자 닫기" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "GIF 대화 상자 닫기" @@ -1225,30 +1243,26 @@ msgstr "이미지 닫기" msgid "Close image viewer" msgstr "이미지 뷰어 닫기" -#: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "대화 상자 닫기" - -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "탐색 푸터 닫기" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "이 대화 상자 닫기" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "하단 탐색 막대를 닫습니다" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "비밀번호 변경 알림을 닫습니다" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다" +#: src/view/com/composer/Composer.tsx:547 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1258,56 +1272,66 @@ msgstr "헤더 이미지 뷰어를 닫습니다" msgid "Collapse list of users" msgstr "사용자 목록 접기" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "색상 모드" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "코미디" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "만화" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "온보딩 완료 후 계정 사용 시작" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "챌린지 완료하기" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "최대 {MAX_GRAPHEME_LENGTH}자 길이까지 글을 작성할 수 있습니다" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "답글 작성하기" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "동영상 압축 중..." + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "{name} 카테고리에 대한 콘텐츠 필터링 설정을 구성합니다." -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "<0>검토 설정에서 설정합니다." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "확인" @@ -1324,30 +1348,35 @@ msgstr "콘텐츠 언어 설정 확인" msgid "Confirm delete account" msgstr "계정 삭제 확인" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "나이를 확인하세요:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "생년월일 확인" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "인증 코드" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "인증 코드" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "연결 중…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "지원에 연락하기" @@ -1355,12 +1384,12 @@ msgstr "지원에 연락하기" msgid "Content Blocked" msgstr "콘텐츠 차단됨" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "콘텐츠 필터" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "콘텐츠 언어" @@ -1370,13 +1399,13 @@ msgid "Content Not Available" msgstr "콘텐츠를 사용할 수 없음" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "콘텐츠 경고" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "콘텐츠 경고" @@ -1384,12 +1413,12 @@ msgstr "콘텐츠 경고" msgid "Context menu backdrop, click to close the menu." msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "계속" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "{0}(으)로 계속하기 (현재 로그인)" @@ -1397,13 +1426,13 @@ msgstr "{0}(으)로 계속하기 (현재 로그인)" msgid "Continue thread..." msgstr "스레드 더 보기..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "다음 단계로 계속하기" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "대화 삭제됨" @@ -1416,20 +1445,21 @@ msgstr "요리" msgid "Copied" msgstr "복사됨" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "빌드 버전 클립보드에 복사됨" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "클립보드에 복사됨" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "복사했습니다!" @@ -1437,17 +1467,17 @@ msgstr "복사했습니다!" msgid "Copies app password" msgstr "앱 비밀번호를 복사합니다" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "복사" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "{0} 복사" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "코드 복사" @@ -1459,12 +1489,12 @@ msgstr "링크 복사" msgid "Copy Link" msgstr "링크 복사" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "리스트 링크 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "게시물 링크 복사" @@ -1473,17 +1503,17 @@ msgstr "게시물 링크 복사" msgid "Copy message text" msgstr "메시지 텍스트 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "게시물 텍스트 복사" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "QR 코드 복사" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "저작권 정책" @@ -1491,11 +1521,11 @@ msgstr "저작권 정책" msgid "Could not leave chat" msgstr "대화에서 나갈 수 없습니다" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "피드를 불러올 수 없습니다" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "리스트를 불러올 수 없습니다" @@ -1507,34 +1537,34 @@ msgstr "대화를 뮤트할 수 없습니다" msgid "Could not process your video" msgstr "동영상을 처리할 수 없습니다" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "만들기" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "새 계정 만들기" - -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "새 Bluesky 계정을 만듭니다" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "스타터 팩 QR 코드 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "스타터 팩 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "나를 위한 스타터 팩 만들기" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "계정 만들기" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "계정 만들기" @@ -1543,11 +1573,11 @@ msgstr "계정 만들기" msgid "Create an account" msgstr "계정 만들기" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "대신 아바타 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "다른 스타터 팩 만들기" @@ -1556,7 +1586,7 @@ msgid "Create App Password" msgstr "앱 비밀번호 만들기" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "새 계정 만들기" @@ -1564,86 +1594,87 @@ msgstr "새 계정 만들기" msgid "Create report for {0}" msgstr "{0}에 대한 신고 작성하기" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0}에 생성됨" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "문화" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "사용자 지정" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "사용자 지정 도메인" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공하고 좋아하는 콘텐츠를 찾을 수 있도록 도와줍니다." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "외부 사이트 미디어를 사용자 지정합니다." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "이 게시물과 상호작용할 수 있는 사람을 사용자 지정합니다." -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "어두움" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "어두운 모드" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "어두운 테마" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "생년월일" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "계정 비활성화" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "내 계정 비활성화" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "검토 디버그" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "디버그 패널" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "기본" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "삭제" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "계정 삭제" @@ -1651,16 +1682,16 @@ msgstr "계정 삭제" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "<0>\"<1>{0}<2>\" 계정 삭제" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "앱 비밀번호 삭제" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "앱 비밀번호를 삭제하시겠습니까?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "대화 신고 기록 삭제" @@ -1668,7 +1699,7 @@ msgstr "대화 신고 기록 삭제" msgid "Delete for me" msgstr "나에게서 삭제" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "리스트 삭제" @@ -1684,33 +1715,33 @@ msgstr "나에게 보이는 메시지 삭제" msgid "Delete my account" msgstr "내 계정 삭제" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "내 계정 삭제…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "게시물 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "스타터 팩 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "스타터 팩 삭제" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "이 리스트를 삭제하시겠습니까?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "이 게시물을 삭제하시겠습니까?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "삭제됨" @@ -1718,27 +1749,35 @@ msgstr "삭제됨" msgid "Deleted post." msgstr "삭제된 게시물." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "대화 신고 기록을 삭제합니다" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "설명" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "설명이 너무 깁니다" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "설명이 너무 깁니다. 최대 글자 수는 {DESCRIPTION_MAX_GRAPHEMES}자입니다." + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "설명이 포함된 대체 텍스트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "인용 해제" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "인용을 해제하시겠습니까?" @@ -1746,54 +1785,54 @@ msgstr "인용을 해제하시겠습니까?" msgid "Dialog: adjust who can interact with this post" msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사람 조정하기" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "하고 싶은 말이 없나요?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "어둑함" -#: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "다이렉트 메시지가 생겼습니다!" - -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "동영상 및 GIF 자동 재생 끄기" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "이메일 2단계 인증 끄기" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "햅틱 피드백 끄기" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "자막 사용 안 함" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "사용 안 함" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "삭제" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "변경 사항 삭제" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "초안 삭제" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기" @@ -1806,11 +1845,15 @@ msgstr "새로운 맞춤 피드 찾아보기" msgid "Discover new feeds" msgstr "새 피드 발견하기" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "새 피드 발견하기" -#: src/view/com/composer/Composer.tsx:1107 +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "닫기" + +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "오류 무시" @@ -1818,19 +1861,25 @@ msgstr "오류 무시" msgid "Dismiss getting started guide" msgstr "시작하기 가이드 닫기" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "더 큰 대체 텍스트 배지 표시" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "표시 이름" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "표시 이름" +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "표시 이름이 너무 깁니다" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "표시 이름이 너무 깁니다. 최대 글자 수는 {DISPLAY_NAME_MAX_GRAPHEMES}자입니다." + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNS 패널" @@ -1838,46 +1887,53 @@ msgstr "DNS 패널" msgid "Do not apply this mute word to users you follow" msgstr "내가 팔로우하는 사용자에게는 이 뮤트 단어를 적용하지 않기" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "성인 콘텐츠가 포함되어 있지 않습니다." + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "선정적이거나 불쾌감을 주는 콘텐츠가 포함되어 있지 않습니다." + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." -msgstr "노출을 포함하지 않습니다." +msgstr "나체를 포함하지 않습니다." #: src/screens/Signup/StepHandle.tsx:159 msgid "Doesn't begin or end with a hyphen" msgstr "하이픈으로 시작하거나 끝나지 않음" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "도메인 값" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "도메인을 확인했습니다." -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "완료" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "완료" @@ -1886,20 +1942,20 @@ msgstr "완료" msgid "Done{extraText}" msgstr "완료{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "두 번 탭하여 대화 상자를 닫습니다" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Bluesky 다운로드" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "CAR 파일 다운로드" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:629 -msgid "Download image" -msgstr "이미지 다운로드" - -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "드롭하여 이미지 추가" @@ -1907,39 +1963,35 @@ msgstr "드롭하여 이미지 추가" msgid "Duration:" msgstr "기간:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "예: alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "예: 앨리스 로버츠" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "예: 앨리스 라스트네임" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "예: alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "예: 예술가, 개 애호가, 독서광." - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." -msgstr "예: 예술적인 노출." +msgstr "예: 예술적인 나체." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "예: 멋진 포스터" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "예: 스팸 계정" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "예: 놓칠 수 없는 포스터들." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "예: 반복적으로 광고 답글을 다는 계정." @@ -1947,58 +1999,55 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "편집" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "편집" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "아바타 편집" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "피드 편집하기" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "이미지 편집하기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "상호작용 설정 편집" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "리스트 세부 정보 편집" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "내 피드 편집" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "내 프로필 편집하기" - -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "사람들 편집하기" @@ -2007,21 +2056,23 @@ msgstr "사람들 편집하기" msgid "Edit post interaction settings" msgstr "게시물 상호작용 설정 편집하기" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "프로필 편집" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "프로필 편집" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "스타터 팩 편집" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "사용자 리스트 편집" @@ -2029,24 +2080,16 @@ msgstr "사용자 리스트 편집" msgid "Edit who can reply" msgstr "답글을 달 수 있는 사람 편집" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "내 표시 이름 편집" - -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "내 프로필 설명 편집" - -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "스타터 팩 편집" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "교육" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "이메일" @@ -2055,11 +2098,11 @@ msgstr "이메일" msgid "Email 2FA disabled" msgstr "이메일 2단계 인증을 비활성화했습니다" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "이메일 주소" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "이메일 다시 전송됨" @@ -2076,21 +2119,21 @@ msgstr "이메일 변경됨" msgid "Email verified" msgstr "이메일 인증됨" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "이메일 인증됨" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "이메일:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "임베드 HTML 코드" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "게시물 임베드" @@ -2098,47 +2141,47 @@ msgstr "게시물 임베드" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 복사하여 웹사이트에 HTML 코드로 붙여넣기만 하면 됩니다." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "{0}에서만 사용" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "성인 콘텐츠 활성화" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "외부 미디어 사용" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "미디어 플레이어를 사용할 외부 사이트" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "우선순위 알림 사용" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "자막 사용" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "이 소스에서만 사용" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "사용" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "피드 끝" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "각 자막 파일에 대한 언어를 선택했는지 확인하세요." @@ -2146,7 +2189,7 @@ msgstr "각 자막 파일에 대한 언어를 선택했는지 확인하세요." msgid "Enter a name for this App Password" msgstr "이 앱 비밀번호의 이름 입력" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "비밀번호 입력" @@ -2155,6 +2198,10 @@ msgstr "비밀번호 입력" msgid "Enter a word or tag" msgstr "단어 또는 태그 입력" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "코드 입력" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "인증 코드 입력" @@ -2163,20 +2210,20 @@ msgstr "인증 코드 입력" msgid "Enter the code you received to change your password." msgstr "비밀번호를 변경하려면 받은 코드를 입력하세요." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "사용할 도메인 입력" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "계정을 만들 때 사용한 이메일을 입력하세요. 새 비밀번호를 설정할 수 있도록 \"재설정 코드\"를 보내드립니다." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "생년월일을 입력하세요" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "이메일 주소를 입력하세요" @@ -2188,10 +2235,14 @@ msgstr "새 이메일을 입력하세요" msgid "Enter your new email address below." msgstr "아래에 새 이메일 주소를 입력하세요." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "사용자 이름 및 비밀번호 입력" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "오류" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "파일을 저장하는 동안 오류가 발생했습니다" @@ -2200,12 +2251,12 @@ msgstr "파일을 저장하는 동안 오류가 발생했습니다" msgid "Error receiving captcha response." msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "오류:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "모두" @@ -2217,10 +2268,8 @@ msgstr "누구나 답글을 달 수 있음" msgid "Everybody can reply to this post." msgstr "누구나 이 게시물에 답글을 달 수 있습니다." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "모두" @@ -2240,7 +2289,7 @@ msgstr "내가 팔로우하는 사용자 제외하기" msgid "Excludes users you follow" msgstr "내가 팔로우하는 사용자 제외" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "전체화면 나가기" @@ -2248,11 +2297,11 @@ msgstr "전체화면 나가기" msgid "Exits account deletion process" msgstr "계정 삭제 프로세스를 종료합니다" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "핸들 변경 프로세스를 종료합니다" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "이미지 자르기 프로세스를 종료합니다" @@ -2272,12 +2321,16 @@ msgstr "대체 텍스트 확장" msgid "Expand list of users" msgstr "사용자 목록 펼치기" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "레코드로 확인될 것으로 예상되는 URI" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "실험적 기능: 이 설정을 활성화하면 내가 팔로우하는 사용자로부터만 답글 및 인용 알림을 받게 됩니다. 시간이 지남에 따라 더 많은 제어 기능을 계속 추가할 예정입니다." @@ -2297,32 +2350,32 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "내 데이터 내보내기" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "내 데이터 내보내기" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "외부 미디어" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "외부 미디어는 웹사이트가 나와 내 기기에 대한 정보를 수집하도록 할 수 있습니다. \"재생\" 버튼을 누르기 전까지는 어떠한 정보도 전송되거나 요청되지 않습니다." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "외부 미디어 설정" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "외부 미디어 설정" @@ -2331,12 +2384,12 @@ msgstr "외부 미디어 설정" msgid "Failed to create app password." msgstr "앱 비밀번호를 만들지 못했습니다." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "스타터 팩을 만들지 못했습니다" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "리스트를 만들지 못했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." @@ -2344,11 +2397,11 @@ msgstr "리스트를 만들지 못했습니다. 인터넷 연결을 확인한 msgid "Failed to delete message" msgstr "메시지를 삭제하지 못했습니다" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" @@ -2357,12 +2410,11 @@ msgstr "스타터 팩을 삭제하지 못했습니다" msgid "Failed to load feeds preferences" msgstr "피드 환경설정을 불러오지 못했습니다" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "GIF를 불러오지 못했습니다" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "지난 메시지를 불러오지 못했습니다" @@ -2375,7 +2427,11 @@ msgstr "추천 피드를 불러오지 못했습니다" msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "게시물을 고정하지 못했습니다" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "이미지를 저장하지 못함: {0}" @@ -2383,40 +2439,39 @@ msgstr "이미지를 저장하지 못함: {0}" msgid "Failed to save notification preferences, please try again" msgstr "알림 설정을 저장하지 못했습니다. 다시 시도해 주세요" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "전송 실패" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "피드를 업데이트하지 못했습니다" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "설정을 업데이트하지 못했습니다" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "동영상을 업로드하지 못했습니다" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "피드" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "{0} 님의 피드" @@ -2426,31 +2481,36 @@ msgid "Feed toggle" msgstr "피드 켜기/끄기" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "피드백" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "피드백을 보냈습니다!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "피드" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요." -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "피드 업데이트됨" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "파일 콘텐츠" @@ -2462,7 +2522,7 @@ msgstr "파일을 성공적으로 저장했습니다!" msgid "Filter from feeds" msgstr "피드에서 필터링" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "마무리 중" @@ -2472,19 +2532,19 @@ msgstr "마무리 중" msgid "Find accounts to follow" msgstr "팔로우할 계정 찾아보기" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Bluesky에서 게시물 및 사용자 찾기" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "팔로우 중 피드에 표시되는 콘텐츠를 미세 조정합니다." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "대화 스레드를 미세 조정합니다." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "완료" @@ -2492,25 +2552,16 @@ msgstr "완료" msgid "Fitness" msgstr "건강" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "유연성" -#: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "가로로 뒤집기" - -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "세로로 뒤집기" - #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "팔로우" @@ -2519,12 +2570,12 @@ msgctxt "action" msgid "Follow" msgstr "팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "{0} 님을 팔로우" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "{name} 님을 팔로우" @@ -2532,18 +2583,18 @@ msgstr "{name} 님을 팔로우" msgid "Follow 7 accounts" msgstr "7개 계정 팔로우하기" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "계정 팔로우" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "모두 팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "맞팔로우" @@ -2572,7 +2623,7 @@ msgstr "<0>{0} 님과 <1>{1} 님이 팔로우함" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#}}명이 팔로우함" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "팔로우한 사용자" @@ -2584,62 +2635,72 @@ msgstr "이(가) 나를 팔로우했습니다" msgid "followed you back" msgstr "이(가) 나를 맞팔로우했습니다" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "팔로워" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "내가 아는 팔로워" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "팔로우 중" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "{0} 님을 팔로우했습니다" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "{name} 님을 팔로우했습니다" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "나를 팔로우함" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "나를 팔로우함" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "글꼴" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "글꼴 크기" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "음식" @@ -2651,20 +2712,25 @@ msgstr "보안상의 이유로 이메일 주소로 인증 코드를 보내야 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. 이 비밀번호를 분실한 경우 새 비밀번호를 생성해야 합니다." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "최상의 경험을 위해 테마 글꼴을 사용하는 것을 추천합니다." + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "무기한" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "비밀번호 분실" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "비밀번호를 잊으셨나요?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "분실" @@ -2672,35 +2738,31 @@ msgstr "분실" msgid "Frequently Posts Unwanted Content" msgstr "잦은 원치 않는 콘텐츠 게시" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} 님의 태그" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>에서" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "전체화면" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "갤러리" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "스타터 팩 만들기" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "도움말" -#: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "시작하기" - #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" @@ -2714,7 +2776,7 @@ msgstr "시작하기" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "프로필에 얼굴 달기" @@ -2722,14 +2784,13 @@ msgstr "프로필에 얼굴 달기" msgid "Glaring violations of law or terms of service" msgstr "명백한 법률 또는 서비스 이용약관 위반 행위" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "뒤로" @@ -2737,39 +2798,39 @@ msgstr "뒤로" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "뒤로" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "이전 단계로 돌아가기" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "이전 단계로 돌아갑니다" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "홈으로 이동" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "홈으로 이동" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "{0} 님과의 대화로 이동합니다" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "다음" @@ -2783,6 +2844,8 @@ msgid "Go to user's profile" msgstr "사용자의 프로필로 가기" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "그래픽 미디어" @@ -2790,11 +2853,11 @@ msgstr "그래픽 미디어" msgid "Half way there!" msgstr "절반은 완료!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "핸들" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "햅틱" @@ -2802,24 +2865,24 @@ msgstr "햅틱" msgid "Harassment, trolling, or intolerance" msgstr "괴롭힘, 분쟁 유발 또는 차별" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "해시태그" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "해시태그: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "문제가 있나요?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "도움말" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요." @@ -2827,56 +2890,56 @@ msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 msgid "Here is your app password." msgstr "앱 비밀번호입니다." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "숨겨진 리스트" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "숨기기" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "나에게서 게시물 숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "모두에게서 답글 숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "나에게서 답글 숨기기" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "콘텐츠 숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "이 게시물을 숨기시겠습니까?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "이 답글을 숨기시겠습니까?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "사용자 리스트 숨기기" @@ -2900,7 +2963,7 @@ msgstr "피드 서버에서 잘못된 응답을 보냈습니다. 피드 소유 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "이 피드를 찾는 데 문제가 있습니다. 피드가 삭제되었을 수 있습니다." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요." @@ -2908,45 +2971,49 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자 msgid "Hmmmm, we couldn't load that moderation service." msgstr "검토 서비스를 불러올 수 없습니다." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "홈" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "호스트:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "호스팅 제공자" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "이 링크를 어떻게 여시겠습니까?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" -msgstr "코드가 있습니다" +msgstr "코드를 가지고 있습니다" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "코드를 가지고 있습니다" #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" -msgstr "인증 코드가 있습니다" +msgstr "인증 코드를 가지고 있습니다" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "내 도메인을 가지고 있습니다" @@ -2959,19 +3026,15 @@ msgstr "확인" msgid "If alt text is long, toggles alt text expanded state" msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다" -#: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "아무것도 선택하지 않으면 모든 연령대에 적합하다는 뜻입니다." - -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "해당 국가의 법률에 따라 아직 성인이 아닌 경우 부모 또는 법적 보호자가 대신 이 약관을 읽어야 합니다." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다." @@ -2987,16 +3050,11 @@ msgstr "핸들이나 이메일을 변경하려는 경우 비활성화하기 전 msgid "Illegal and Urgent" msgstr "불법 및 긴급 사항" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "이미지" -#: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "이미지 대체 텍스트" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "이미지를 사진 보관함에 저장했습니다" @@ -3012,7 +3070,7 @@ msgstr "사칭, 허위 정보 또는 허위 주장" msgid "Inappropriate messages or explicit links" msgstr "부적절한 메시지 또는 노골적인 링크" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "비밀번호 재설정을 위해 이메일로 전송된 코드를 입력합니다" @@ -3024,7 +3082,7 @@ msgstr "계정 삭제를 위한 인증 코드를 입력합니다" msgid "Input name for app password" msgstr "앱 비밀번호의 이름을 입력합니다" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "새 비밀번호를 입력합니다" @@ -3032,19 +3090,19 @@ msgstr "새 비밀번호를 입력합니다" msgid "Input password for account deletion" msgstr "계정을 삭제하기 위해 비밀번호를 입력합니다" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "이메일로 전송된 코드를 입력합니다" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "가입 시 사용한 사용자 이름 또는 이메일 주소를 입력합니다" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "비밀번호를 입력합니다" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "선호하는 호스팅 제공자를 입력합니다" @@ -3052,15 +3110,15 @@ msgstr "선호하는 호스팅 제공자를 입력합니다" msgid "Input your user handle" msgstr "사용자 핸들을 입력합니다" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "상호작용 제한됨" -#: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "다이렉트 메시지 소개" +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "새 글꼴 설정을 소개합니다" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "잘못된 2단계 인증 코드입니다." @@ -3069,12 +3127,12 @@ msgstr "잘못된 2단계 인증 코드입니다." msgid "Invalid or unsupported post record" msgstr "유효하지 않거나 지원되지 않는 게시물 기록" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "잘못된 사용자 이름 또는 비밀번호" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "잘못된 인증 코드" @@ -3082,7 +3140,7 @@ msgstr "잘못된 인증 코드" msgid "Invite a Friend" msgstr "친구 초대하기" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "초대 코드" @@ -3110,50 +3168,60 @@ msgstr "친구를 초대하여 좋아하는 피드와 사람들을 팔로우할 msgid "Invites, but personal" msgstr "개인적인 초대" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "이메일 주소를 잘못 입력한 것 같습니다. 올바른 주소가 맞나요?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "올바른 주소입니다" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩에 더 많은 사람을 추가하세요." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "작업 ID: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "채용" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Bluesky 가입하기" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "대화에 참여하기" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:498 -msgid "Joined {0}" -msgstr "{0}에 가입함" - #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "저널리즘" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "{0}이(가) 라벨 지정함." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "작성자가 라벨 지정함." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "라벨" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "라벨 추가됨" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "라벨은 사용자 및 콘텐츠에 대한 주석입니다. 네트워크를 숨기고, 경고하고, 분류하는 데 사용할 수 있습니다." @@ -3170,48 +3238,58 @@ msgstr "내 콘텐츠의 라벨" msgid "Language selection" msgstr "언어 선택" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "언어 설정" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "언어 설정" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "언어" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "큼" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "최신" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "더 알아보기" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Bluesky에 대해 더 알아보기" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "PDS 셀프 호스팅에 대해 자세히 알아보세요." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "이 경고에 대해 더 알아보기" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "더 알아보기" @@ -3232,7 +3310,7 @@ msgstr "대화 떠나기" msgid "Leave conversation" msgstr "대화 나가기" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "모든 언어를 보려면 모두 선택하지 않은 상태로 두세요." @@ -3244,21 +3322,20 @@ msgstr "Bluesky 떠나기" msgid "left to go." msgstr "명 남았습니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "직접 선택하기" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "비밀번호를 재설정해 봅시다!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "출발!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "밝음" @@ -3271,21 +3348,21 @@ msgstr "10개 게시물에 좋아요 누르기" msgid "Like 10 posts to train the Discover feed" msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "좋아요 표시한 사용자" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "좋아요 표시한 사용자" @@ -3297,7 +3374,7 @@ msgstr "이(가) 내 맞춤 피드를 좋아합니다" msgid "liked your post" msgstr "이(가) 내 게시물을 좋아합니다" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "좋아요" @@ -3305,24 +3382,24 @@ msgstr "좋아요" msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "리스트" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "리스트 아바타" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "리스트 차단됨" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "{0} 님의 리스트" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "리스트 삭제됨" @@ -3330,32 +3407,31 @@ msgstr "리스트 삭제됨" msgid "List has been hidden" msgstr "리스트가 숨겨졌습니다" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "리스트 숨겨짐" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "리스트 뮤트됨" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "리스트 이름" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "리스트 차단 해제됨" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "리스트 언뮤트됨" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "리스트" @@ -3375,22 +3451,22 @@ msgstr "추천 피드 더 불러오기" msgid "Load more suggested follows" msgstr "추천 팔로우 더 불러오기" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "새 알림 불러오기" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "새 게시물 불러오기" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "불러오는 중…" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "로그" @@ -3406,19 +3482,27 @@ msgstr "로그인 또는 가입" msgid "Log out" msgstr "로그아웃" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "로그아웃 표시" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "목록에 없는 계정으로 로그인" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "<0/> 님의 로고" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "<0>@sawaratsuki.bsky.social 님의 로고" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "길게 눌러 #{tag}에 대한 태그 메뉴를 엽니다" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "XXXXX-XXXXX 형식" @@ -3434,7 +3518,7 @@ msgstr "모든 피드를 고정 해제했군요. 하지만 걱정하지 마세 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭해 하나 추가하세요." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "나를 위해 만들기" @@ -3451,30 +3535,35 @@ msgstr "뮤트한 단어 및 태그 관리" msgid "Mark as read" msgstr "읽음으로 표시" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "미디어" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어." + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "멘션한 사용자" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "멘션한 사용자" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "메뉴" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "{0} 님에게 메시지 보내기" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "메시지 삭제됨" @@ -3482,23 +3571,23 @@ msgstr "메시지 삭제됨" msgid "Message from server: {0}" msgstr "서버에서 보낸 메시지: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "메시지 입력 필드" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "메시지가 너무 깁니다" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "메시지 설정" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "메시지" @@ -3510,64 +3599,60 @@ msgstr "오해의 소지가 있는 계정" msgid "Misleading Post" msgstr "오해의 소지가 있는 게시물" -#: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "모드" - -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "검토" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "검토 세부 정보" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} 님의 검토 리스트" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "<0/> 님의 검토 리스트" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "내 검토 리스트" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "검토 리스트 생성됨" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "검토 리스트 업데이트됨" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "검토 리스트" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "검토 설정" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "검토 상태" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "검토 도구" @@ -3576,7 +3661,7 @@ msgstr "검토 도구" msgid "Moderator has chosen to set a general warning on the content." msgstr "검토자가 콘텐츠에 일반 경고를 설정했습니다." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "더 보기" @@ -3584,28 +3669,29 @@ msgstr "더 보기" msgid "More feeds" msgstr "피드 더 보기" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "옵션 더 보기" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "좋아요 많은 순" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "영화" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "음악" -#: src/components/TagMenu/index.tsx:263 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "뮤트" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:166 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "음소거" @@ -3614,16 +3700,16 @@ msgstr "음소거" msgid "Mute {truncatedTag}" msgstr "{truncatedTag} 뮤트" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "계정 뮤트" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "계정 뮤트" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "모든 {displayTag} 게시물 뮤트" @@ -3636,11 +3722,11 @@ msgstr "대화 뮤트" msgid "Mute in:" msgstr "뮤트 범위:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "리스트 뮤트" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "이 계정들을 뮤트하시겠습니까?" @@ -3668,26 +3754,26 @@ msgstr "태그에서만 이 단어 뮤트하기" msgid "Mute this word until you unmute it" msgstr "뮤트를 해제할 때까지 이 단어 뮤트하기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "스레드 뮤트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "단어 및 태그 뮤트" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "뮤트한 계정" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물이 사라집니다. 뮤트 목록은 완전히 비공개로 유지됩니다." @@ -3695,41 +3781,41 @@ msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물 msgid "Muted by \"{0}\"" msgstr "\"{0}\" 님이 뮤트함" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "뮤트한 단어 및 태그" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호작용할 수 있지만 해당 계정의 게시물을 보거나 해당 계정으로부터 알림을 받을 수 없습니다." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "내 생년월일" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "내 피드" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "내 프로필" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "내 저장한 피드" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "내 저장한 피드" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "이름" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "이름을 입력하세요" @@ -3741,60 +3827,64 @@ msgid "Name or Description Violates Community Standards" msgstr "이름 또는 설명이 커뮤니티 기준을 위반함" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "자연" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "{0}(으)로 이동" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "스타터 팩으로 이동합니다" - -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "다음 화면으로 이동합니다" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "내 프로필로 이동합니다" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "이메일을 변경하시겠어요?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "저작권 위반을 신고해야 하나요?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 않습니다." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "취소하고 내 핸들 만들기" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "새로 만들기" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "새로 만들기" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "새 대화" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "새 폰트 설정 ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "새 메시지" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "새 검토 리스트" @@ -3806,22 +3896,22 @@ msgstr "새 비밀번호" msgid "New Password" msgstr "새 비밀번호" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "새 게시물" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "새 게시물" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "새 게시물" @@ -3830,30 +3920,30 @@ msgstr "새 게시물" msgid "New user info dialog" msgstr "새 사용자 정보 대화 상자" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "새 사용자 리스트" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "새로운 순" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "뉴스" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3863,30 +3953,29 @@ msgstr "다음" msgid "Next image" msgstr "다음 이미지" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "아니요" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "설명 없음" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "DNS 패널 없음" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있습니다." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." @@ -3895,8 +3984,8 @@ msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요. msgid "No likes yet" msgstr "아직 좋아요 없음" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "더 이상 {0} 님을 팔로우하지 않음" @@ -3904,11 +3993,11 @@ msgstr "더 이상 {0} 님을 팔로우하지 않음" msgid "No longer than 253 characters" msgstr "253자를 초과하지 않음" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "아직 메시지가 없습니다" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "더 이상 표시할 대화가 없습니다" @@ -3916,10 +4005,8 @@ msgstr "더 이상 표시할 대화가 없습니다" msgid "No notifications yet!" msgstr "아직 알림이 없습니다" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "없음" @@ -3927,7 +4014,7 @@ msgstr "없음" msgid "No one but the author can quote this post." msgstr "이 게시물은 작성자 외에는 누구도 인용할 수 없습니다." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "아직 게시물이 없습니다." @@ -3939,12 +4026,12 @@ msgstr "아직 인용 없음" msgid "No reposts yet" msgstr "아직 재게시 없음" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "결과 없음" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "결과 없음" @@ -3952,33 +4039,36 @@ msgstr "결과 없음" msgid "No results found" msgstr "결과를 찾을 수 없음" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "{query}에 대한 결과를 찾을 수 없습니다" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "이 게시물에는 미디어가 포함되어 있지 않으므로 자체 라벨을 적용할 수 없습니다." + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "사용하지 않음" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "없음" #: src/components/LikedByList.tsx:80 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikesDialog.tsx:97 #: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "아직 아무도 좋아요를 누르지 않았습니다. 첫 번째가 되어 보세요!" @@ -3991,16 +4081,16 @@ msgstr "아직 아무도 인용하지 않았습니다. 첫 번째가 되어 보 msgid "Nobody has reposted this yet. Maybe you should be the first!" msgstr "아직 아무도 재게시하지 않았습니다. 첫 번째가 되어 보세요!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세요." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" -msgstr "선정적이지 않은 노출" +msgstr "선정적이지 않은 나체" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "찾을 수 없음" @@ -4009,49 +4099,48 @@ msgstr "찾을 수 없음" msgid "Not right now" msgstr "나중에 하기" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "공유 관련 참고 사항" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "빈 페이지" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "알림 필터" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "알림 설정" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "알림 설정" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "알림음" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "알림음" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "알림" @@ -4059,61 +4148,57 @@ msgstr "알림" msgid "now" msgstr "지금" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "지금" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" -msgstr "노출" +msgstr "나체" #: src/lib/moderation/useReportOptions.ts:78 msgid "Nudity or adult content not labeled as such" -msgstr "누드 또는 성인 콘텐츠로 설정되지 않은 콘텐츠" +msgstr "나체 또는 성인 콘텐츠로 설정되지 않은 콘텐츠" #: src/lib/moderation/useLabelBehaviorDescription.ts:11 msgid "Off" msgstr "끄기" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "이런!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "이런! 뭔가 잘못되었습니다." -#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "이런! 공유할 이미지를 생성할 수 없습니다. 안심하고 방문해 주셔서 감사합니다." - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "확인" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "확인" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "오래된 순" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "온보딩 재설정" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr ".jpg 및 .png 파일만 지원됩니다" @@ -4125,7 +4210,11 @@ msgstr "{0}만 답글을 달 수 있습니다." msgid "Only contains letters, numbers, and hyphens" msgstr "문자, 숫자, 하이픈만 포함" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "이미지 파일만 지원됩니다" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt) 파일만 지원됩니다" @@ -4134,42 +4223,46 @@ msgid "Oops, something went wrong!" msgstr "이런, 뭔가 잘못되었습니다!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "이런!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "공개성" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "{name} 님의 프로필 단축 메뉴 열기" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "아바타 생성기 열기" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "대화 옵션 열기" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "{niceUrl} 링크 열기" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "링크를 인앱 브라우저로 열기" @@ -4177,7 +4270,7 @@ msgstr "링크를 인앱 브라우저로 열기" msgid "Open message options" msgstr "메시지 옵션 열기" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "뮤트한 단어 및 태그 설정 열기" @@ -4185,20 +4278,20 @@ msgstr "뮤트한 단어 및 태그 설정 열기" msgid "Open navigation" msgstr "내비게이션 열기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "스토리북 페이지 열기" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "시스템 로그 열기" @@ -4206,53 +4299,57 @@ msgstr "시스템 로그 열기" msgid "Opens {numItems} options" msgstr "{numItems}번째 옵션을 엽니다" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "게시물에 콘텐츠 경고를 추가하는 대화 상자를 엽니다" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "접근성 설정을 엽니다" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "모양 설정을 엽니다" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "기기에서 카메라를 엽니다" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "대화 설정을 엽니다" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "답글 작성 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "구성 가능한 언어 설정을 엽니다" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "기기의 사진 갤러리를 엽니다" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "외부 임베드 설정을 엽니다" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "새 Bluesky 계정을 만드는 플로를 엽니다" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "존재하는 Bluesky 계정에 로그인하는 플로를 엽니다" @@ -4264,51 +4361,51 @@ msgstr "GIF 선택 대화 상자를 엽니다" msgid "Opens list of invite codes" msgstr "초대 코드 목록을 엽니다" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "계정 비활성화 확인을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "계정 삭제 확인을 위한 대화 상자를 엽니다. 이메일 코드가 필요합니다" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Bluesky 비밀번호 변경을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "새로운 Bluesky 핸들을 선택하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Bluesky 계정 데이터(저장소)를 다운로드하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "이메일 인증을 위한 대화 상자를 엽니다" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "사용자 지정 도메인을 사용하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "검토 설정을 엽니다" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "비밀번호 재설정 양식을 엽니다" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "모든 저장한 피드 화면을 엽니다" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "비밀번호 설정을 엽니다" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "팔로우 중 피드 설정을 엽니다" @@ -4316,25 +4413,25 @@ msgstr "팔로우 중 피드 설정을 엽니다" msgid "Opens the linked website" msgstr "연결된 웹사이트를 엽니다" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "스토리북 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "시스템 로그 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "스레드 설정을 엽니다" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "이 프로필을 엽니다" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "동영상 선택기를 엽니다" @@ -4342,8 +4439,8 @@ msgstr "동영상 선택기를 엽니다" msgid "Option {0} of {numItems}" msgstr "{numItems}개 중 {0}번째 옵션" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "선택 사항으로 아래에 추가 정보를 입력하세요." @@ -4351,7 +4448,7 @@ msgstr "선택 사항으로 아래에 추가 정보를 입력하세요." msgid "Options:" msgstr "옵션:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "또는 다음 옵션을 결합하세요." @@ -4364,14 +4461,15 @@ msgid "Or, log into one of your other accounts." msgstr "또는 다른 계정 중 하나로 로그인하세요." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "기타" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "다른 계정" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "다른 계정" @@ -4379,21 +4477,21 @@ msgstr "다른 계정" msgid "Other..." msgstr "기타…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Bluesky 운영진이 신고를 검토한 결과, 귀하의 Bluesky 대화 접속을 비활성화하기로 결정했습니다." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "페이지를 찾을 수 없음" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "페이지를 찾을 수 없음" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4403,42 +4501,42 @@ msgstr "비밀번호" msgid "Password Changed" msgstr "비밀번호 변경됨" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "비밀번호 변경됨" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "비밀번호 변경됨" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "일시 정지" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "동영상 일시 정지" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "사람들" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "@{0} 님이 팔로우한 사람들" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사람들" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "사진 보관함에 접근할 수 있는 권한이 필요합니다." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "사진 보관함에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요." @@ -4447,60 +4545,69 @@ msgid "Person toggle" msgstr "사람 켜기/끄기" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "반려동물" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "사진" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "성인용 사진." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "홈에 고정" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "홈에 고정" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "내 프로필에 고정" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "고정됨" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "고정한 피드" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "내 피드에 고정됨" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "재생" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "{0} 재생" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "GIP를 재생하거나 일시 정지합니다" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "동영상 재생" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "동영상 재생" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "GIF를 재생합니다" @@ -4509,7 +4616,7 @@ msgid "Please choose your handle." msgstr "핸들을 입력하세요." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "비밀번호를 입력하세요." @@ -4534,11 +4641,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "뮤트할 단어나 태그 또는 문구를 입력하세요" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "이메일을 입력하세요." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "초대 코드를 입력하세요." @@ -4546,16 +4653,16 @@ msgstr "초대 코드를 입력하세요." msgid "Please enter your password as well:" msgstr "비밀번호를 입력하세요." -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "{0} 님이 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요" +msgstr "{0}이(가) 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "대화가 잘못 비활성화되었다고 생각하는 이유를 설명해 주세요" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "@{0}(으)로 로그인하세요" @@ -4563,21 +4670,18 @@ msgstr "@{0}(으)로 로그인하세요" msgid "Please Verify Your Email" msgstr "이메일 인증하기" -#: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "링크 카드를 완전히 불러올 때까지 기다려주세요" - #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "정치" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "음란물" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "게시하기" @@ -4591,17 +4695,21 @@ msgstr "게시물" msgid "Post by {0}" msgstr "{0} 님의 게시물" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "게시물 삭제됨" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "게시물을 업로드하지 못했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "게시물 숨김" @@ -4616,7 +4724,7 @@ msgstr "뮤트한 단어로 숨겨진 게시물" msgid "Post Hidden by You" msgstr "내가 숨긴 게시물" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "게시물 상호작용 설정" @@ -4624,7 +4732,7 @@ msgstr "게시물 상호작용 설정" msgid "Post language" msgstr "게시물 언어" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "게시물 언어" @@ -4633,12 +4741,20 @@ msgstr "게시물 언어" msgid "Post not found" msgstr "게시물을 찾을 수 없음" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "게시물 고정함" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "게시물 고정 해제함" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "게시물" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "게시물" @@ -4658,7 +4774,7 @@ msgstr "오해의 소지가 있는 링크" msgid "Preference saved" msgstr "설정 저장됨" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "다시 연결을 시도하려면 누르기" @@ -4668,8 +4784,8 @@ msgstr "호스팅 제공자를 변경하려면 누릅니다" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "다시 시도하려면 누르기" @@ -4681,79 +4797,79 @@ msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요 msgid "Previous image" msgstr "이전 이미지" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "주 언어" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "내 팔로우 먼저 표시" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "우선순위 알림" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "개인정보" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "개인정보 처리방침" -#: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "다른 사용자와 비공개로 대화하세요." +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "동영상 처리 중..." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "처리 중…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "프로필" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "프로필" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "프로필 업데이트됨" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "이메일을 인증하여 계정을 보호하세요." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "공공성" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가능한 사용자 목록입니다." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "피드를 탐색할 수 있는 공개적이고 공유 가능한 목록입니다." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "게시물 게시하기" +#: src/view/com/composer/Composer.tsx:564 +#~ msgid "Publish post" +#~ msgstr "게시물 게시하기" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "답글 게시하기" +#: src/view/com/composer/Composer.tsx:564 +#~ msgid "Publish reply" +#~ msgstr "답글 게시하기" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4767,39 +4883,39 @@ msgstr "QR 코드를 다운로드했습니다." msgid "QR code saved to your camera roll!" msgstr "QR 코드를 사진 보관함에 저장했습니다." -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "게시물 인용" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "인용을 다시 연결했습니다" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "인용을 성공적으로 해제했습니다" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "게시물 인용 비활성화됨" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "게시물 인용 활성화됨" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "인용 설정" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "인용" @@ -4807,16 +4923,12 @@ msgstr "인용" msgid "Quotes of this post" msgstr "이 게시물의 인용" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "무작위" -#: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "비율" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "인용 다시 연결" @@ -4824,46 +4936,47 @@ msgstr "인용 다시 연결" msgid "Reactivate your account" msgstr "계정 재활성화" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Bluesky 블로그 읽기" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Bluesky 개인정보 처리방침 읽기" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Bluesky 서비스 이용약관 읽기" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "이유:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "최근 검색" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "다시 연결" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "알림 새로 고침" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "대화 다시 불러오기" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4877,11 +4990,11 @@ msgstr "스타터 팩에서 {displayName} 제거" msgid "Remove account" msgstr "계정 제거" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "첨부 파일 제거" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "아바타 제거" @@ -4889,7 +5002,7 @@ msgstr "아바타 제거" msgid "Remove Banner" msgstr "배너 제거" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "임베드 제거" @@ -4905,13 +5018,14 @@ msgstr "피드를 제거하시겠습니까?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "내 피드에서 제거" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "내 피드에서 제거하시겠습니까?" @@ -4924,7 +5038,7 @@ msgstr "빠른 액세스에서 제거하시겠습니까?" msgid "Remove from saved feeds" msgstr "저장한 피드에서 제거" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "이미지 제거" @@ -4932,24 +5046,24 @@ msgstr "이미지 제거" msgid "Remove mute word from your list" msgstr "목록에서 뮤트한 단어 제거" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "프로필 제거" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "검색 기록에서 프로필을 제거합니다" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "인용 제거" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "재게시를 취소합니다" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "자막 파일 제거" @@ -4957,16 +5071,16 @@ msgstr "자막 파일 제거" msgid "Remove this feed from your saved feeds" msgstr "저장한 피드에서 이 피드를 제거합니다" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "작성자에 의해 제거됨" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "나에 의해 제거됨" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "리스트에서 제거됨" @@ -4980,25 +5094,21 @@ msgid "Removed from saved feeds" msgstr "저장한 피드에서 제거됨" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "내 피드에서 제거됨" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "인용된 게시물을 제거합니다" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "첨부 파일을 제거합니다" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Discover로 교체" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "답글" @@ -5010,10 +5120,10 @@ msgstr "답글 비활성화됨" msgid "Replies to this post are disabled." msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다." -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" -msgstr "답글" +msgstr "답글 게시하기" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:123 @@ -5025,41 +5135,41 @@ msgstr "스레드 작성자에 의해 답글 숨겨짐" msgid "Reply Hidden by You" msgstr "나에 의해 답글 숨겨짐" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "답글 설정" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "답글 설정은 스레드 작성자가 선택합니다" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> 님에게 보내는 답글" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "차단된 게시물에 보내는 답글" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "게시물에 보내는 답글" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "나에게 보내는 답글" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "답글 표시 여부 업데이트됨" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "답글을 성공적으로 숨겼습니다" @@ -5069,8 +5179,8 @@ msgstr "답글을 성공적으로 숨겼습니다" msgid "Report" msgstr "신고" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "계정 신고" @@ -5080,16 +5190,16 @@ msgstr "계정 신고" msgid "Report conversation" msgstr "대화 신고" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "신고 대화 상자" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "피드 신고" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "리스트 신고" @@ -5097,13 +5207,13 @@ msgstr "리스트 신고" msgid "Report message" msgstr "메시지 신고" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "게시물 신고" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "스타터 팩 신고" @@ -5119,8 +5229,8 @@ msgstr "이 피드 신고하기" msgid "Report this list" msgstr "이 리스트 신고하기" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "이 메시지 신고하기" @@ -5137,9 +5247,9 @@ msgstr "이 스타터 팩 신고하기" msgid "Report this user" msgstr "이 사용자 신고하기" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "재게시" @@ -5149,28 +5259,28 @@ msgstr "재게시" msgid "Repost" msgstr "재게시" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "재게시 또는 게시물 인용" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "재게시한 사용자" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "{0} 님이 재게시함" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "<0><1/> 님이 재게시함" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "내가 재게시함" @@ -5192,7 +5302,7 @@ msgstr "변경 요청" msgid "Request Code" msgstr "코드 요청" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "게시하기 전 대체 텍스트 필수" @@ -5200,20 +5310,26 @@ msgstr "게시하기 전 대체 텍스트 필수" msgid "Require email code to log into your account" msgstr "계정에 로그인할 때 이메일 코드 필수" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "이 제공자에서 필수" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "내 지역에서 필수" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "이메일 다시 전송" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "이메일 다시 전송" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "인증 이메일 다시 전송하기" @@ -5225,29 +5341,29 @@ msgstr "재설정 코드" msgid "Reset Code" msgstr "재설정 코드" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "온보딩 상태 초기화" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "비밀번호 재설정" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "설정 상태 초기화" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "온보딩 상태 초기화" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "설정 상태 초기화" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "로그인을 다시 시도합니다" @@ -5256,16 +5372,16 @@ msgstr "로그인을 다시 시도합니다" msgid "Retries the last action, which errored out" msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5275,51 +5391,54 @@ msgstr "다시 시도" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "이전 페이지로 돌아갑니다" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "홈 페이지로 돌아갑니다" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "이전 페이지로 돌아갑니다" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "저장" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "저장" -#: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "대체 텍스트 저장" - -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "생년월일 저장" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "변경 사항 저장" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "핸들 변경 저장" @@ -5328,92 +5447,77 @@ msgstr "핸들 변경 저장" msgid "Save image" msgstr "이미지 저장" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "이미지 자르기 저장" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "QR 코드 저장" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "내 피드에 저장" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "저장한 피드" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "내 사진 보관함에 저장됨" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "내 피드에 저장됨" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "프로필에 대한 모든 변경 사항을 저장합니다" - -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "핸들을 {handle}(으)로 변경합니다" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "이미지 자르기 설정을 저장합니다" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "인사해 보세요!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "과학" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "맨 위로 스크롤" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "검색" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "\"{query}\"에 대한 검색 결과" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "\"{searchText}\"에 대한 검색 결과" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "{displayTag} 태그를 사용한 @{authorHandle} 님의 모든 게시물 검색" - -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "{displayTag} 태그를 사용한 모든 게시물 검색" - -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "다른 사람에게 추천할 피드를 검색하세요." @@ -5421,18 +5525,16 @@ msgstr "다른 사람에게 추천할 피드를 검색하세요." msgid "Search for users" msgstr "사용자 검색하기" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "GIF 검색하기" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "프로필 검색" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Tenor 검색" @@ -5448,23 +5550,23 @@ msgstr "{truncatedTag} 게시물 보기" msgid "See {truncatedTag} posts by user" msgstr "이 사용자의 {truncatedTag} 게시물 보기" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "<0>{displayTag} 게시물 보기" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "이 사용자의 <0>{displayTag} 게시물 보기" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Bluesky에 지원하기" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "이 가이드" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "슬라이더 탐색" @@ -5476,7 +5578,7 @@ msgstr "{item} 선택" msgid "Select a color" msgstr "색상 선택" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "계정 선택" @@ -5488,15 +5590,15 @@ msgstr "아바타 선택" msgid "Select an emoji" msgstr "이모티콘 선택" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" -msgstr "기존 계정에서 선택" +msgstr "기존 계정에서 선택하기" #: src/view/com/composer/photos/SelectGifBtn.tsx:35 msgid "Select GIF" msgstr "GIF 선택" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" 선택" @@ -5504,15 +5606,15 @@ msgstr "GIF \"{0}\" 선택" msgid "Select how long to mute this word for." msgstr "이 단어를 음소거할 기간 선택하기" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "언어 선택..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "언어 선택" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "검토자 선택" @@ -5520,7 +5622,7 @@ msgstr "검토자 선택" msgid "Select option {i} of {numItems}" msgstr "{numItems}개 중 {i}번째 옵션을 선택합니다" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "자막 파일(.vtt) 선택" @@ -5528,15 +5630,15 @@ msgstr "자막 파일(.vtt) 선택" msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} 이모티콘을 아바타로 선택하기" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "신고할 검토 서비스를 선택하세요." -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "데이터를 호스팅할 서비스를 선택하세요." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "동영상 선택" @@ -5544,23 +5646,23 @@ msgstr "동영상 선택" msgid "Select what content this mute word should apply to." msgstr "이 뮤트 단어를 적용할 콘텐츠 선택하기" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 않으면 모든 언어가 표시됩니다." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "앱에 표시되는 기본 텍스트 언어를 선택합니다." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "생년월일을 선택하세요" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "아래 옵션에서 관심사를 선택하세요" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다." @@ -5568,6 +5670,14 @@ msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다." msgid "Send a neat website!" msgstr "멋진 웹사이트 링크를 보내 보세요!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "인증 메일 보내기" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "인증 이메일 보내기" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -5582,37 +5692,37 @@ msgctxt "action" msgid "Send Email" msgstr "이메일 보내기" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "피드백 보내기" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "메시지 보내기" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "게시물을 다음으로 보내기" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "신고 보내기" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "{0} 님에게 신고 보내기" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "인증 이메일 보내기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "다이렉트 메시지로 보내기" @@ -5620,35 +5730,35 @@ msgstr "다이렉트 메시지로 보내기" msgid "Sends email with confirmation code for account deletion" msgstr "계정 삭제를 위한 확인 코드가 포함된 이메일을 전송합니다" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "서버 주소" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "생년월일 설정" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "새 비밀번호 설정" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "피드에서 모든 인용 게시물을 숨기려면 이 설정을 \"아니요\"로 설정합니다. 재게시는 계속 표시됩니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "피드에서 모든 답글을 숨기려면 이 설정을 \"아니요\"로 설정합니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "피드에서 모든 재게시를 숨기려면 이 설정을 \"아니요\"로 설정합니다." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "스레드 보기에 답글을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "팔로우 중 피드에 저장한 피드 샘플을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다." @@ -5656,56 +5766,42 @@ msgstr "팔로우 중 피드에 저장한 피드 샘플을 표시하려면 이 msgid "Set up your account" msgstr "계정 설정하기" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Bluesky 사용자 이름을 설정합니다" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "비밀번호 재설정을 위한 이메일을 설정합니다" -#: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "이미지 비율을 정사각형으로 설정합니다" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "이미지 비율을 세로로 길게 설정합니다" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "이미지 비율을 가로로 길게 설정합니다" - -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "설정" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." -msgstr "성행위 또는 선정적인 노출." +msgstr "성행위 또는 선정적인 나체." #: src/lib/moderation/useGlobalLabelStrings.ts:38 msgid "Sexually Suggestive" msgstr "외설적" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:651 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "공유" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "공유" @@ -5718,28 +5814,20 @@ msgstr "멋진 이야기를 전하세요!" msgid "Share a fun fact!" msgstr "재미있는 사실을 전하세요!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "무시하고 공유" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "피드 공유" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:628 -msgid "Share image externally" -msgstr "외부로 이미지 공유" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:646 -msgid "Share image in post" -msgstr "게시물로 이미지 공유" - #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "링크 공유" @@ -5757,7 +5845,7 @@ msgstr "링크 공유 대화 상자" msgid "Share QR code" msgstr "QR 코드 공유" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "이 스타터 팩 공유하기" @@ -5769,7 +5857,7 @@ msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니 msgid "Share your favorite feed!" msgstr "좋아하는 피드를 공유해 보세요!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "공유 설정 테스터" @@ -5777,19 +5865,19 @@ msgstr "공유 설정 테스터" msgid "Shares the linked website" msgstr "연결된 웹사이트를 공유합니다" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "표시" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "대체 텍스트 표시" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "무시하고 표시" @@ -5807,8 +5895,8 @@ msgstr "배지 표시 및 피드에서 필터링" msgid "Show hidden replies" msgstr "숨겨진 답글 표시" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "이런 항목 덜 보기" @@ -5816,14 +5904,14 @@ msgstr "이런 항목 덜 보기" msgid "Show list anyway" msgstr "무시하고 리스트 표시하기" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "더 보기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "이런 항목 더 보기" @@ -5831,32 +5919,32 @@ msgstr "이런 항목 더 보기" msgid "Show muted replies" msgstr "뮤트된 답글 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "내 피드에서 게시물 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "인용 게시물 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "답글 표시" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "내가 팔로우하는 사람들의 답글을 다른 모든 답글보다 먼저 표시합니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "모두에게 답글 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "재게시 표시" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "콘텐츠 표시" @@ -5869,36 +5957,31 @@ msgstr "경고 표시" msgid "Show warning and filter from feeds" msgstr "경고 표시 및 피드에서 필터링" -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "피드에 {0} 님의 게시물을 표시합니다" - #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "로그인" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "{0}(으)로 로그인" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "로그인" @@ -5910,42 +5993,37 @@ msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!" msgid "Sign into Bluesky or create a new account" msgstr "Bluesky에 로그인하거나 새 계정 만들기" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "로그아웃" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" -msgstr "모든 계정 로그아웃" +msgstr "모든 계정에서 로그아웃" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "가입하기" -#: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "가입 또는 로그인하여 대화에 참여하세요" - -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "로그인 필요" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "로그인한 계정" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "@{0}(으)로 로그인했습니다" @@ -5953,8 +6031,8 @@ msgstr "@{0}(으)로 로그인했습니다" msgid "signed up with your starter pack" msgstr "(이)가 내 스타터 팩으로 가입했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "스타터 팩 없이 가입하기" @@ -5962,17 +6040,22 @@ msgstr "스타터 팩 없이 가입하기" msgid "Similar accounts" msgstr "비슷한 계정" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "건너뛰기" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "이 단계 건너뛰기" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "작음" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "소프트웨어 개발" @@ -5984,7 +6067,7 @@ msgstr "좋아할 만한 다른 피드" msgid "Some people can reply" msgstr "일부 사람들이 답글을 달 수 있음" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "알 수 없는 오류가 발생했습니다" @@ -5993,33 +6076,33 @@ msgstr "알 수 없는 오류가 발생했습니다" msgid "Something went wrong, please try again" msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "문제가 발생했습니다!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "답글 정렬" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "동일한 게시물에 대한 답글을 정렬하는 기준입니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "출처: <0>{sourceName}" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "출처:" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6031,73 +6114,69 @@ msgid "Spam; excessive mentions or replies" msgstr "스팸, 과도한 멘션 또는 답글" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "스포츠" -#: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "정사각형" - -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "새 대화 시작하기" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "{displayName} 님과 대화 시작하기" -#: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "대화 시작하기" - -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "스타터 팩" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "{0} 님의 스타터 팩" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "내 스타터 팩" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "스타터 팩이 유효하지 않음" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "스타터 팩" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다." -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "상태 페이지" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "{1}단계 중 {0}단계" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "스토리북" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "확인" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "구독" @@ -6105,18 +6184,22 @@ msgstr "구독" msgid "Subscribe to @{0} to use these labels:" msgstr "이 라벨을 사용하려면 @{0}을(를) 구독하세요." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "라벨러 구독" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "이 라벨러 구독하기" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "이 리스트 구독하기" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "성공!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "추천 계정" @@ -6125,39 +6208,41 @@ msgstr "추천 계정" msgid "Suggested for you" msgstr "나를 위한 추천" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "외설적" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "지원" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "계정 전환" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "{0}(으)로 전환" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "로그인 중인 계정을 전환합니다" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "시스템" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "시스템 로그" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "태그 메뉴: {displayTag}" @@ -6165,23 +6250,19 @@ msgstr "태그 메뉴: {displayTag}" msgid "Tags only" msgstr "태그만" -#: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "세로" - #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "눌러서 닫기" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "탭하여 전체화면으로 보기" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "탭하여 재생/일시 정지" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "탭하여 소리 켜기/끄기" @@ -6199,7 +6280,7 @@ msgid "Teach our algorithm what you like" msgstr "무엇을 좋아하는지 알고리즘에게 알려주세요" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "기술" @@ -6207,23 +6288,23 @@ msgstr "기술" msgid "Tell a joke!" msgstr "농담해 보세요!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "본인에 대해 간단히 소개해 주세요" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "좀 더 자세히 알려주세요" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:524 -msgid "Ten Million" -msgstr "천만 명" - #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "이용약관" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "서비스 이용약관" @@ -6238,25 +6319,25 @@ msgstr "커뮤니티 기준을 위반하는 용어 사용" msgid "Text & tags" msgstr "텍스트 및 태그" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "텍스트 입력 필드" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "감사합니다! 이메일을 성공적으로 인증했습니다." + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "감사합니다. 신고를 전송했습니다." -#: src/components/dialogs/nuxs/TenMillion/index.tsx:600 -msgid "Thanks for being one of our first 10 million users." -msgstr "사용자 천만 명 중 한 명이 되어 주셔서 감사합니다." +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상자를 닫아도 됩니다." -#: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "이메일 주소를 성공적으로 인증했습니다." - -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "텍스트 파일 내용:" @@ -6264,12 +6345,12 @@ msgstr "텍스트 파일 내용:" msgid "That handle is already taken." msgstr "이 핸들은 이미 사용 중입니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "스타터 팩을 찾을 수 없습니다." @@ -6277,8 +6358,8 @@ msgstr "스타터 팩을 찾을 수 없습니다." msgid "That's all, folks!" msgstr "이상입니다, 여러분!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다." @@ -6287,15 +6368,15 @@ msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 msgid "The author of this thread has hidden this reply." msgstr "이 스레드의 작성자가 이 답글을 숨겼습니다." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Bluesky 웹 애플리케이션" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "저작권 정책을 <0/>(으)로 이동했습니다" @@ -6308,7 +6389,7 @@ msgstr "Discover 피드" msgid "The Discover feed now knows what you like" msgstr "이제 Discover 피드는 사용자가 무엇을 좋아하는지 알게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다." @@ -6333,63 +6414,55 @@ msgstr "다음 단계는 Bluesky 환경을 맞춤 설정하는 데 도움이 됩 msgid "The post may have been deleted." msgstr "게시물이 삭제되었을 수 있습니다." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "선택한 동영상이 50MB를 초과합니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "지원 양식을 이동했습니다. 도움이 필요하다면 <0/>하거나 {HELP_DESK_URL}에 방문하여 문의해 주세요." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "서비스 이용약관을 다음으로 이동했습니다:" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "입력한 인증 코드가 올바르지 않습니다. 올바른 인증 링크를 사용했는지 확인하거나 새 인증 링크를 요청하세요." +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "테마" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "계정 비활성화에는 시간 제한이 없으므로 언제든지 다시 돌아올 수 있습니다." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." - -#: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." - -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." - -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Tenor에 연결하는 동안 문제가 발생했습니다." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6399,39 +6472,49 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "신고를 전송하는 동안 문제가 발생했습니다. 인터넷 연결을 확인해 주세요." -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "앱 비밀번호를 가져오는 동안 문제가 발생했습니다" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "문제가 발생했습니다! {0}" @@ -6439,16 +6522,15 @@ msgstr "문제가 발생했습니다! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이런 일이 발생하면 저희에게 알려주세요!" @@ -6456,11 +6538,11 @@ msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky에 신규 사용자가 몰리고 있습니다! 최대한 빨리 계정을 활성화하겠습니다." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "이 {screenDescription}에 다음 플래그가 지정되었습니다:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "이 계정의 프로필을 보려면 로그인해야 합니다." @@ -6468,15 +6550,15 @@ msgstr "이 계정의 프로필을 보려면 로그인해야 합니다." msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "이 계정은 하나 이상의 검토 리스트에 의해 차단되었습니다. 차단을 해제하려면 해당 리스트로 직접 이동하여 이 사용자를 제거하세요." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "이 이의신청은 <0>{sourceName}에게 보내집니다." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "이 이의신청은 Bluesky Moderation Service로 보내집니다." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "이 대화는 연결이 끊어졌습니다" @@ -6488,7 +6570,7 @@ msgstr "이 콘텐츠는 검토자에 의해 숨겨졌습니다." msgid "This content has received a general warning from moderators." msgstr "이 콘텐츠는 검토자로부터 일반 경고를 받았습니다." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "이 콘텐츠는 {0}에서 호스팅됩니다. 외부 미디어를 사용하시겠습니까?" @@ -6501,11 +6583,11 @@ msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문 msgid "This content is not viewable without a Bluesky account." msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입니다. 옵션을 보려면 누르세요." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "이 기능은 베타 버전입니다. 저장소 내보내기에 대한 자세한 내용은 <0>이 블로그 글에서 확인할 수 있습니다." @@ -6518,8 +6600,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "이 피드는 비어 있습니다." @@ -6527,7 +6609,7 @@ msgstr "이 피드는 비어 있습니다." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "이 피드는 더 이상 온라인 상태가 아닙니다. 대신 <0>Discover를 표시합니다." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "이 정보는 다른 사용자와 공유되지 않습니다." @@ -6535,15 +6617,15 @@ msgstr "이 정보는 다른 사용자와 공유되지 않습니다." msgid "This is important in case you ever need to change your email or reset your password." msgstr "이는 이메일을 변경하거나 비밀번호를 재설정해야 할 때 중요한 정보입니다." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." -msgstr "이 라벨은 {0}이(가) 적용했습니다." +msgstr "이 라벨은 <0>{0}이(가) 적용했습니다." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "이 라벨은 작성자가 적용했습니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "이 라벨은 내가 적용했습니다." @@ -6559,7 +6641,7 @@ msgstr "이 링크를 클릭하면 다음 웹사이트로 이동합니다." msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "<0>{0} 님이 만든 이 목록은 이름이나 설명에 Bluesky의 커뮤니티 가이드라인을 위반할 가능성이 있는 내용이 포함되어 있습니다." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "이 리스트는 비어 있습니다." @@ -6571,28 +6653,28 @@ msgstr "이 검토 서비스는 사용할 수 없습니다. 자세한 내용은 msgid "This name is already in use" msgstr "이 이름은 이미 사용 중입니다" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "이 게시물은 삭제되었습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "이 프로필은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자신과 다른 사용자 모두의 후속 답글에 대한 알림이 뮤트됩니다." @@ -6600,7 +6682,7 @@ msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자 msgid "This service has not provided terms of service or a privacy policy." msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침을 제공하지 않습니다." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "이 도메인에 레코드가 추가됩니다:" @@ -6645,28 +6727,28 @@ msgstr "뮤트한 단어에서 \"{0}\"을(를) 삭제합니다. 나중에 언제 msgid "This will remove @{0} from the quick access list." msgstr "빠른 액세스 목록에서 @{0}을(를) 제거합니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되고 자리 표시자로 대체됩니다." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "스레드 설정" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "스레드 설정" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "스레드 모드" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "스레드 설정" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "이메일 2단계 인증을 비활성화하려면 이메일 주소에 대한 접근 권한을 인증하세요." @@ -6674,41 +6756,37 @@ msgstr "이메일 2단계 인증을 비활성화하려면 이메일 주소에 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "대화를 신고하려면 대화 화면에서 해당 메시지 중 하나를 신고하세요. 이렇게 하면 운영진이 문제의 맥락을 파악할 수 있습니다." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Bluesky에 동영상을 업로드하려면 먼저 이메일을 인증해야 합니다." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "이 신고를 누구에게 보내시겠습니까?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:604 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "우리는 함께 소셜 인터넷을 재건하고 있습니다. 함께해 주셔서 감사합니다." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "오늘" #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "드롭다운 열기 및 닫기" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "성인 콘텐츠 활성화 또는 비활성화 전환" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "인기" -#: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "변형" - #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "번역" @@ -6717,40 +6795,40 @@ msgctxt "action" msgid "Try again" msgstr "다시 시도" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "2단계 인증" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "메시지를 입력하세요" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "유형:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "리스트 차단 해제" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "리스트 언뮤트" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "삭제할 수 없음" @@ -6758,14 +6836,14 @@ msgstr "삭제할 수 없음" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "차단 해제" @@ -6775,17 +6853,17 @@ msgstr "차단 해제" msgid "Unblock account" msgstr "계정 차단 해제" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "계정 차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "계정을 차단 해제하시겠습니까?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6796,26 +6874,26 @@ msgctxt "action" msgid "Unfollow" msgstr "언팔로우" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "{0} 님을 언팔로우" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "계정 언팔로우" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "이 피드 좋아요 취소" -#: src/components/TagMenu/index.tsx:263 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "언뮤트" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:165 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "음소거 해제" @@ -6824,12 +6902,12 @@ msgstr "음소거 해제" msgid "Unmute {truncatedTag}" msgstr "{truncatedTag} 언뮤트" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "계정 언뮤트" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "모든 {tag} 게시물 언뮤트" @@ -6837,33 +6915,38 @@ msgstr "모든 {tag} 게시물 언뮤트" msgid "Unmute conversation" msgstr "알림 언뮤트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "스레드 언뮤트" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "동영상 음소거 해제" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "고정 해제" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "홈에서 고정 해제" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "프로필에서 고정 해제" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "검토 리스트 고정 해제" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "내 피드에서 고정 해제됨" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "구독 취소" @@ -6872,7 +6955,7 @@ msgstr "구독 취소" msgid "Unsubscribe from list" msgstr "리스트 구독 취소" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "이 라벨러 구독 취소하기" @@ -6880,7 +6963,7 @@ msgstr "이 라벨러 구독 취소하기" msgid "Unsubscribed from list" msgstr "리스트 구독 취소됨" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "지원되지 않는 동영상 유형: {mimeType}" @@ -6890,75 +6973,88 @@ msgid "Unwanted Sexual Content" msgstr "원치 않는 성적 콘텐츠" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "리스트에서 {displayName} 업데이트" +msgid "Update <0>{displayName} in Lists" +msgstr "리스트에서 <0>{displayName} 업데이트" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "{handle}로 변경" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "인용 업데이트 실패" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "답글 표시 여부 업데이트 실패" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "업데이트 중…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "대신 사진 업로드하기" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "텍스트 파일 업로드 경로:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "카메라에서 업로드" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "파일에서 업로드" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "라이브러리에서 업로드" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "이미지 업로드 중..." + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "링크 미리보기 업로드 중..." + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "동영상 업로드 중..." + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "서버에 있는 파일을 사용합니다" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "앱 비밀번호를 사용하면 계정이나 비밀번호에 대한 전체 접근 권한을 제공하지 않고도 다른 Bluesky 클라이언트에 로그인할 수 있습니다." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "호스팅 제공자로 bsky.social을 사용합니다" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "기본 제공자 사용" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "인앱 브라우저 사용" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "내 기본 브라우저 사용" @@ -6966,7 +7062,7 @@ msgstr "내 기본 브라우저 사용" msgid "Use recommended" msgstr "추천 사용" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "DNS 패널을 사용합니다" @@ -7003,36 +7099,36 @@ msgstr "나를 차단한 사용자" msgid "User Blocks You" msgstr "나를 차단한 사용자" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "{0} 님의 사용자 리스트" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "<0/> 님의 사용자 리스트" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "내 사용자 리스트" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "사용자 리스트 생성됨" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "사용자 리스트 업데이트됨" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "사용자 리스트" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "사용자 이름 또는 이메일 주소" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "사용자" @@ -7040,46 +7136,45 @@ msgstr "사용자" msgid "users followed by <0>@{0}" msgstr "<0>@{0} 님이 팔로우한 사용자" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "내가 팔로우하는 사용자" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "\"{0}\"에 있는 사용자" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "이 콘텐츠 또는 프로필을 좋아하는 사용자" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "값:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "이메일 인증 필요" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "DNS 레코드 인증" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "이메일 인증" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "이메일 인증 대화 상자" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "내 이메일 인증하기" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "내 이메일 인증하기" @@ -7088,33 +7183,34 @@ msgstr "내 이메일 인증하기" msgid "Verify New Email" msgstr "새 이메일 인증" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "지금 인증하기" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "텍스트 파일 인증" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "이메일 인증하기" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "버전 {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "동영상" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "동영상을 처리하지 못했습니다" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "비디오 게임" @@ -7122,20 +7218,24 @@ msgstr "비디오 게임" msgid "Video not found." msgstr "동영상을 찾을 수 없습니다." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "동영상 설정" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "동영상 업로드됨" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "동영상: {0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "동영상 길이는 60초 미만이어야 합니다." -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "{0} 님의 아바타 보기" @@ -7148,15 +7248,23 @@ msgstr "{0} 님의 프로필 보기" msgid "View {displayName}'s profile" msgstr "{displayName} 님의 프로필 보기" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "{displayTag} 태그를 사용한 @{authorHandle} 님의 모든 게시물 보기" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "{displayTag} 태그를 사용한 모든 게시물 보기" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "차단된 사용자의 프로필 보기" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "자세한 정보를 위해 블로그 글 보기" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "디버그 항목 보기" @@ -7176,11 +7284,13 @@ msgstr "전체 스레드 보기" msgid "View information about these labels" msgstr "이 라벨에 대한 정보 보기" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "프로필 보기" @@ -7188,28 +7298,28 @@ msgstr "프로필 보기" msgid "View the avatar" msgstr "아바타 보기" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "{0} 님이 제공하는 라벨링 서비스 보기" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "내가 차단한 계정 보기" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "내 피드를 보거나 새 피드 탐색하기" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "내 검토 리스트 보기" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "내가 뮤트한 계정 보기" @@ -7232,11 +7342,11 @@ msgstr "콘텐츠 경고" msgid "Warn content and filter from feeds" msgstr "콘텐츠 경고 및 피드에서 필터링" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "해당 해시태그에 대한 결과를 찾을 수 없습니다." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "이 대화를 불러올 수 없습니다" @@ -7244,11 +7354,11 @@ msgstr "이 대화를 불러올 수 없습니다" msgid "We estimate {estimatedTime} until your account is ready." msgstr "계정이 준비될 때까지 {estimatedTime}이(가) 걸릴 것으로 예상됩니다." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "<0>{0}(으)로 또 다른 인증 이메일을 보냈습니다." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기억하세요." @@ -7256,19 +7366,19 @@ msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기 msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "팔로우한 사용자의 게시물이 부족합니다. 대신 <0/>의 최신 게시물을 표시합니다." -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다시 시도해 주세요." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "생년월일 설정을 불러올 수 없습니다. 다시 시도해 주세요." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "현재 구성된 라벨러를 불러올 수 없습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 시도해 주세요. 계속 실패하면 이 과정을 건너뛸 수 있습니다." @@ -7276,19 +7386,23 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 msgid "We will let you know when your account is ready." msgstr "계정이 준비되면 알려드리겠습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도하세요" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "글꼴 크기 조정 기능과 함께 새 테마 글꼴을 소개합니다." + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "함께하게 되어 정말 기뻐요!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제가 계속되면 리스트 작성자인 @{handleOrDid}에게 문의하세요." @@ -7296,20 +7410,20 @@ msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. 다시 시도해 주세요." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "죄송합니다. 페이지를 찾을 수 없습니다." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20개에 도달했습니다." @@ -7321,7 +7435,7 @@ msgstr "다시 돌아오셨군요!" msgid "Welcome, friend!" msgstr "잘 오셨습니다!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "어떤 관심사가 있으신가요?" @@ -7329,17 +7443,17 @@ msgstr "어떤 관심사가 있으신가요?" msgid "What do you want to call your starter pack?" msgstr "스타터 팩의 이름을 무엇으로 할까요?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "무슨 일이 일어나고 있나요?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "이 게시물에 어떤 언어가 사용되나요?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?" @@ -7347,17 +7461,12 @@ msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?" msgid "Who can interact with this post?" msgstr "누가 이 게시물과 상호작용할 수 있나요?" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "누구의 메시지를 허용하시겠습니까?" - #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "답글을 달 수 있는 사람" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "이런!" @@ -7389,36 +7498,32 @@ msgstr "이 스타터 팩을 검토해야 하는 이유는 무엇인가요?" msgid "Why should this user be reviewed?" msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?" -#: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "가로" - -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "메시지를 입력하세요" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "게시물 작성" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "답글 작성하기" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "작가" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "예" @@ -7427,15 +7532,15 @@ msgstr "예" msgid "Yes, deactivate" msgstr "비활성화" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "이 스타터 팩 삭제하기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "해제" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "숨기기" @@ -7443,11 +7548,10 @@ msgstr "숨기기" msgid "Yes, reactivate my account" msgstr "내 계정 재활성화" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "어제 {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "어제" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "나" @@ -7460,7 +7564,7 @@ msgstr "나" msgid "You are in line." msgstr "대기 중입니다." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "동영상을 업로드할 수 없습니다." @@ -7468,6 +7572,10 @@ msgstr "동영상을 업로드할 수 없습니다." msgid "You are not following anyone." msgstr "아무도 팔로우하지 않았습니다." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "나중에 모양 설정에서 수정할 수 있습니다." + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -7477,16 +7585,12 @@ msgstr "팔로우할 새로운 맞춤 피드를 찾을 수도 있습니다." msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "대신 계정을 일시적으로 비활성화한 후 언제든지 재활성화할 수도 있습니다." -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "언제든지 변경할 수 있습니다." - -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "어떤 설정을 선택하든 진행 중인 대화를 계속할 수 있습니다." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "이제 새 비밀번호로 로그인할 수 있습니다." @@ -7498,7 +7602,7 @@ msgstr "계정을 재활성화하여 로그인을 계속할 수 있습니다. msgid "You do not have any followers." msgstr "팔로워가 없습니다." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "@{name} 님을 팔로우하는 사용자를 팔로우하고 있지 않습니다." @@ -7506,11 +7610,11 @@ msgstr "@{name} 님을 팔로우하는 사용자를 팔로우하고 있지 않 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "아직 초대 코드가 없습니다! Bluesky를 좀 더 오래 사용하신 후에 보내드리겠습니다." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "고정한 피드가 없습니다." -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "저장한 피드가 없습니다." @@ -7528,8 +7632,8 @@ msgstr "이 사용자를 차단했습니다" msgid "You have blocked this user. You cannot view their content." msgstr "이 사용자를 차단했습니다. 해당 사용자의 콘텐츠를 볼 수 없습니다." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -7552,7 +7656,7 @@ msgstr "내가 이 계정을 뮤트했습니다." msgid "You have muted this user" msgstr "내가 이 사용자를 뮤트했습니다" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "아직 대화가 없습니다. 시작해 보세요!" @@ -7560,20 +7664,20 @@ msgstr "아직 대화가 없습니다. 시작해 보세요!" msgid "You have no feeds." msgstr "피드가 없습니다." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "리스트가 없습니다." -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "아직 어떤 계정도 차단하지 않았습니다. 계정을 차단하려면 해당 계정의 프로필로 이동하여 계정 메뉴에서 \"계정 차단\"을 선택하세요." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "아직 앱 비밀번호를 생성하지 않았습니다. 아래 버튼을 눌러 생성할 수 있습니다." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트하려면 해당 계정의 프로필로 이동하여 계정 메뉴에서 \"계정 뮤트\"를 선택하세요." @@ -7581,11 +7685,11 @@ msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트 msgid "You have reached the end" msgstr "끝에 도달했습니다" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "아직 스타터 팩을 만들지 않았습니다." @@ -7614,72 +7718,79 @@ msgstr "프로필은 최대 {STARTER_PACK_MAX_SIZE}개까지 추가할 수 있 msgid "You may only add up to 3 feeds" msgstr "피드는 최대 3개까지 추가할 수 있습니다" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "이미지는 최대 4개까지 선택할 수 있습니다" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "가입하려면 만 13세 이상이어야 합니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "스타터 팩을 만들려면 최소 7명 이상의 다른 사람을 팔로우해야 합니다." +msgstr "스타터 팩을 만들려면 다른 사람을 최소 7명 이상 팔로우해야 합니다." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "이미지를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" -msgstr "신고하려면 하나 이상의 라벨을 선택해야 합니다." +msgstr "신고하려면 라벨을 하나 이상 선택해야 합니다" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." msgstr "이전에 @{0}을(를) 비활성화했습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "이 스레드에 대한 알림을 더 이상 받지 않습니다" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "이제 이 스레드에 대한 알림을 받습니다" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "\"재설정 코드\"가 포함된 이메일을 받게 되면 여기에 해당 코드를 입력한 다음 새 비밀번호를 입력하세요." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "나: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "나: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "나: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우하게 됩니다." -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다." -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "다음 사람들을 바로 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "본인 인증을 위해 <0>{0}(으)로 이메일을 보냅니다." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "다음 피드를 구독하게 됩니다" @@ -7694,7 +7805,7 @@ msgstr "대기 중입니다" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "앱 비밀번호로 로그인했습니다. 계정 비활성화를 계속하려면 원래 비밀번호로 로그인하세요." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "준비가 끝났습니다!" @@ -7707,15 +7818,15 @@ msgstr "이 글에서 단어 또는 태그를 숨기도록 설정했습니다." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너무 큼)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "내 계정" @@ -7723,15 +7834,15 @@ msgstr "내 계정" msgid "Your account has been deleted" msgstr "계정을 삭제했습니다" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "내 계정은 아직 동영상을 업로드할 수 없습니다. 나중에 다시 시도해 주세요." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "모든 공개 데이터 레코드가 포함된 계정 저장소를 \"CAR\" 파일로 다운로드할 수 있습니다. 이 파일에는 이미지와 같은 미디어 임베드나 별도로 가져와야 하는 비공개 데이터는 포함되지 않습니다." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "생년월일" @@ -7739,17 +7850,17 @@ msgstr "생년월일" msgid "Your browser does not support the video format. Please try a different browser." msgstr "브라우저가 이 동영상 형식을 지원하지 않습니다. 다른 브라우저를 사용하세요." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "대화가 사용 중지되었습니다" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "선택 사항은 저장되며 나중에 설정에서 변경할 수 있습니다." -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "이메일이 잘못된 것 같습니다." @@ -7774,7 +7885,7 @@ msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔 msgid "Your full handle will be" msgstr "내 전체 핸들:" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "내 전체 핸들: <0>@{0}" @@ -7786,15 +7897,15 @@ msgstr "뮤트한 단어" msgid "Your password has been changed successfully!" msgstr "비밀번호를 성공적으로 변경했습니다." -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "게시물을 게시했습니다" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "게시물, 좋아요, 차단 목록은 공개됩니다. 뮤트 목록은 공개되지 않습니다." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "내 프로필" @@ -7802,14 +7913,14 @@ msgstr "내 프로필" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "내 프로필, 글, 피드 및 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "내 답글을 게시했습니다" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "신고가 Bluesky Moderation Service로 보내집니다." -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "내 사용자 핸들" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 308e92fc66..01802c9334 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -8,21 +8,21 @@ msgstr "" "Language: pt-BR\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-16 17:30+01:00\n" -"Last-Translator: fabiohcnobre\n" +"PO-Revision-Date: 2024-10-10 23:30:00\n" +"Last-Translator: Felps3000\n" "Language-Team: maisondasilva, MightyLoggor, gildaswise, gleydson, faeriarum, fabiohcnobre, garccez\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(contém conteúdo incorporado)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" -msgstr "(sem email)" +msgstr "(sem e-mail)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} outro} other {{formattedCount} outros}}" @@ -58,7 +58,7 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mês} other {# meses}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# repostagem} other {# repostagens}}" @@ -80,15 +80,15 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguindo} other {seguindo}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {curtida} other {curtidas}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" @@ -97,19 +97,19 @@ msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários} msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {postagem} other {postagens}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {citação} other {citações}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Responder (# resposta)} other {Responder (# respostas)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" -msgstr "{0, plural, one {repost} other {reposts}}" +msgstr "{0, plural, one {repostagem} other {repostagens}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Descurtir (# curtida)} other {Descurtir (# curtidas)}}" @@ -123,7 +123,7 @@ msgstr "{0} <0>em <1>tags" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>em <1>texto e tags" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} entrou esta semana" @@ -131,7 +131,7 @@ msgstr "{0} entrou esta semana" msgid "{0} of {1}" msgstr "{0} de {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} pessoas já usaram este pacote inicial!" @@ -139,7 +139,7 @@ msgstr "{0} pessoas já usaram este pacote inicial!" #~ msgid "{0} your feeds" #~ msgstr "{0} seus feeds" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -176,7 +176,7 @@ msgstr "{0}me" msgid "{0}s" msgstr "{0}s" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" @@ -201,7 +201,7 @@ msgstr "{count, plural, one {Curtido por # usuário} other {Curtido por # usuár #~ msgstr "{diffSeconds, plural, one {segundo} other {segundos}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "O Pacote Inicial de {displayName}" @@ -213,22 +213,22 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} não pode receber mensagens" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} não lidas" @@ -252,12 +252,12 @@ msgstr "{profileName} juntou-se ao Bluesky utilizando um pacote inicial há {0}" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "<0>{0} e<1> <2>{1} estão incluídos no seu pacote inicial" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {# outros}} estão incluídos no seu pacote inicial" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {# outros}} estão incluídos no seu pacote inicial" @@ -266,15 +266,15 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {# outros}} es #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "<0>{0}, <1>{1}, e {2} {3, plural, one {outro} other {outros}} estão incluídos no seu pacote inicial" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} e<1> <2>{1} estão incluídos no seu pacote inicial" @@ -282,7 +282,7 @@ msgstr "<0>{0} e<1> <2>{1} estão incluídos no seu pacote inicial" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} seguindo" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} está incluído no seu pacote inicial" @@ -290,6 +290,10 @@ msgstr "<0>{0} está incluído no seu pacote inicial" msgid "<0>{0} members" msgstr "<0>{0} membros" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} às {time}" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "<0>{followers} <1>{pluralizedFollowers}" @@ -308,18 +312,18 @@ msgstr "<0>{0} membros" #~ msgstr "<0>Siga alguns<2>Usuários<1>recomendados" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Não se aplica. Este aviso só funciona para posts com mídia." +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Não se aplica. Este aviso só funciona para posts com mídia." #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Bem-vindo ao<1>Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Você e<1> <2>{0} estão incluídos no seu pacote inicial" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Usuário Inválido" @@ -327,7 +331,7 @@ msgstr "⚠Usuário Inválido" msgid "24 hours" msgstr "24 horas" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Confirmação de 2FA" @@ -344,29 +348,28 @@ msgstr "7 dias" #~ msgstr "Uma sugestão de ajuda" #: src/components/dialogs/nuxs/TenMillion/index.tsx:266 -msgid "A virtual certificate with text \"Celebrating 10M users on Bluesky, #{0}, {displayName} {handle}, joined on {joinedDate}\"" -msgstr "Um certificado virtual com o texto \"Comemorando 10 milhões de usuários no Bluesky, #{0}, {displayName} {handle}, ingressou em {joinedDate}\"" +#~ msgid "A virtual certificate with text \"Celebrating 10M users on Bluesky, #{0}, {displayName} {handle}, joined on {joinedDate}\"" +#~ msgstr "Um certificado virtual com o texto \"Comemorando 10 milhões de usuários no Bluesky, #{0}, {displayName} {handle}, ingressou em {joinedDate}\"" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Acessar links de navegação e configurações" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:103 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 msgid "Access profile and other navigation links" msgstr "Acessar perfil e outros links de navegação" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Acessibilidade" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Configurações de acessibilidade" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Configurações de acessibilidade" @@ -374,21 +377,21 @@ msgstr "Configurações de acessibilidade" #~ msgid "account" #~ msgstr "conta" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Conta" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Você está seguindo esta conta" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Conta silenciada" @@ -409,27 +412,27 @@ msgstr "Configurações da conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Você não segue mais esta conta" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Conta dessilenciada" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Adicionar" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Adicione mais {0} para continuar" @@ -437,27 +440,29 @@ msgstr "Adicione mais {0} para continuar" msgid "Add {displayName} to starter pack" msgstr "Adicione {displayName} ao pacote inicial" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Adicionar um aviso de conteúdo" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Adicionar um usuário a esta lista" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Adicionar conta" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Adicionar texto alternativo" @@ -465,13 +470,13 @@ msgstr "Adicionar texto alternativo" #~ msgid "Add ALT text" #~ msgstr "Adicionar texto alternativo" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "Adicionar texto alternativo (opcional)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Adicionar Senha de Aplicativo" @@ -499,7 +504,7 @@ msgstr "Adicionar palavras/tags silenciadas" msgid "Add recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "Adicione alguns feeds ao seu pacote inicial!" @@ -507,16 +512,16 @@ msgstr "Adicione alguns feeds ao seu pacote inicial!" msgid "Add the default feed of only people you follow" msgstr "Adicionar o feed padrão com as pessoas que você segue" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Adicione o seguinte registro DNS ao seu domínio:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Adicione este feed aos seus feeds" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Adicionar às Listas" @@ -529,7 +534,7 @@ msgstr "Adicionar aos meus feeds" #~ msgstr "Adicionado" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Adicionado à lista" @@ -541,22 +546,28 @@ msgstr "Adicionado aos meus feeds" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Ajuste o número de curtidas para que uma resposta apareça no seu feed." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Conteúdo Adulto" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Conteúdo adulto só pode ser habilitado pela web em <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "O conteúdo adulto está desabilitado." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Avançado" @@ -564,11 +575,11 @@ msgstr "Avançado" msgid "Algorithm training complete!" msgstr "Treinamento de algoritmo concluído!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Todas as contas foram seguidas!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que você salvou, em um único lugar." @@ -582,61 +593,70 @@ msgstr "Permitir acesso às suas mensagens diretas" #~ msgid "Allow messages from" #~ msgstr "Permitir mensagens de" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Permitir novas mensagens de" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Permitir respostas de:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "Permite acesso a mensagens diretas" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Já tem um código?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Já autenticado como @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Texto alternativo" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "O texto alternativo vai ficar truncado. Limite de {0} caracteres." + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." -msgstr "Um email foi enviado para {0}. Ele inclui um código de confirmação que você pode inserir abaixo." +msgstr "Um e-mail foi enviado para {0}. Ele inclui um código de confirmação que você pode inserir abaixo." #: src/view/com/modals/ChangeEmail.tsx:114 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." -msgstr "Um email foi enviado para seu email anterior, {0}. Ele inclui um código de confirmação que você pode inserir abaixo." +msgstr "Um e-mail foi enviado para seu e-mail anterior, {0}. Ele inclui um código de confirmação que você pode inserir abaixo." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Ocorreu um erro" @@ -644,15 +664,15 @@ msgstr "Ocorreu um erro" #~ msgid "An error occured" #~ msgstr "Tivemos um problema" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:416 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Ocorreu um erro" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "Ocorreu um erro ao compactar o vídeo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro ao gerar seu pacote inicial. Quer tentar novamente?" @@ -665,15 +685,15 @@ msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente." #: src/components/dialogs/nuxs/TenMillion/index.tsx:315 -msgid "An error occurred while saving the image!" -msgstr "Ocorreu um erro ao salvar a imagem!" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "Ocorreu um erro ao salvar a imagem!" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "Ocorreu um erro ao salvar o QR code!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "Ocorreu um erro ao selecionar o vídeo" @@ -681,12 +701,12 @@ msgstr "Ocorreu um erro ao selecionar o vídeo" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocorreu um erro ao tentar deletar esta mensagem. Por favor, tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "Ocorreu um erro ao tentar seguir todos" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "Ocorreu um erro ao enviar o vídeo." @@ -698,40 +718,40 @@ msgstr "Outro problema" msgid "An issue occurred starting the chat" msgstr "Ocorreu um problema ao iniciar o chat" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "Ocorreu um problema ao tentar abrir o chat" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Ocorreu um problema, por favor tente novamente." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "ocorreu um erro desconhecido" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "um rotulador desconhecido" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "e" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF animado" @@ -739,47 +759,52 @@ msgstr "GIF animado" msgid "Anti-Social Behavior" msgstr "Comportamento Anti-Social" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Qualquer idioma" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Qualquer pessoa pode interagir" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Idioma do aplicativo" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Senha de Aplicativo excluída" #: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." -msgstr "O nome da Senha de Aplicativo só pode conter letras, números, traços e sublinhados." +msgstr "O nome da Senha de Aplicativo só pode conter letras, números, travessões e underline." #: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "O nome da Senha de Aplicativo precisa ter no mínimo 4 caracteres." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Configurações de Senha de Aplicativo" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Senhas de Aplicativos" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Contestar" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Contestar rótulo \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Contestação enviada." @@ -787,23 +812,23 @@ msgstr "Contestação enviada." #~ msgid "Appeal submitted." #~ msgstr "Contestação enviada." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Recorrer desta decisão" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Aparência" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Configurações de aparência" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Configurações de aparência" @@ -816,7 +841,7 @@ msgstr "Utilizar feeds recomendados" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "Tem certeza de que deseja excluir este pacote inicial?" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?" @@ -828,10 +853,14 @@ msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Tem certeza de que deseja excluir esta mensagem? A mensagem será excluída para você, mas não para o outro participante." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Tem certeza de que deseja excluir este pacote inicial?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "Tem certeza de que deseja sair desta conversa? Suas mensagens serão excluídas para você, mas não para os outros participantes." @@ -844,11 +873,11 @@ msgstr "Tem certeza de que deseja sair desta conversa? Suas mensagens serão exc msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Tem certeza que deseja remover {0} dos seus feeds?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "Tem certeza que deseja remover isto de seus feeds?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Tem certeza que deseja descartar este rascunho?" @@ -861,11 +890,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Você está escrevendo em <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Arte" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." @@ -874,22 +903,22 @@ msgid "At least 3 characters" msgstr "No mínimo 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Voltar" @@ -897,20 +926,20 @@ msgstr "Voltar" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Com base no seu interesse em {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Básicos" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Aniversário" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Aniversário:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Bloquear" @@ -919,45 +948,45 @@ msgstr "Bloquear" msgid "Block account" msgstr "Bloquear conta" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Bloquear Conta" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Bloquear Conta?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Bloquear contas" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Lista de bloqueio" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Bloquear estas contas?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir com você." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas não podem responder, mencionar ou interagir com você. Você não verá o conteúdo deles e eles serão impedidos de ver o seu." @@ -969,26 +998,30 @@ msgstr "Postagem bloqueada." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear não previne este rotulador de rotular a sua conta." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Bloqueios são públicos. Contas bloqueadas não podem responder, mencionar ou interagir com você." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Bloquear não previne rótulos de serem aplicados na sua conta, mas vai impedir esta conta de interagir com você." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky é uma rede aberta que permite a escolha do seu provedor de hospedagem. Desenvolvedores já conseguem utilizar a versão beta de hospedagem própria." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky é uma rede aberta que permite a escolha do seu provedor de hospedagem. Desenvolvedores já conseguem utilizar a versão beta de hospedagem própria." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky é uma rede aberta onde você pode escolher seu provedor de hospedagem. Se você é um desenvolvedor, você pode hospedar seu próprio servidor" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -996,8 +1029,8 @@ msgstr "Bluesky é melhor com amigos!" #: src/components/dialogs/nuxs/TenMillion/Trigger.tsx:43 #: src/components/dialogs/nuxs/TenMillion/Trigger.tsx:59 -msgid "Bluesky is celebrating 10 million users!" -msgstr "" +#~ msgid "Bluesky is celebrating 10 million users!" +#~ msgstr "Bluesky está celebrando 10 milhões de usuários!" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:82 @@ -1015,14 +1048,14 @@ msgstr "" #~ msgstr "Bluesky é público." #: src/components/dialogs/nuxs/TenMillion/index.tsx:256 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "O Bluesky agora tem mais de 10 milhões de usuários, e eu fui o #{0}!" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "O Bluesky agora tem mais de 10 milhões de usuários, e eu fui o #{0}!" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "O Bluesky escolherá um conjunto de contas recomendadas dentre as pessoas em sua rede." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "O Bluesky não mostrará seu perfil e publicações para usuários desconectados. Outros aplicativos podem não respeitar esta solicitação. Isto não torna a sua conta privada." @@ -1035,13 +1068,13 @@ msgid "Blur images and filter from feeds" msgstr "Desfocar imagens e filtrar dos feeds" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Livros" #: src/components/dialogs/nuxs/TenMillion/index.tsx:677 -msgid "Brag a little!" -msgstr "Gabe-se um pouco!" +#~ msgid "Brag a little!" +#~ msgstr "Gabe-se um pouco!" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1068,7 +1101,7 @@ msgstr "Navegue por mais sugestões na página Explorar" msgid "Browse other feeds" msgstr "Navegar por outros feeds" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Empresarial" @@ -1080,7 +1113,7 @@ msgstr "por -" #~ msgid "by {0}" #~ msgstr "por {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Por {0}" @@ -1093,49 +1126,60 @@ msgid "by <0/>" msgstr "por <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Ao criar uma conta, você concorda com os {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Ao criar uma conta, você concorda com os {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "Ao criar uma conta você concorda com a <0>Política de Privacidade." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço e a <0>Política de Privacidade." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço." #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "por você" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Câmera" #: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." -msgstr "Só pode conter letras, números, espaços, riscas e subtraços. Deve ter pelo menos 4 caracteres, mas não mais de 32 caracteres." +msgstr "Só pode conter letras, números, espaços, travessões e underline. Deve ter pelo menos 4 caracteres, mas não mais de 32 caracteres." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:124 -#: src/components/Prompt.tsx:126 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Cancelar" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1147,19 +1191,19 @@ msgstr "Cancelar" msgid "Cancel account deletion" msgstr "Cancelar exclusão da conta" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Cancelar alteração de usuário" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Cancelar corte da imagem" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Cancelar edição do perfil" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Cancelar edição do perfil" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Cancelar citação" @@ -1168,6 +1212,7 @@ msgid "Cancel reactivation and log out" msgstr "Cancelar reativação e sair" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Cancelar busca" @@ -1175,14 +1220,14 @@ msgstr "Cancelar busca" msgid "Cancels opening the linked website" msgstr "Cancela a abertura do link" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "Não é possível interagir com um usuário bloqueado" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "Legendas (.vtt)" @@ -1191,37 +1236,41 @@ msgid "Captions & alt text" msgstr "Legendas e texto alt" #: src/components/dialogs/nuxs/TenMillion/index.tsx:434 -msgid "Celebrating {0} users" -msgstr "Comemorando {0} usuários" +#~ msgid "Celebrating {0} users" +#~ msgstr "Comemorando {0} usuários" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Alterar" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Alterar" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Alterar usuário" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Alterar Usuário" #: src/view/com/modals/VerifyEmail.tsx:155 msgid "Change my email" -msgstr "Alterar meu email" +msgstr "Alterar meu e-mail" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Alterar senha" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Alterar Senha" @@ -1231,11 +1280,12 @@ msgstr "Alterar idioma do post para {0}" #: src/view/com/modals/ChangeEmail.tsx:104 msgid "Change Your Email" -msgstr "Altere o Seu Email" +msgstr "Altere o Seu E-mail" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Chat" @@ -1245,14 +1295,14 @@ msgstr "Chat silenciado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Configurações do Chat" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Configurações do Chat" @@ -1277,7 +1327,7 @@ msgstr "Verificar minha situação" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Confira alguns usuários recomendados. Siga-os para ver usuários semelhantes." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Um código de login foi enviado para o seu e-mail. Insira-o aqui." @@ -1297,30 +1347,34 @@ msgstr "Verifique em sua caixa de entrada um e-mail com o código de confirmaç #~ msgid "Choose at least {0} more" #~ msgstr "Escolha pelo menos mais {0}" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Escolha os feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "Escolha para mim" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Escolha Pessoas" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Escolher Serviço" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Escolha os algoritmos que geram seus feeds customizados." #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:85 #~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "Escolha os algoritmos que fazem sentido para você com os feeds personalizados." +#~ msgstr "Escolha os algoritmos que fazem sentido para você com os feeds customizados." #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" @@ -1335,7 +1389,7 @@ msgstr "Selecionar esta cor como seu avatar" #~ msgid "Choose your main feeds" #~ msgstr "Escolha seus feeds principais" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Escolha sua senha" @@ -1347,16 +1401,15 @@ msgstr "Escolha sua senha" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Limpar todos os dados de armazenamento legados (reinicie em seguida)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Limpar todos os dados de armazenamento" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Limpar busca" @@ -1364,11 +1417,11 @@ msgstr "Limpar busca" #~ msgid "Clears all legacy storage data" #~ msgstr "Limpa todos os dados antigos" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Limpa todos os dados antigos" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "clique aqui" @@ -1392,15 +1445,15 @@ msgstr "Clique aqui para abrir o menu da tag {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clique aqui para abrir o menu da tag #{tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Clique para desabilitar as citações desta publicação." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Clique para habilitar as citações desta publicação." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Clique para tentar novamente a mensagem que falhou" @@ -1412,27 +1465,25 @@ msgstr "Clima e tempo" msgid "Clip 🐴 clop 🐴" msgstr "Tchic 🐴 tloc 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Fechar janela ativa" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Fechar alerta" @@ -1440,12 +1491,11 @@ msgstr "Fechar alerta" msgid "Close bottom drawer" msgstr "Fechar parte inferior" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Fechar janela" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Fechar janela de GIFs" @@ -1458,29 +1508,29 @@ msgid "Close image viewer" msgstr "Fechar visualizador de imagens" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Fechar janela" +#~ msgid "Close modal" +#~ msgstr "Fechar janela" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Fechar o painel de navegação" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Fechar esta janela" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Fecha barra de navegação inferior" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Fecha alerta de troca de senha" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Fecha o editor de post e descarta o rascunho" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Fecha o editor de post e descarta o rascunho" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1490,41 +1540,49 @@ msgstr "Fecha o visualizador de banner" msgid "Collapse list of users" msgstr "Recolher lista de usuários" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Fecha lista de usuários da notificação" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "Esquema de cor" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Comédia" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Completar e começar a usar sua conta" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Complete o captcha" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Escreva posts de até {MAX_GRAPHEME_LENGTH} caracteres" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Escrever resposta" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "Comprimindo..." @@ -1537,17 +1595,19 @@ msgstr "Escrever resposta" msgid "Configure content filtering setting for category: {name}" msgstr "Configure o filtro de conteúdo por categoria: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Configure no <0>painel de moderação." -#: src/components/Prompt.tsx:167 -#: src/components/Prompt.tsx:170 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Confirmar" @@ -1564,30 +1624,35 @@ msgstr "Confirmar configurações de idioma de conteúdo" msgid "Confirm delete account" msgstr "Confirmar a exclusão da conta" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Confirme sua idade:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Confirme sua data de nascimento" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Código de confirmação" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Contatar suporte" @@ -1599,12 +1664,12 @@ msgstr "Contatar suporte" msgid "Content Blocked" msgstr "Conteúdo bloqueado" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Filtros de conteúdo" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Idiomas do Conteúdo" @@ -1614,13 +1679,13 @@ msgid "Content Not Available" msgstr "Conteúdo Indisponível" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Aviso de Conteúdo" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Avisos de conteúdo" @@ -1628,12 +1693,12 @@ msgstr "Avisos de conteúdo" msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechá-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Continuar" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Continuar como {0} (já conectado)" @@ -1641,21 +1706,21 @@ msgstr "Continuar como {0} (já conectado)" msgid "Continue thread..." msgstr "Continuar o tópico..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" -msgstr "Continuar para o próximo passo" +msgstr "Continuar para a próxima etapa" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 #~ msgid "Continue to the next step" -#~ msgstr "Continuar para o próximo passo" +#~ msgstr "Continuar para a próxima etapa" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 #~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Continuar para o próximo passo sem seguir contas" +#~ msgstr "Continuar para a próxima etapa sem seguir contas" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Conversa apagada" @@ -1668,20 +1733,21 @@ msgstr "Culinária" msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Versão do aplicativo copiada" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Copiado" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Copiado!" @@ -1689,17 +1755,17 @@ msgstr "Copiado!" msgid "Copies app password" msgstr "Copia senha de aplicativo" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copiar" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Copiar {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Copiar código" @@ -1711,12 +1777,12 @@ msgstr "Copiar link" msgid "Copy Link" msgstr "Copiar Link" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Copiar link do post" @@ -1725,17 +1791,17 @@ msgstr "Copiar link do post" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" -msgstr "Copiar texto do post" +msgstr "Copiar texto da postagem" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Copiar QR code" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Política de Direitos Autorais" @@ -1747,11 +1813,11 @@ msgstr "Política de Direitos Autorais" msgid "Could not leave chat" msgstr "Não foi possível sair deste chat" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Não foi possível carregar a lista" @@ -1771,34 +1837,39 @@ msgstr "Não foi possível processar seu vídeo" #~ msgid "Could not unmute chat" #~ msgstr "Não foi possível dessilenciar este chat" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Criar" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Criar uma nova conta" +#~ msgid "Create a new account" +#~ msgstr "Criar uma nova conta" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Crie o QR code para um pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Crie um pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Crie um pacote inicial para mim" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "Criar conta" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Criar Conta" @@ -1807,11 +1878,11 @@ msgstr "Criar Conta" msgid "Create an account" msgstr "Criar conta" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "Criar um avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Crie outra" @@ -1820,7 +1891,7 @@ msgid "Create App Password" msgstr "Criar Senha de Aplicativo" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Criar uma nova conta" @@ -1832,7 +1903,7 @@ msgstr "Criar uma nova conta" msgid "Create report for {0}" msgstr "Criar denúncia para {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} criada" @@ -1841,46 +1912,42 @@ msgstr "{0} criada" #~ msgstr "Cria uma prévia com miniatura. A prévia faz um link para {url}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Cultura" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Customizado" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Domínio personalizado" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Feeds customizados feitos pela comunidade te proporcionam novas experiências e te ajudam a encontrar o conteúdo que você mais ama." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Configurar mídia de sites externos." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Personalize quem pode interagir com esta postagem." -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Modo escuro" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Tema escuro" @@ -1888,38 +1955,43 @@ msgstr "Tema escuro" #~ msgid "Dark Theme" #~ msgstr "Modo Escuro" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Data de nascimento" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Desativar conta" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Desativar minha conta" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Testar Moderação" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Painel de depuração" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "Padrão" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Excluir" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Excluir a conta" @@ -1931,16 +2003,16 @@ msgstr "Excluir a conta" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Excluir Conta <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Excluir senha de aplicativo" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Excluir senha de aplicativo?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Excluir registro da declaração de chat" @@ -1948,7 +2020,7 @@ msgstr "Excluir registro da declaração de chat" msgid "Delete for me" msgstr "Excluir para mim" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Excluir Lista" @@ -1964,33 +2036,33 @@ msgstr "Excluir mensagem para mim" msgid "Delete my account" msgstr "Excluir minha conta" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Excluir minha conta…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Excluir postagem" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Excluir pacote inicial" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Excluir pacote inicial?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Excluir esta lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Excluir esta postagem?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Excluído" @@ -1998,27 +2070,35 @@ msgstr "Excluído" msgid "Deleted post." msgstr "Postagem excluída." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Exclui o registro de declaração de chat" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Descrição" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Texto alternativo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Desanexar citação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "Desanexar postagem de citação?" @@ -2026,32 +2106,31 @@ msgstr "Desanexar postagem de citação?" msgid "Dialog: adjust who can interact with this post" msgstr "Diálogo: ajuste quem pode interagir com esta postagem" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Você gostaria de dizer alguma coisa?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Menos escuro" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "As mensagens diretas estão aqui!" +#~ msgid "Direct messages are here!" +#~ msgstr "As mensagens diretas estão aqui!" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "Desabilitar autoplay em GIFs" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "Desativar reprodução automática para vídeos e GIFs" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Desabilitar 2FA via e-mail" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Desabilitar feedback tátil" @@ -2059,7 +2138,7 @@ msgstr "Desabilitar feedback tátil" #~ msgid "Disable haptics" #~ msgstr "Desabilitar feedback tátil" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:382 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Desativar legendas" @@ -2070,22 +2149,27 @@ msgstr "Desativar legendas" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Desabilitado" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Desencorajar aplicativos a mostrar minha conta para usuários desautenticados" @@ -2096,21 +2180,21 @@ msgstr "Desencorajar aplicativos a mostrar minha conta para usuários desautenti #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" -msgstr "Descubra novos feeds" +msgstr "Descubra novos feeds customizados" #: src/view/screens/Search/Explore.tsx:389 msgid "Discover new feeds" msgstr "Descubra novos feeds" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Descubra Novos Feeds" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "Ocultar" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Ocultar" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Ocultar erro" @@ -2118,19 +2202,29 @@ msgstr "Ocultar erro" msgid "Dismiss getting started guide" msgstr "Ignorar guia de primeiros passos" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Exibir emblemas de texto alternativo maiores" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Nome de exibição" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Nome de Exibição" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Nome de Exibição" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Painel DNS" @@ -2138,6 +2232,14 @@ msgstr "Painel DNS" msgid "Do not apply this mute word to users you follow" msgstr "Não aplique esta palavra ocultada aos usuários que você segue" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Não inclui nudez." @@ -2146,38 +2248,37 @@ msgstr "Não inclui nudez." msgid "Doesn't begin or end with a hyphen" msgstr "Não começa ou termina com um hífen" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Domínio" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Domínio verificado!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Feito" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Feito" @@ -2186,20 +2287,24 @@ msgstr "Feito" msgid "Done{extraText}" msgstr "Feito{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "Toque duplo pra fechar o diálogo" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Baixe o Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Baixar arquivo CAR" #: src/components/dialogs/nuxs/TenMillion/index.tsx:686 -msgid "Download image" -msgstr "Baixar imagem" +#~ msgid "Download image" +#~ msgstr "Baixar imagem" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Solte para adicionar imagens" @@ -2211,39 +2316,43 @@ msgstr "Solte para adicionar imagens" msgid "Duration:" msgstr "Duração:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "ex. alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "ex. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "ex. Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "ex. alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "ex. Artista, amo cachorros, leitora ávida." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "ex. Artista, amo cachorros, leitora ávida." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Ex. nudez artística." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "ex. Perfis Legais" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "ex. Chatos" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "ex. Os perfis que eu mais gosto." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "ex. Perfis que enchem o saco." @@ -2251,58 +2360,59 @@ msgstr "ex. Perfis que enchem o saco." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada convite só funciona uma vez. Você receberá mais convites periodicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Editar" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Editar avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Editar Feeds" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Editar imagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Editar configurações de interação" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Editar detalhes da lista" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Editar Meus Feeds" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Editar meu perfil" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Editar meu perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Editar Pessoas" @@ -2311,13 +2421,15 @@ msgstr "Editar Pessoas" msgid "Edit post interaction settings" msgstr "Editar configurações de interação de postagem" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Editar perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Editar Perfil" @@ -2326,11 +2438,11 @@ msgstr "Editar Perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar Feeds Salvos" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Editar pacote inicial" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Editar lista de usuários" @@ -2338,20 +2450,20 @@ msgstr "Editar lista de usuários" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Editar seu nome" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Editar seu nome" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Editar sua descrição" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Editar sua descrição" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Editar pacote inicial" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Educação" @@ -2359,7 +2471,7 @@ msgstr "Educação" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "Escolha entre \"Todos\" ou \"Ninguém\"" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-mail" @@ -2368,11 +2480,11 @@ msgstr "E-mail" msgid "Email 2FA disabled" msgstr "2FA via e-mail desabilitado" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Endereço de e-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "E-mail Reenviado" @@ -2389,33 +2501,33 @@ msgstr "E-mail Atualizado" msgid "Email verified" msgstr "E-mail verificado" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "E-mail Verificado" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "E-mail:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Código HTML para incorporação" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" -msgstr "Incorporar post" +msgstr "Incorporar postagem" #: src/components/dialogs/Embed.tsx:101 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -msgstr "Incorpore este post no seu site. Basta copiar o trecho abaixo e colar no código HTML do seu site." +msgstr "Incorpore esta postagem no seu site. Basta copiar o trecho abaixo e colar no código HTML do seu site." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Habilitar somente {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Habilitar conteúdo adulto" @@ -2428,21 +2540,21 @@ msgstr "Habilitar conteúdo adulto" #~ msgid "Enable adult content in your feeds" #~ msgstr "Habilitar conteúdo adulto nos feeds" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Habilitar mídia externa" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Habilitar mídia para" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Habilitar notificações prioritárias" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:383 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Habilitar legendas" @@ -2450,17 +2562,17 @@ msgstr "Habilitar legendas" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que você segue." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Habilitar mídia somente para este site" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Habilitado" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Fim do feed" @@ -2472,7 +2584,7 @@ msgstr "Fim do feed" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "Fim da integração da sua janela. Não avance. Em vez disso, volte para mais opções ou pressione para pular." -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "Certifique-se de ter selecionado um idioma para cada arquivo de legenda." @@ -2480,7 +2592,7 @@ msgstr "Certifique-se de ter selecionado um idioma para cada arquivo de legenda. msgid "Enter a name for this App Password" msgstr "Insira um nome para esta Senha de Aplicativo" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Insira uma senha" @@ -2489,6 +2601,10 @@ msgstr "Insira uma senha" msgid "Enter a word or tag" msgstr "Digite uma palavra ou tag" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Insira o código de confirmação" @@ -2497,20 +2613,20 @@ msgstr "Insira o código de confirmação" msgid "Enter the code you received to change your password." msgstr "Digite o código recebido para alterar sua senha." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Digite o domínio que você deseja usar" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Digite o e-mail que você usou para criar a sua conta. Nós lhe enviaremos um \"código de redefinição\" para que você possa definir uma nova senha." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Insira seu aniversário" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Digite seu endereço de e-mail" @@ -2522,10 +2638,14 @@ msgstr "Digite o novo e-mail acima" msgid "Enter your new email address below." msgstr "Digite seu novo endereço de e-mail abaixo." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Digite seu nome de usuário e senha" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Não foi possível salvar o arquivo" @@ -2534,12 +2654,12 @@ msgstr "Não foi possível salvar o arquivo" msgid "Error receiving captcha response." msgstr "Não foi possível processar o captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Erro:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Todos" @@ -2551,10 +2671,8 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder esta postagem." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Todos" @@ -2574,7 +2692,7 @@ msgstr "Excluir usuário que você segue" msgid "Excludes users you follow" msgstr "Excluir usuário que você segue" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:400 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "Sair da tela cheia" @@ -2582,11 +2700,11 @@ msgstr "Sair da tela cheia" msgid "Exits account deletion process" msgstr "Sair do processo de deleção da conta" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Sair do processo de trocar usuário" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Sair do processo de cortar imagem" @@ -2606,12 +2724,16 @@ msgstr "Expandir texto alternativo" msgid "Expand list of users" msgstr "Expandir lista de usuário" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" -msgstr "Mostrar ou esconder o post a que você está respondendo" +msgstr "Mostrar ou esconder a postagem a que você está respondendo" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "Experimental: Quando essa preferência estiver habilitada, você receberá apenas notificações de resposta e citação de usuários que você segue. Continuaremos adicionando mais controles aqui ao longo do tempo" @@ -2621,7 +2743,7 @@ msgstr "Expirado" #: src/components/dialogs/MutedWords.tsx:502 msgid "Expires {0}" -msgstr "Expirada {0}" +msgstr "Expira {0}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." @@ -2631,32 +2753,32 @@ msgstr "Imagens explícitas ou potencialmente perturbadoras." msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Exportar meus dados" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Exportar Meus Dados" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Mídia Externa" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Mídias externas podem permitir que sites coletem informações sobre você e seu dispositivo. Nenhuma informação é enviada ou solicitada até que você pressione o botão de \"play\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Preferências de mídia externa" @@ -2665,12 +2787,12 @@ msgstr "Preferências de mídia externa" msgid "Failed to create app password." msgstr "Não foi possível criar senha de aplicativo." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Falha ao criar o pacote inicial" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Não foi possível criar a lista. Por favor tente novamente." @@ -2678,11 +2800,11 @@ msgstr "Não foi possível criar a lista. Por favor tente novamente." msgid "Failed to delete message" msgstr "Não foi possível excluir esta mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" -msgstr "Não foi possível excluir o post, por favor tente novamente." +msgstr "Não foi possível excluir a postagem, por favor tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Falha ao excluir o pacote inicial" @@ -2691,12 +2813,11 @@ msgstr "Falha ao excluir o pacote inicial" msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Não foi possível carregar os GIFs" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Não foi possível carregar mensagens antigas." @@ -2718,7 +2839,11 @@ msgstr "Falha ao carregar feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Falha ao carregar sugestões a seguir" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "Falha ao fixar postagem" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Não foi possível salvar a imagem: {0}" @@ -2726,7 +2851,7 @@ msgstr "Não foi possível salvar a imagem: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Falha ao salvar as preferências de notificação, tente novamente" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Falha ao enviar" @@ -2734,36 +2859,35 @@ msgstr "Falha ao enviar" #~ msgid "Failed to send message(s)." #~ msgstr "Não foi possível enviar sua mensagem." -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Falha ao enviar o recurso, tente novamente." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "Falha ao alternar o silenciamento do tópico, tente novamente" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Falha ao atualizar os feeds" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Falha ao atualizar as configurações" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "Falha ao carregar o vídeo" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Feed por {0}" @@ -2777,19 +2901,23 @@ msgid "Feed toggle" msgstr "Alternar Feed" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Comentários" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Feeds" @@ -2797,7 +2925,7 @@ msgstr "Feeds" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "Os feeds são criados por usuários para curadoria de conteúdo. Escolha alguns feeds que você acha interessantes." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de experiência em programação podem criar. <0/> para mais informações." @@ -2805,11 +2933,12 @@ msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de #~ msgid "Feeds can be topical as well!" #~ msgstr "Feeds podem ser de assuntos específicos também!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Feeds atualizados!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Conteúdo do arquivo" @@ -2821,7 +2950,7 @@ msgstr "Arquivo salvo com sucesso!" msgid "Filter from feeds" msgstr "Filtrar dos feeds" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Finalizando" @@ -2835,9 +2964,9 @@ msgstr "Encontre contas para seguir" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "Encontre mais feeds e contas para seguir na página Explorar." -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" -msgstr "Encontre posts e usuários no Bluesky" +msgstr "Encontre postagens e usuários no Bluesky" #: src/view/screens/Search/Search.tsx:589 #~ msgid "Find users on Bluesky" @@ -2851,15 +2980,15 @@ msgstr "Encontre posts e usuários no Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Procurando contas semelhantes..." -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Ajuste o conteúdo que você vê na sua tela inicial." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Ajuste as threads." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Finalizar" @@ -2871,25 +3000,25 @@ msgstr "Finalizar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Flexível" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Virar horizontalmente" +#~ msgid "Flip horizontal" +#~ msgstr "Virar horizontalmente" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Virar verticalmente" +#~ msgid "Flip vertically" +#~ msgstr "Virar verticalmente" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Seguir" @@ -2898,12 +3027,12 @@ msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Seguir {name}" @@ -2911,18 +3040,18 @@ msgstr "Seguir {name}" msgid "Follow 7 accounts" msgstr "Siga 7 contas" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Seguir Conta" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "Siga todos" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "Seguir De Volta" @@ -2937,7 +3066,7 @@ msgstr "Siga mais contas para se conectar aos seus interesses e construir sua re #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 #~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Siga algumas contas e continue para o próximo passo" +#~ msgstr "Siga algumas contas e continue para a próxima etapa" #: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 #~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." @@ -2967,7 +3096,7 @@ msgstr "Seguido por <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, e {2, plural, one {# other} other {# others}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Usuários seguidos" @@ -2983,49 +3112,49 @@ msgstr "seguiu você" msgid "followed you back" msgstr "seguiu você de volta" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que você conhece" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Seguidores que você conhece" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Seguindo" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Seguindo {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Configurações do feed principal" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Configurações do feed principal" @@ -3033,16 +3162,26 @@ msgstr "Configurações do feed principal" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "Seguir mostra as postagens mais recentes das pessoas que você segue." -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue você" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Segue Você" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "Fonte" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "Tamanho da fonte" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Comida" @@ -3054,20 +3193,25 @@ msgstr "Por motivos de segurança, precisamos enviar um código de confirmação msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por motivos de segurança, você não poderá ver esta senha novamente. Se você perder esta senha, terá que gerar uma nova." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "Para melhor experiência, nós recomendamos usar a fonte padrão." + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Para sempre" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Esqueci a Senha" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Esqueceu a senha?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Esqueceu?" @@ -3075,34 +3219,34 @@ msgstr "Esqueceu?" msgid "Frequently Posts Unwanted Content" msgstr "Frequentemente Posta Conteúdo Indesejado" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Por <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:401 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "Tela cheia" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galeria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Gere um pacote inicial" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Obter ajuda" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Começar" +#~ msgid "Get started" +#~ msgstr "Começar" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3117,7 +3261,7 @@ msgstr "Começando" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Dê uma cara nova pro seu perfil" @@ -3125,14 +3269,13 @@ msgstr "Dê uma cara nova pro seu perfil" msgid "Glaring violations of law or terms of service" msgstr "Violações flagrantes da lei ou dos termos de serviço" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Voltar" @@ -3140,10 +3283,10 @@ msgstr "Voltar" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Voltar" @@ -3151,24 +3294,24 @@ msgstr "Voltar" #~ msgid "Go back to previous screen" #~ msgstr "Voltar para a tela anterior" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" -msgstr "Voltar para o passo anterior" +msgstr "Voltar para a etapa anterior" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Voltar para a etapa anterior" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Voltar para a tela inicial" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Voltar para a tela inicial" @@ -3177,11 +3320,11 @@ msgstr "Voltar para a tela inicial" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Ir para @{queryMaybleHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Ir para a conversa com {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Próximo" @@ -3199,6 +3342,8 @@ msgid "Go to user's profile" msgstr "Ir para o perfil deste usuário" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Conteúdo Gráfico" @@ -3206,11 +3351,11 @@ msgstr "Conteúdo Gráfico" msgid "Half way there!" msgstr "Metade do caminho!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Usuário" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Feedback tátil" @@ -3218,24 +3363,24 @@ msgstr "Feedback tátil" msgid "Harassment, trolling, or intolerance" msgstr "Assédio, intolerância ou \"trollagem\"" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Precisa de ajuda?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "As pessoas não vão achar que você é um bot se você criar um avatar ou fazer upload de uma imagem." @@ -3255,22 +3400,22 @@ msgstr "As pessoas não vão achar que você é um bot se você criar um avatar msgid "Here is your app password." msgstr "Aqui está a sua senha de aplicativo." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Lista oculta" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Esconder" @@ -3278,38 +3423,38 @@ msgstr "Esconder" #: src/view/com/util/forms/PostDropdownBtn.tsx:390 #: src/view/com/util/forms/PostDropdownBtn.tsx:392 #~ msgid "Hide post" -#~ msgstr "Ocultar post" +#~ msgstr "Ocultar postagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Ocultar postagem para mim" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Ocultar resposta para todos" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Ocultar resposta para mim" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Esconder o conteúdo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" -msgstr "Ocultar este post?" +msgstr "Ocultar esta postagem?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "Ocultar esta resposta?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Ocultar lista de usuários" @@ -3333,7 +3478,7 @@ msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com problemas para encontrar este feed. Ele pode ter sido excluído." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, parece que estamos com problemas pra carregar isso. Veja mais detalhes abaixo. Se o problema continuar, por favor, entre em contato." @@ -3341,45 +3486,49 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar isso. Veja mais det msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar este serviço de moderação." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está esperando na fila. Volte em breve!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Página Inicial" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Host:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Provedor de hospedagem" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Como devemos abrir este link?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Eu tenho um código" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Eu tenho um código" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Eu tenho meu próprio domínio" @@ -3393,43 +3542,42 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo é longo, mostra o texto completo" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Se nenhum for selecionado, adequado para todas as idades." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Se nenhum for selecionado, adequado para todas as idades." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Se você ainda não é um adulto de acordo com as leis do seu país, seu responsável ou guardião legal deve ler estes Termos por você." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Se você deletar esta lista, você não poderá recuperá-la." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." -msgstr "Se você remover este post, você não poderá recuperá-la." +msgstr "Se você remover esta postagem, você não poderá recuperá-la." #: src/view/com/modals/ChangePassword.tsx:149 msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "Se você quiser alterar sua senha, enviaremos um código que para verificar sua identidade." +msgstr "Se você quiser alterar sua senha, enviaremos um código para verificar sua identidade." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Se você estiver tentando alterar seu endereço ou e-mail, faça isso antes de desativar." +msgstr "Se você estiver tentando alterar seu usuário ou e-mail, faça isso antes de desativar." #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" msgstr "Ilegal e Urgente" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Imagem" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Texto alternativo da imagem" +#~ msgid "Image alt text" +#~ msgstr "Texto alternativo da imagem" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:312 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "Imagem salva no rolo da câmera!" @@ -3445,7 +3593,7 @@ msgstr "Falsificação de identidade, desinformação ou alegações falsas" msgid "Inappropriate messages or explicit links" msgstr "Mensagens inapropriadas ou links explícitos" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Insira o código enviado para o seu e-mail para redefinir sua senha" @@ -3457,7 +3605,7 @@ msgstr "Insira o código de confirmação para excluir sua conta" msgid "Input name for app password" msgstr "Insira um nome para a senha de aplicativo" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Insira a nova senha" @@ -3465,7 +3613,7 @@ msgstr "Insira a nova senha" msgid "Input password for account deletion" msgstr "Insira a senha para excluir a conta" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Insira o código que você recebeu por e-mail" @@ -3473,15 +3621,15 @@ msgstr "Insira o código que você recebeu por e-mail" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Insira a senha da conta {identifier}" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Insira o usuário ou e-mail que você cadastrou" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Insira sua senha" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Insira seu provedor de hospedagem" @@ -3489,29 +3637,33 @@ msgstr "Insira seu provedor de hospedagem" msgid "Input your user handle" msgstr "Insira o usuário" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Interação limitada" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Apresentando Mensagens Diretas" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Apresentando Mensagens Diretas" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "Apresentando as novas configurações de fonte" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." -msgstr "Código de confirmação inválido." +msgstr "Código de confirmação da autenticação de dois fatores inválido." #: src/view/com/post-thread/PostThreadItem.tsx:264 msgid "Invalid or unsupported post record" -msgstr "Post inválido" +msgstr "Postagem inválida" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Credenciais inválidas" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "Código de Verificação Inválido" @@ -3519,7 +3671,7 @@ msgstr "Código de Verificação Inválido" msgid "Invite a Friend" msgstr "Convide um Amigo" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Convite" @@ -3547,30 +3699,39 @@ msgstr "Convide seus amigos para seguir seus feeds e pessoas favoritas" msgid "Invites, but personal" msgstr "Convites, mas pessoais" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "Parece que você pode ter inserido seu endereço de e-mail incorretamente. Você tem certeza que está correto?" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." -#~ msgstr "Mostra os posts de quem você segue conforme acontecem." +#~ msgstr "Mostra as postagens de quem você segue conforme acontecem." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "Não está correto" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "É só você por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "Job ID: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Carreiras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Crie uma conta no Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Participe da conversa" @@ -3579,11 +3740,11 @@ msgstr "Participe da conversa" #~ msgstr "Juntou-se {0}" #: src/components/dialogs/nuxs/TenMillion/index.tsx:559 -msgid "Joined on {joinedDate}" -msgstr "" +#~ msgid "Joined on {joinedDate}" +#~ msgstr "Juntou-se no dia {joinedDate}" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Jornalismo" @@ -3591,18 +3752,23 @@ msgstr "Jornalismo" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "rótulo aplicado neste {labelTarget}" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Rotulado pelo autor." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Rótulos" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rótulos são identificações aplicadas sobre perfis e conteúdos. Eles são utilizados para esconder, avisar e categorizar o conteúdo da rede." @@ -3623,48 +3789,58 @@ msgstr "Rótulos sobre seu conteúdo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" -msgstr "Configuração de Idioma" +msgstr "Configuração de idioma" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Configurações de Idiomas" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Idiomas" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "Maior" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Mais recentes" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Saiba Mais" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" -msgstr "Saiba mais sobre Bluesky" +msgstr "Saiba mais sobre o Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "Saiba mais sobre a auto-hospedagem do seu Servidor de Dados Pessoais." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Saiba mais sobre a decisão de moderação aplicada neste conteúdo." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Saiba mais." @@ -3685,7 +3861,7 @@ msgstr "Sair do chat" msgid "Leave conversation" msgstr "Sair desta conversa" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Deixe todos desmarcados para ver qualquer idioma." @@ -3701,21 +3877,20 @@ msgstr "na sua frente." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "Armazenamento limpo, você precisa reiniciar o app agora." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Deixe-me escolher" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Vamos redefinir sua senha!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Vamos lá!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Claro" @@ -3730,23 +3905,23 @@ msgstr "Curtir 10 postagens" #: src/state/shell/progress-guide.tsx:157 #: src/state/shell/progress-guide.tsx:162 msgid "Like 10 posts to train the Discover feed" -msgstr "Curtir 10 posts para treinar o feed de Descobertas" +msgstr "Curtir 10 postagens para treinar o feed de Descobertas" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Curtir este feed" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Curtido por" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Curtido Por" @@ -3766,38 +3941,38 @@ msgstr "Curtido Por" #: src/view/com/notifications/FeedItem.tsx:211 msgid "liked your custom feed" -msgstr "curtiram seu feed" +msgstr "curtiram seu feed customizado" #: src/view/com/notifications/FeedItem.tsx:178 msgid "liked your post" -msgstr "curtiu seu post" +msgstr "curtiu sua postagem" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Curtidas" #: src/view/com/post-thread/PostThreadItem.tsx:204 msgid "Likes on this post" -msgstr "Curtidas neste post" +msgstr "Curtidas nesta postagem" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Lista" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Avatar da lista" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Lista bloqueada" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Lista excluída" @@ -3805,32 +3980,31 @@ msgstr "Lista excluída" msgid "List has been hidden" msgstr "Lista foi ocultada" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Lista Oculta" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Lista silenciada" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Nome da lista" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Lista desbloqueada" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listas" @@ -3850,22 +4024,22 @@ msgstr "Carregar mais sugestões de feeds" msgid "Load more suggested follows" msgstr "Carregar mais sugestões de seguidores" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Carregar novas notificações" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" -msgstr "Carregar novos posts" +msgstr "Carregar novas postagens" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Carregando..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Registros" @@ -3881,19 +4055,27 @@ msgstr "Entre ou registre-se" msgid "Log out" msgstr "Sair" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Visibilidade do seu perfil" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Fazer login em uma conta que não está listada" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Segure para abrir o menu da tag #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Tem esse formato: XXXXX-XXXXX" @@ -3907,13 +4089,13 @@ msgstr "Parece que você desafixou todos os seus feeds, mas não esquenta, dá u #: src/screens/Feeds/NoFollowingFeed.tsx:38 #~ msgid "Looks like you're missing a following feed." -#~ msgstr "Parece que você está sem seu feed principal." +#~ msgstr "Parece que você não está seguindo nenhum feed." #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Parece que está faltando um feed a seguir. <0>Clique aqui para adicionar um." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Faça um para mim " @@ -3930,30 +4112,35 @@ msgstr "Gerencie suas palavras/tags silenciadas" msgid "Mark as read" msgstr "Marcar como lida" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Mídia" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "usuários mencionados" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Usuários mencionados" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menu" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Mensagem {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Mensagem excluída" @@ -3961,23 +4148,23 @@ msgstr "Mensagem excluída" msgid "Message from server: {0}" msgstr "Mensagem do servidor: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Caixa de texto da mensagem" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Mensagem longa demais" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Configurações das mensagens" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Mensagens" @@ -3994,63 +4181,63 @@ msgid "Misleading Post" msgstr "Postagem Enganosa" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Modo" +#~ msgid "Mode" +#~ msgstr "Modo" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderação" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Detalhes da moderação" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Lista de moderação por {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Lista de moderação por <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Lista de moderação por você" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Lista de moderação criada" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Lista de moderação criada" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "configurações de Moderação" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Moderação" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Moderação" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Ferramentas de moderação" @@ -4059,7 +4246,7 @@ msgstr "Ferramentas de moderação" msgid "Moderator has chosen to set a general warning on the content." msgstr "O moderador escolheu um aviso geral neste conteúdo." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Mais" @@ -4067,23 +4254,24 @@ msgstr "Mais" msgid "More feeds" msgstr "Mais feeds" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Mais opções" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Filmes" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Música" -#: src/components/TagMenu/index.tsx:263 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "Silenciar" @@ -4097,18 +4285,18 @@ msgstr "Silenciar" msgid "Mute {truncatedTag}" msgstr "Silenciar {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Silenciar Conta" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Silenciar contas" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" -msgstr "Silenciar posts com {displayTag}" +msgstr "Silenciar postagens com {displayTag}" #: src/components/dms/ConvoMenu.tsx:172 #: src/components/dms/ConvoMenu.tsx:178 @@ -4127,7 +4315,7 @@ msgstr "Silenciar conversa" msgid "Mute in:" msgstr "Silenciar em:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Silenciar lista" @@ -4136,7 +4324,7 @@ msgstr "Silenciar lista" #~ msgid "Mute notifications" #~ msgstr "Silenciar notificações" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Silenciar estas contas?" @@ -4154,23 +4342,23 @@ msgstr "Silencie esta palavra por 7 dias" #: src/components/dialogs/MutedWords.tsx:258 msgid "Mute this word in post text and tags" -msgstr "Silenciar esta palavra no conteúdo de um post e tags" +msgstr "Silenciar esta palavra nas postagens e tags" #: src/components/dialogs/MutedWords.tsx:274 msgid "Mute this word in tags only" -msgstr "Silenciar esta palavra apenas nas tags de um post" +msgstr "Silenciar esta palavra apenas nas tags de uma postagem" #: src/components/dialogs/MutedWords.tsx:170 msgid "Mute this word until you unmute it" -msgstr "Oculte esta palavra até que você a reative" +msgstr "Silenciar esta palavra até que você a reative" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Silenciar thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Silenciar palavras/tags" @@ -4178,16 +4366,16 @@ msgstr "Silenciar palavras/tags" #~ msgid "Muted" #~ msgstr "Silenciada" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Contas Silenciadas" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Contas silenciadas não aparecem no seu feed ou nas suas notificações. Suas contas silenciadas são completamente privadas." @@ -4195,41 +4383,41 @@ msgstr "Contas silenciadas não aparecem no seu feed ou nas suas notificações. msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Palavras/tags silenciadas" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas você não verá postagens ou receber notificações delas." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Meu Aniversário" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Meus Feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Meu Perfil" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Meus feeds salvos" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Meus Feeds Salvos" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Nome" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Nome é obrigatório" @@ -4241,28 +4429,32 @@ msgid "Name or Description Violates Community Standards" msgstr "Nome ou Descrição Viola os Padrões da Comunidade" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Natureza" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "Navegar para {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Navegue até o pacote inicial" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Navegue até o pacote inicial" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navega para próxima tela" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Navega para seu perfil" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Precisa denunciar uma violação de copyright?" @@ -4272,34 +4464,38 @@ msgstr "Precisa denunciar uma violação de copyright?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Nunca perca o acesso aos seus seguidores e dados." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Nunca perca o acesso aos seus seguidores ou dados." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Deixa pra lá, crie um usuário pra mim" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Novo" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Novo" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" -msgstr "Nova conversa" +msgstr "Novo chat" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "Novas configurações de fonte ✨" #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Novas mensagens" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Nova lista de moderação" @@ -4311,22 +4507,22 @@ msgstr "Nova senha" msgid "New Password" msgstr "Nova Senha" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Postar" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Postar" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Postar" @@ -4335,30 +4531,30 @@ msgstr "Postar" msgid "New user info dialog" msgstr "Novo diálogo de informações do usuário" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Nova lista de usuários" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Notícias" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4373,40 +4569,39 @@ msgstr "Próximo" msgid "Next image" msgstr "Próxima imagem" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Não" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Sem descrição" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Não tenho painel de DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Nenhum GIF em destaque encontrado." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Nenhum feed encontrado. Tente pesquisar por outra coisa." #: src/components/LikedByList.tsx:78 #: src/view/com/post-thread/PostLikedBy.tsx:85 msgid "No likes yet" -msgstr "" +msgstr "Sem curtidas ainda" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" @@ -4414,11 +4609,11 @@ msgstr "Você não está mais seguindo {0}" msgid "No longer than 253 characters" msgstr "No máximo 253 caracteres" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Nenhuma mensagem ainda" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Não há mais conversas para mostrar" @@ -4426,10 +4621,8 @@ msgstr "Não há mais conversas para mostrar" msgid "No notifications yet!" msgstr "Nenhuma notificação!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Ninguém" @@ -4437,24 +4630,24 @@ msgstr "Ninguém" msgid "No one but the author can quote this post." msgstr "Ninguém além do autor pode citar esta postagem." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Nenhuma postagem ainda." #: src/view/com/post-thread/PostQuotes.tsx:106 msgid "No quotes yet" -msgstr "" +msgstr "Sem citações ainda" #: src/view/com/post-thread/PostRepostedBy.tsx:78 msgid "No reposts yet" -msgstr "" +msgstr "Sem repostagens ainda" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Nenhum resultado" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Nenhum resultados" @@ -4462,19 +4655,18 @@ msgstr "Nenhum resultados" msgid "No results found" msgstr "Nenhum resultado encontrado" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Nenhum resultado encontrado para {query}" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Nenhum resultado encontrado para \"{search}\"." @@ -4482,12 +4674,12 @@ msgstr "Nenhum resultado encontrado para \"{search}\"." #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "Nenhum resultado encontrado para \"{searchText}\"." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Não, obrigado" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Ninguém" @@ -4496,20 +4688,20 @@ msgstr "Ninguém" #~ msgstr "Ninguém pode responder" #: src/components/LikedByList.tsx:80 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikesDialog.tsx:97 #: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ninguém curtiu isso ainda. Você pode ser o primeiro!" #: src/view/com/post-thread/PostQuotes.tsx:108 msgid "Nobody has quoted this yet. Maybe you should be the first!" -msgstr "" +msgstr "Ninguém citou isso ainda. Talvez você devesse ser o primeiro!" #: src/view/com/post-thread/PostRepostedBy.tsx:80 msgid "Nobody has reposted this yet. Maybe you should be the first!" -msgstr "" +msgstr "Ninguém repostou isso ainda. Talvez você devesse ser o primeiro!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Ninguém foi encontrado. Tente procurar por outra pessoa." @@ -4521,8 +4713,8 @@ msgstr "Nudez não-erótica" #~ msgid "Not Applicable." #~ msgstr "Não Aplicável." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Não encontrado" @@ -4531,49 +4723,48 @@ msgstr "Não encontrado" msgid "Not right now" msgstr "Agora não" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limita somente a visibilidade do seu conteúdo no site e aplicativo do Bluesky, e outros aplicativos podem não respeitar esta configuração. Seu conteúdo ainda poderá ser exibido para usuários não autenticados por outros aplicativos e sites." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Não há nada aqui" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Filtros de notificação" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Configurações de notificação" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Configurações de notificação" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Sons de notificação" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Sons de Notificação" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Notificações" @@ -4581,17 +4772,18 @@ msgstr "Notificações" msgid "now" msgstr "agora" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Agora" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Nudez" #: src/lib/moderation/useReportOptions.ts:78 msgid "Nudity or adult content not labeled as such" -msgstr "Nudez ou pornografia sem aviso aplicado" +msgstr "Nudez ou conteúdo adulto sem rótulo aplicado" #: src/screens/Signup/index.tsx:145 #~ msgid "of" @@ -4601,37 +4793,36 @@ msgstr "Nudez ou pornografia sem aviso aplicado" msgid "Off" msgstr "Desligado" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Opa!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Opa! Algo deu errado." #: src/components/dialogs/nuxs/TenMillion/index.tsx:224 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "Ah, não! Não conseguimos gerar uma imagem para você compartilhar. Fique tranquilo, estamos felizes que você esteja aqui 🦋" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "Ah, não! Não conseguimos gerar uma imagem para você compartilhar. Fique tranquilo, estamos felizes que você esteja aqui 🦋" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Ok" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Respostas mais antigas primeiro" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "no<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Resetar tutoriais" @@ -4639,11 +4830,11 @@ msgstr "Resetar tutoriais" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "Etapa do tour de integração {0}: {1}" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Apenas imagens .jpg ou .png são permitidas" @@ -4659,6 +4850,10 @@ msgstr "Apenas {0} pode responder." msgid "Only contains letters, numbers, and hyphens" msgstr "Contém apenas letras, números e hífens" +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "Somente arquivos WebVTT (.vtt) são suportados" @@ -4668,42 +4863,46 @@ msgid "Oops, something went wrong!" msgstr "Opa, algo deu errado!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Opa!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Abrir" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Abra o menu de atalho perfil de {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "Abrir criador de avatar" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Abrir opções de conversa" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Abrir seletor de emojis" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Abrir opções do feed" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Abrir links no navegador interno" @@ -4711,28 +4910,28 @@ msgstr "Abrir links no navegador interno" msgid "Open message options" msgstr "Abrir opções de mensagem" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Abrir opções de palavras/tags silenciadas" -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:101 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 msgid "Open navigation" msgstr "Abrir navegação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" -msgstr "Abrir opções do post" +msgstr "Abrir opções da postagem" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Abra o menu do pacote inicial" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Abre o storybook" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Abrir registros do sistema" @@ -4740,15 +4939,19 @@ msgstr "Abrir registros do sistema" msgid "Opens {numItems} options" msgstr "Abre {numItems} opções" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "Abre uma caixa de diálogo para escolher quem pode responder a este tópico" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Abre as configurações de acessibilidade" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Abre detalhes adicionais para um registro de depuração" @@ -4756,41 +4959,41 @@ msgstr "Abre detalhes adicionais para um registro de depuração" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Abre a lista de usuários nesta notificação" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Abre as configurações de aparência" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Abre a câmera do dispositivo" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Abre as configurações de chat" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" -msgstr "Abre o editor de post" +msgstr "Abre o editor de postagem" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Abre definições de idioma configuráveis" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Abre a galeria de fotos do dispositivo" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Abre as configurações de anexos externos" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Abre o fluxo de criação de conta do Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Abre o fluxo de entrar na sua conta do Bluesky" @@ -4802,39 +5005,39 @@ msgstr "Abre a janela de seleção de GIFs" msgid "Opens list of invite codes" msgstr "Abre a lista de códigos de convite" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Abre janela para confirmação da desativação da conta" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" -msgstr "Abre modal de confirmar a exclusão da conta. Requer código enviado por email" +msgstr "Abre modal de confirmar a exclusão da conta. Requer código enviado por e-mail" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Abre modal para troca da sua senha do Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Abre modal para troca do seu usuário do Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Abre modal para baixar os dados da sua conta do Bluesky" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" -msgstr "Abre modal para verificação de email" +msgstr "Abre modal para verificação de e-mail" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Abre modal para usar o domínio personalizado" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Abre configurações de moderação" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Abre o formulário de redefinição de senha" @@ -4843,15 +5046,15 @@ msgstr "Abre o formulário de redefinição de senha" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Abre a tela para editar feeds salvos" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Abre a tela com todos os feeds salvos" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Abre as configurações de senha do aplicativo" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Abre as preferências do feed inicial" @@ -4863,25 +5066,25 @@ msgstr "Abre o link" #~ msgid "Opens the message settings page" #~ msgstr "Abre a tela de configurações do chat" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Abre a página do storybook" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Abre a página de log do sistema" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Abre as preferências de threads" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Abre este perfil" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Abre seletor de vídeos" @@ -4889,8 +5092,8 @@ msgstr "Abre seletor de vídeos" msgid "Option {0} of {numItems}" msgstr "Opção {0} de {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "Se quiser adicionar mais informações, digite abaixo:" @@ -4898,7 +5101,7 @@ msgstr "Se quiser adicionar mais informações, digite abaixo:" msgid "Options:" msgstr "Opções:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Ou combine estas opções:" @@ -4911,14 +5114,15 @@ msgid "Or, log into one of your other accounts." msgstr "Ou faça login em uma de suas outras contas." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Outro" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Outra conta" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Outras contas" @@ -4926,21 +5130,21 @@ msgstr "Outras contas" msgid "Other..." msgstr "Outro..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu acesso aos chats no Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Página não encontrada" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Página Não Encontrada" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4950,42 +5154,42 @@ msgstr "Senha" msgid "Password Changed" msgstr "Senha Atualizada" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Senha atualizada" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Senha atualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Pausar" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Pausar vídeo" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "A permissão de galeria é obrigatória." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "A permissão de galeria foi recusada. Por favor, habilite-a nas configurações do dispositivo." @@ -4994,42 +5198,51 @@ msgid "Person toggle" msgstr "Alternar pessoa" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Pets" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Fotografia" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Fixe no seu perfil" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "Fixado" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Feeds Fixados" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "Fixado em seus feeds" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Tocar" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Reproduzir {0}" @@ -5038,21 +5251,21 @@ msgstr "Reproduzir {0}" #~ msgid "Play notification sounds" #~ msgstr "Reproduzir sons de notificação" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Tocar ou pausar o GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Reproduzir vídeo" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Reproduzir Vídeo" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Reproduz o GIF" @@ -5061,7 +5274,7 @@ msgid "Please choose your handle." msgstr "Por favor, escolha seu usuário." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Por favor, escolha sua senha." @@ -5086,11 +5299,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, insira uma palavra, tag ou frase para silenciar" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Por favor, digite o seu e-mail." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Por favor, insira seu código de convite." @@ -5098,16 +5311,16 @@ msgstr "Por favor, insira seu código de convite." msgid "Please enter your password as well:" msgstr "Por favor, digite sua senha também:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Por favor, explique por que você acha que este rótulo foi aplicado incorrentamente por {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explique por que você acha que seus chats foram desativados incorretamente" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Por favor entre como @{0}" @@ -5116,20 +5329,21 @@ msgid "Please Verify Your Email" msgstr "Por favor, verifique seu e-mail" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Aguarde até que a prévia de link termine de carregar" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Aguarde até que a prévia de link termine de carregar" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Política" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Postar" @@ -5143,17 +5357,21 @@ msgstr "Postar" msgid "Post by {0}" msgstr "Postado por {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Post por @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Postagem excluída" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Postagem oculta" @@ -5168,15 +5386,15 @@ msgstr "Postagem Escondida por Palavra Silenciada" msgid "Post Hidden by You" msgstr "Postagem Escondida por Você" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Configurações de interação de postagem" #: src/view/com/composer/select-language/SelectLangBtn.tsx:88 msgid "Post language" -msgstr "Idioma do post" +msgstr "Idioma da postagem" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Idiomas da Postagem" @@ -5185,12 +5403,20 @@ msgstr "Idiomas da Postagem" msgid "Post not found" msgstr "Postagem não encontrada" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Postagem fixada" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Postagem desafixada" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "postagens" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Postagens" @@ -5214,7 +5440,7 @@ msgstr "Link Potencialmente Enganoso" msgid "Preference saved" msgstr "Preferência salva" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Pressione para tentar reconectar" @@ -5224,8 +5450,8 @@ msgstr "Trocar de provedor de hospedagem" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Tentar novamente" @@ -5242,79 +5468,83 @@ msgstr "Pressione para ver os seguidores desta conta que você também segue" msgid "Previous image" msgstr "Imagem anterior" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Idioma Principal" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Priorizar seus Seguidores" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Notificações prioritárias" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidade" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Política de Privacidade" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Converse em particular com outros usuários." +#~ msgid "Privately chat with other users." +#~ msgstr "Converse em particular com outros usuários." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Processando..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Perfil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Perfil atualizado" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Proteja a sua conta verificando o seu e-mail." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Público" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Listas públicas e compartilháveis para silenciar ou bloquear usuários em massa." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Listas públicas e compartilháveis que geram feeds." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Publicar post" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Publicar postagem" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Publicar resposta" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Publicar resposta" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5332,49 +5562,49 @@ msgstr "QR code salvo no rolo da sua câmera!" #~ msgid "Quick tip" #~ msgstr "Dica rápida" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" -msgstr "Citar post" +msgstr "Citar postagem" #: src/view/com/modals/Repost.tsx:66 #~ msgctxt "action" #~ msgid "Quote post" -#~ msgstr "Citar post" +#~ msgstr "Citar postagem" #: src/view/com/modals/Repost.tsx:71 #~ msgctxt "action" #~ msgid "Quote Post" #~ msgstr "Citar Postagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "A postagem de citação foi anexada novamente" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "A postagem de citação foi desanexada com sucesso" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" -msgstr "Postagens de citações desabilitadas" +msgstr "Citações desabilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" -msgstr "Postagens de citações habilitadas" +msgstr "Citações habilitadas" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Configurações de citações" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Citações" @@ -5382,16 +5612,16 @@ msgstr "Citações" msgid "Quotes of this post" msgstr "Citações desta postagem" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatório" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Índices" +#~ msgid "Ratios" +#~ msgstr "Índices" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Reanexar citação" @@ -5399,19 +5629,21 @@ msgstr "Reanexar citação" msgid "Reactivate your account" msgstr "Reative sua conta" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Leia o blog Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Leia a Política de Privacidade do Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviço do Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Motivo:" @@ -5419,7 +5651,7 @@ msgstr "Motivo:" #~ msgid "Reason: {0}" #~ msgstr "Motivo: {0}" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Buscas Recentes" @@ -5431,26 +5663,25 @@ msgstr "Buscas Recentes" #~ msgid "Recommended Users" #~ msgstr "Usuários Recomendados" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Reconectar" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Atualizar notificações" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Recarregar conversas" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5464,11 +5695,11 @@ msgstr "Remover {displayName} do pacote inicial" msgid "Remove account" msgstr "Remover conta" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "Remover anexo" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Remover avatar" @@ -5476,7 +5707,7 @@ msgstr "Remover avatar" msgid "Remove Banner" msgstr "Remover banner" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Remover incorporação" @@ -5492,13 +5723,14 @@ msgstr "Remover feed?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Remover dos meus feeds?" @@ -5511,7 +5743,7 @@ msgstr "Remover do acesso rápido?" msgid "Remove from saved feeds" msgstr "Remover dos feeds salvos" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Remover imagem" @@ -5523,24 +5755,24 @@ msgstr "Remover imagem" msgid "Remove mute word from your list" msgstr "Remover palavra silenciada da lista" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Remover perfil" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Remover perfil do histórico de pesquisa" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Remover citação" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" -msgstr "Desfazer repost" +msgstr "Desfazer repostagem" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "Remover arquivo de legenda" @@ -5548,16 +5780,16 @@ msgstr "Remover arquivo de legenda" msgid "Remove this feed from your saved feeds" msgstr "Remover este feed dos feeds salvos" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Removido pelo autor" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Removido por você" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Removido da lista" @@ -5571,8 +5803,8 @@ msgid "Removed from saved feeds" msgstr "Removido dos feeds salvos" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Removido dos feeds salvos" @@ -5580,13 +5812,13 @@ msgstr "Removido dos feeds salvos" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Remover miniatura de {0}" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" -msgstr "Remove o post citado" +msgstr "Remove a postagem citada" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "Remove o anexo" +#~ msgid "Removes the attachment" +#~ msgstr "Remove o anexo" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5597,7 +5829,7 @@ msgstr "Remove o anexo" msgid "Replace with Discover" msgstr "Trocar pelo Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Respostas" @@ -5617,7 +5849,7 @@ msgstr "Respostas para esta postagem estão desativadas." #~ msgid "Replies to this thread are disabled" #~ msgstr "Respostas para esta thread estão desativadas" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -5634,13 +5866,13 @@ msgstr "Resposta Oculta pelo Autor da Thread" #: src/components/moderation/ModerationDetailsDialog.tsx:114 #: src/lib/moderation/useModerationCauseDescription.ts:122 msgid "Reply Hidden by You" -msgstr "Responder Oculto por Você" +msgstr "Resposta ocultada por você" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "Configurações de resposta" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "Configurações de resposta são escolhidas pelo autor da thread" @@ -5650,33 +5882,33 @@ msgstr "Configurações de resposta são escolhidas pelo autor da thread" #~ msgid "Reply to <0/>" #~ msgstr "Responder <0/>" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "Responder a uma postagem bloqueada" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" -msgstr "Responder a uma postagem" +msgstr "Responder à uma postagem" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Responder para você" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "Visibilidade da resposta atualizada" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "Resposta foi ocultada com sucesso" @@ -5691,8 +5923,8 @@ msgstr "Denunciar" #~ msgid "Report account" #~ msgstr "Denunciar conta" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Denunciar Conta" @@ -5702,16 +5934,16 @@ msgstr "Denunciar Conta" msgid "Report conversation" msgstr "Denunciar conversa" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Janela de denúncia" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Denunciar feed" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Denunciar Lista" @@ -5719,13 +5951,13 @@ msgstr "Denunciar Lista" msgid "Report message" msgstr "Denunciar mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" -msgstr "Denunciar post" +msgstr "Denunciar postagem" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Denunciar pacote inicial" @@ -5741,15 +5973,15 @@ msgstr "Denunciar este feed" msgid "Report this list" msgstr "Denunciar esta lista" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "Denunciar esta mensagem" #: src/components/ReportDialog/SelectReportOptionView.tsx:50 msgid "Report this post" -msgstr "Denunciar este post" +msgstr "Denunciar esta postagem" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" @@ -5759,9 +5991,9 @@ msgstr "Denunciar este pacote inicial" msgid "Report this user" msgstr "Denunciar este usuário" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Repostar" @@ -5771,19 +6003,19 @@ msgstr "Repostar" msgid "Repost" msgstr "Repostar" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" -msgstr "Repostar ou citar um post" +msgstr "Repostar ou citar uma postagem" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Repostado Por" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "Repostado por {0}" @@ -5791,12 +6023,12 @@ msgstr "Repostado por {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repostado por <0/>" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Repostado por <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "Repostado por você" @@ -5806,7 +6038,7 @@ msgstr "repostou seu post" #: src/view/com/post-thread/PostThreadItem.tsx:209 msgid "Reposts of this post" -msgstr "Reposts" +msgstr "Repostagens" #: src/view/com/modals/ChangeEmail.tsx:176 #: src/view/com/modals/ChangeEmail.tsx:178 @@ -5818,7 +6050,7 @@ msgstr "Solicitar Alteração" msgid "Request Code" msgstr "Solicitar Código" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de postar" @@ -5826,20 +6058,26 @@ msgstr "Exigir texto alternativo antes de postar" msgid "Require email code to log into your account" msgstr "Torna obrigatório um código de verificação por e-mail ao entrar nesta conta" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Obrigatório para este provedor" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Obrigatório na sua região" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Reenviar e-mail" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "Reenviar E-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "Reenviar E-mail de Verificação" @@ -5851,29 +6089,29 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Redefinir tutoriais" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Redefinir senha" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Redefinir configurações" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Redefine tutoriais" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Redefine as configurações" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Tenta entrar novamente" @@ -5882,16 +6120,16 @@ msgstr "Tenta entrar novamente" msgid "Retries the last action, which errored out" msgstr "Tenta a última ação, que deu erro" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5905,51 +6143,62 @@ msgstr "Tente novamente" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Voltar para página anterior" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Voltar para a tela inicial" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Voltar para página anterior" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Salvar" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Salvar" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Salvar texto alternativo" +#~ msgid "Save alt text" +#~ msgstr "Salvar texto alternativo" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Salvar data de nascimento" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Salvar Alterações" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Salvar Alterações" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Salvar usuário" @@ -5958,24 +6207,24 @@ msgstr "Salvar usuário" msgid "Save image" msgstr "Salvar imagem" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Salvar corte de imagem" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Salvar QR code" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Feeds Salvos" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "Imagem salva na galeria." @@ -5983,71 +6232,68 @@ msgstr "Imagem salva na galeria." #~ msgid "Saved to your camera roll." #~ msgstr "Imagem salva na galeria." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Salva todas as alterações" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Salva todas as alterações" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Salva mudança de usuário para {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Salva o corte da imagem" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Diga olá!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Ciência" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Ir para o topo" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Buscar" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Pesquisar por \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Pesquisar por \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Pesquisar por posts de @{authorHandle} com a tag {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Pesquisar por postagens de @{authorHandle} com a tag {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Pesquisar por posts com a tag {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Pesquisar por postagens com a tag {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Procure por feeds que você queira sugerir para outros." @@ -6059,42 +6305,40 @@ msgstr "Procure por feeds que você queira sugerir para outros." msgid "Search for users" msgstr "Buscar usuários" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Pesquisar por GIFs" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Pesquisar por usuários" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Pesquisar via Tenor" #: src/view/com/modals/ChangeEmail.tsx:105 msgid "Security Step Required" -msgstr "Passo de Segurança Necessário" +msgstr "Etapa de Segurança Necessária" #: src/components/TagMenu/index.web.tsx:77 msgid "See {truncatedTag} posts" -msgstr "Ver posts com {truncatedTag}" +msgstr "Ver postagens com {truncatedTag}" #: src/components/TagMenu/index.web.tsx:94 msgid "See {truncatedTag} posts by user" -msgstr "Ver posts com {truncatedTag} deste usuário" +msgstr "Ver postagens com {truncatedTag} deste usuário" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" -msgstr "Ver posts com <0>{displayTag}" +msgstr "Ver postagens com <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" -msgstr "Ver posts com <0>{displayTag} deste usuário" +msgstr "Ver postagens com <0>{displayTag} deste usuário" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Veja empregos na Bluesky" @@ -6103,7 +6347,7 @@ msgstr "Veja empregos na Bluesky" #~ msgid "See profile" #~ msgstr "Ver perfil" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Veja o guia" @@ -6123,7 +6367,7 @@ msgstr "Selecionar {item}" msgid "Select a color" msgstr "Selecione uma cor" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Selecione uma conta" @@ -6135,7 +6379,7 @@ msgstr "Selecione um avatar" msgid "Select an emoji" msgstr "Selecione um emoji" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Selecionar de uma conta existente" @@ -6143,7 +6387,7 @@ msgstr "Selecionar de uma conta existente" msgid "Select GIF" msgstr "Selecionar GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" @@ -6151,15 +6395,15 @@ msgstr "Selecionar GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "Selecione por quanto tempo essa palavra deve ser silenciada." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "Selecione o idioma..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Selecionar idiomas" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Selecionar moderador" @@ -6179,11 +6423,11 @@ msgstr "Selecione o arquivo de legenda (.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o {emojiName} emoji como avatar" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Selecione o(s) serviço(s) de moderação para reportar" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Selecione o serviço que hospeda seus dados." @@ -6191,7 +6435,7 @@ msgstr "Selecione o serviço que hospeda seus dados." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Selecione feeds de assuntos para seguir" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Selecione o vídeo" @@ -6203,23 +6447,23 @@ msgstr "Selecione a qual conteúdo esta palavra silenciada deve ser aplicada." #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Selecione o que você quer (ou não) ver, e cuidaremos do resto." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Selecione quais idiomas você deseja ver nos seus feeds. Se nenhum for selecionado, todos os idiomas serão exibidos." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Selecione o idioma do seu aplicativo" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Selecione sua data de nascimento" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Selecione seus interesses" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Selecione seu idioma preferido para as traduções no seu feed." @@ -6235,6 +6479,14 @@ msgstr "Selecione seu idioma preferido para as traduções no seu feed." msgid "Send a neat website!" msgstr "Envie um site bacana!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6249,37 +6501,37 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Enviar comentários" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Enviar mensagem" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Enviar postagem para..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Denunciar" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Denunciar via {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "Enviar por mensagem direta" @@ -6287,35 +6539,35 @@ msgstr "Enviar por mensagem direta" msgid "Sends email with confirmation code for account deletion" msgstr "Envia o e-mail com o código de confirmação para excluir a conta" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "URL do servidor" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Definir data de nascimento" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Definir uma nova senha" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." -msgstr "Defina esta configuração como \"Não\" para ocultar todas as citações do seu feed. Reposts ainda serão visíveis." +msgstr "Defina esta configuração como \"Não\" para ocultar todas as citações do seu feed. Repostagens ainda serão visíveis." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Defina esta configuração como \"Não\" para ocultar todas as respostas do seu feed." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." -msgstr "Defina esta configuração como \"Não\" para ocultar todos os reposts do seu feed." +msgstr "Defina esta configuração como \"Não\" para ocultar todos os repostagens do seu feed." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Defina esta configuração como \"Sim\" para mostrar respostas em uma visualização de thread. Este é um recurso experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Defina esta configuração como \"Sim\" para exibir amostras de seus feeds salvos no seu feed inicial. Este é um recurso experimental." @@ -6323,7 +6575,7 @@ msgstr "Defina esta configuração como \"Sim\" para exibir amostras de seus fee msgid "Set up your account" msgstr "Configure sua conta" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Configura o usuário no Bluesky" @@ -6347,31 +6599,30 @@ msgstr "Configura o usuário no Bluesky" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "Define o tema escuro para o menos escuro" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperação de senha" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Define a proporção da imagem para quadrada" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Define a proporção da imagem para quadrada" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Define a proporção da imagem para alta" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Define a proporção da imagem para alta" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Define a proporção da imagem para comprida" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Define a proporção da imagem para comprida" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Configurações" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Atividade sexual ou nudez erótica." @@ -6379,20 +6630,19 @@ msgstr "Atividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:708 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Compartilhar" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Compartilhar" @@ -6405,28 +6655,28 @@ msgstr "Compartilhe uma história legal!" msgid "Share a fun fact!" msgstr "Compartilhe um fato divertido!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Compartilhar assim" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Compartilhar feed" #: src/components/dialogs/nuxs/TenMillion/index.tsx:685 -msgid "Share image externally" -msgstr "Compartilhar imagem externamente" +#~ msgid "Share image externally" +#~ msgstr "Compartilhar imagem externamente" #: src/components/dialogs/nuxs/TenMillion/index.tsx:703 -msgid "Share image in post" -msgstr "Compartilhe a imagem na postagem" +#~ msgid "Share image in post" +#~ msgstr "Compartilhe a imagem na postagem" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Compartilhar link" @@ -6444,7 +6694,7 @@ msgstr "Compartilhar Link de diálogo" msgid "Share QR code" msgstr "Compartilhar QR code" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Compartilhar este pacote inicial" @@ -6456,7 +6706,7 @@ msgstr "Compartilhe este pacote inicial e ajude as pessoas a se juntarem à sua msgid "Share your favorite feed!" msgstr "Compartilhe este Pacote Inicial e ajude as pessoas a se juntarem à sua comunidade no Bluesky." -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "Compartilhe Preferências de Testador" @@ -6464,23 +6714,27 @@ msgstr "Compartilhe Preferências de Testador" msgid "Shares the linked website" msgstr "Compartilha o link" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Mostrar" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "Mostrar filtros avançados" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "Mostrar todas as respostas" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Mostrar texto alternativo" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Mostrar mesmo assim" @@ -6502,8 +6756,8 @@ msgstr "Mostrar rótulo e filtrar dos feeds" msgid "Show hidden replies" msgstr "Mostrar respostas ocultas" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Mostrar menos disso" @@ -6511,14 +6765,14 @@ msgstr "Mostrar menos disso" msgid "Show list anyway" msgstr "Mostrar lista de qualquer maneira" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Mostrar Mais" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Mostrar mais disso" @@ -6526,11 +6780,11 @@ msgstr "Mostrar mais disso" msgid "Show muted replies" msgstr "Mostrar respostas silenciadas" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Mostrar Postagens dos Meus Feeds" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Mostrar Citações" @@ -6544,13 +6798,13 @@ msgstr "Mostrar Citações" #: src/screens/Onboarding/StepFollowingFeed.tsx:95 #~ msgid "Show re-posts in Following feed" -#~ msgstr "Mostrar reposts no feed Seguindo" +#~ msgstr "Mostrar repostagens no feed Seguindo" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Mostrar Respostas" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Mostrar as respostas de pessoas que você segue antes de todas as outras respostas." @@ -6566,20 +6820,20 @@ msgstr "Mostrar as respostas de pessoas que você segue antes de todas as outras #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostrar respostas com ao menos {0} {value}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Mostrar resposta para todos" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" -msgstr "Mostrar Reposts" +msgstr "Mostrar Repostagens" #: src/screens/Onboarding/StepFollowingFeed.tsx:111 #~ msgid "Show reposts in Following" -#~ msgstr "Mostrar reposts no Seguindo" +#~ msgstr "Mostrar repostagens no Seguindo" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Mostrar conteúdo" @@ -6597,35 +6851,34 @@ msgid "Show warning and filter from feeds" msgstr "Mostrar aviso e filtrar dos feeds" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Mostra posts de {0} no seu feed" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Mostra postagens de {0} no seu feed" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Fazer login" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Fazer login como {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Fazer login como..." @@ -6637,42 +6890,41 @@ msgstr "Faça login ou crie sua conta para entrar na conversa!" msgid "Sign into Bluesky or create a new account" msgstr "Faça login no Bluesky ou crie uma nova conta" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Sair" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "Sair de todas as contas" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Inscrever-se" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Inscreva-se ou faça login para se juntar à conversa" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Inscreva-se ou faça login para se juntar à conversa" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "É Necessário Fazer Login" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Entrou como" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "autenticado como @{0}" @@ -6680,8 +6932,8 @@ msgstr "autenticado como @{0}" msgid "signed up with your starter pack" msgstr "se inscreveu com seu pacote inicial" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "Inscreva-se sem um pacote inicial" @@ -6689,17 +6941,22 @@ msgstr "Inscreva-se sem um pacote inicial" msgid "Similar accounts" msgstr "Contas semelhantes" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Pular" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Pular" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "Menor" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Desenvolvimento de software" @@ -6711,7 +6968,7 @@ msgstr "Alguns outros feeds que você pode gostar" msgid "Some people can reply" msgstr "Algumas pessoas podem responder" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Algo deu errado" @@ -6720,33 +6977,37 @@ msgstr "Algo deu errado" msgid "Something went wrong, please try again" msgstr "Algo deu errado, tente novamente" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Algo deu errado. Por favor, tente novamente." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Algo deu errado!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Opa! Sua sessão expirou. Por favor, entre novamente." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Classificar Respostas" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" -msgstr "Classificar respostas de um post por:" +msgstr "Classificar respostas de uma postagem por:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "Fonte:" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Fonte: <0>{sourceName}" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Fonte: <0>{sourceName}" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6758,49 +7019,53 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menções ou respostas excessivas" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Esportes" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Quadrado" +#~ msgid "Square" +#~ msgstr "Quadrado" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "Começar um novo chat" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "Comece a conversar com {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Comece a conversar" +#~ msgid "Start chatting" +#~ msgstr "Comece a conversar" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "Início da integração da sua janela. Não retroceda. Em vez disso, avance para mais opções ou pressione para pular." -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Pacote Inicial" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Pacote inicial por {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Seu pacote inicial" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Pacote inicial é inválido" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Pacotes Iniciais" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." @@ -6808,35 +7073,35 @@ msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e #~ msgid "Status page" #~ msgstr "Página de status" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Página de status" #: src/screens/Signup/index.tsx:145 #~ msgid "Step" -#~ msgstr "Passo" +#~ msgstr "Etapa" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" -msgstr "Passo {0} de {1}" +msgstr "Etapa {0} de {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Inscrever-se" @@ -6844,7 +7109,7 @@ msgstr "Inscrever-se" msgid "Subscribe to @{0} to use these labels:" msgstr "Inscreva-se em @{0} para utilizar estes rótulos:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Inscrever-se no rotulador" @@ -6853,14 +7118,18 @@ msgstr "Inscrever-se no rotulador" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Increver-se no feed {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Inscrever-se neste rotulador" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Contas sugeridas" @@ -6873,18 +7142,19 @@ msgstr "Contas sugeridas" msgid "Suggested for you" msgstr "Sugeridos para você" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Sugestivo" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Suporte" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Alterar Conta" @@ -6892,20 +7162,21 @@ msgstr "Alterar Conta" #~ msgid "Switch between feeds to control your experience." #~ msgstr "Alterne entre feeds para controlar sua experiência." -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Trocar para {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Troca a conta que você está autenticado" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Log do sistema" @@ -6913,7 +7184,7 @@ msgstr "Log do sistema" #~ msgid "tag" #~ msgstr "tag" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Menu da tag: {displayTag}" @@ -6922,8 +7193,8 @@ msgid "Tags only" msgstr "Apenas Tags" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Alto" +#~ msgid "Tall" +#~ msgstr "Alto" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" @@ -6959,7 +7230,7 @@ msgid "Teach our algorithm what you like" msgstr "Ensine ao nosso algoritmo o que você curte" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Tecnologia" @@ -6967,23 +7238,27 @@ msgstr "Tecnologia" msgid "Tell a joke!" msgstr "Conte uma piada!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Conte-nos um pouco mais" #: src/components/dialogs/nuxs/TenMillion/index.tsx:578 -msgid "Ten Million" -msgstr "Dez milhões" +#~ msgid "Ten Million" +#~ msgstr "Dez milhões" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -7002,25 +7277,33 @@ msgstr "Termos utilizados violam as diretrizes da comunidade" msgid "Text & tags" msgstr "Texto e tags" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de entrada de texto" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Obrigado. Sua denúncia foi enviada." #: src/components/dialogs/nuxs/TenMillion/index.tsx:654 -msgid "Thanks for being one of our first 10 million users." -msgstr "Obrigado por ser um dos nossos primeiros 10 milhões de usuários." +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "Obrigado por ser um dos nossos primeiros 10 milhões de usuários." #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "Obrigado, seu endereço de e-mail foi verificado com sucesso." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "Obrigado, seu endereço de e-mail foi verificado com sucesso." -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Obrigado, você verificou seu endereço e-mail com sucesso. Você pode fechar esse diálogo." + +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Contém o seguinte:" @@ -7028,12 +7311,12 @@ msgstr "Contém o seguinte:" msgid "That handle is already taken." msgstr "Este identificador de usuário já está sendo usado." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "Esse pacote inicial não pôde ser encontrado." @@ -7041,8 +7324,8 @@ msgstr "Esse pacote inicial não pôde ser encontrado." msgid "That's all, folks!" msgstr "É isso, pessoal!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interagir com você após o desbloqueio." @@ -7055,15 +7338,15 @@ msgstr "A conta poderá interagir com você após o desbloqueio." msgid "The author of this thread has hidden this reply." msgstr "O autor deste tópico ocultou esta resposta." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "A aplicação web Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "As Diretrizes da Comunidade foram movidas para <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "A Política de Direitos Autorais foi movida para <0/>" @@ -7076,7 +7359,7 @@ msgstr "O feed Discover" msgid "The Discover feed now knows what you like" msgstr "O feed Discover agora sabe o que você curte" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "A experiência é melhor no aplicativo. Baixe o Bluesky agora e retomaremos de onde você parou." @@ -7094,37 +7377,42 @@ msgstr "Os seguintes rótulos foram aplicados sobre seu conteúdo." #: src/screens/Onboarding/Layout.tsx:58 msgid "The following steps will help customize your Bluesky experience." -msgstr "Os seguintes passos vão ajudar a customizar sua experiência no Bluesky." +msgstr "As seguintes etapas vão ajudar a customizar sua experiência no Bluesky." #: src/view/com/post-thread/PostThread.tsx:208 #: src/view/com/post-thread/PostThread.tsx:220 msgid "The post may have been deleted." -msgstr "O post pode ter sido excluído." +msgstr "A postagem pode ter sido excluída." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "Vídeo selecionado é maior que 50 MB." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O pacote inicial que você está tentando visualizar é inválido. Você pode excluir este pacote inicial em vez disso." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "O formulário de suporte foi movido. Se precisar de ajuda, <0/> ou visite {HELP_DESK_URL} para entrar em contato conosco." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Os Termos de Serviço foram movidos para" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "O código de verificação que você forneceu é inválido. Certifique-se de que você usou o link de verificação correto ou solicite novamente." +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "Padrão" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Temos vários feeds para você experimentar:" @@ -7133,23 +7421,22 @@ msgstr "O código de verificação que você forneceu é inválido. Certifique-s msgid "There is no time limit for account deactivation, come back any time." msgstr "Não há limite de tempo para desativação da conta, volte quando quiser." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua conexão com a internet e tente novamente." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua conexão com a internet e tente novamente." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexão com a internet e tente novamente." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexão com a internet e tente novamente." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Tivemos um problema ao atualizar seus feeds, por favor verifique sua conexão com a internet e tente novamente." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Tivemos um problema ao atualizar seus feeds, por favor verifique sua conexão com a internet e tente novamente." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Tivemos um problema ao conectar com o Tenor." @@ -7157,15 +7444,18 @@ msgstr "Tivemos um problema ao conectar com o Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Tivemos um problema ao conectar neste chat." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Tivemos um problema ao contatar o servidor deste feed" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7175,21 +7465,25 @@ msgstr "Tivemos um problema ao contatar o servidor deste feed" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." -msgstr "Tivemos um problema ao carregar posts. Toque aqui para tentar de novo." +msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Tivemos um problema ao carregar esta lista. Toque aqui para tentar de novo." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Tivemos um problema ao carregar suas listas. Toque aqui para tentar de novo." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Tivemos um problema ao enviar sua denúncia. Por favor, verifique sua conexão com a internet." @@ -7197,21 +7491,27 @@ msgstr "Tivemos um problema ao enviar sua denúncia. Por favor, verifique sua co #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Tivemos um problema ao sincronizar suas configurações" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Tivemos um problema ao carregar suas senhas de app." -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" @@ -7219,16 +7519,15 @@ msgstr "Tivemos um problema! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Tivemos algum problema. Por favor verifique sua conexão com a internet e tente novamente." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Houve um problema inesperado no aplicativo. Por favor, deixe-nos saber se isso aconteceu com você!" @@ -7240,11 +7539,11 @@ msgstr "Muitos usuários estão tentando acessar o Bluesky! Ativaremos sua conta #~ msgid "These are popular accounts you might like:" #~ msgstr "Estas são contas populares que talvez você goste:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi reportado:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que os usuários fizessem login para visualizar seu perfil." @@ -7256,15 +7555,15 @@ msgstr "This account is blocked by one or more of your moderation lists. To unbl #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "Esta contestação será enviada para <0>{0}." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Este apelo será enviado para <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Este apelo será enviado ao serviço de moderação da Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Este chat foi desconectado" @@ -7280,7 +7579,7 @@ msgstr "Este conteúdo foi escondido pelos moderadores." msgid "This content has received a general warning from moderators." msgstr "Este conteúdo recebeu um aviso dos moderadores." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Este conteúdo é hospedado por {0}. Deseja ativar a mídia externa?" @@ -7293,11 +7592,11 @@ msgstr "Este conteúdo não está disponível porque um dos usuários bloqueou o msgid "This content is not viewable without a Bluesky account." msgstr "Este conteúdo não é visível sem uma conta do Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Esta conversa é com uma conta excluída ou desativada. Pressione para opções." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Esta funcionalidade está em beta. Você pode ler mais sobre exportação de repositórios <0>neste post do nosso blog." @@ -7316,8 +7615,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou configurar os idiomas filtrados." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Este feed está vazio." @@ -7325,7 +7624,7 @@ msgstr "Este feed está vazio." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Este feed não funciona mais. Estamos te mostrando o conteúdo do <0>Discover." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Esta informação não é compartilhada com outros usuários." @@ -7337,11 +7636,11 @@ msgstr "Isso é importante caso você precise alterar seu e-mail ou redefinir su #~ msgid "This label was applied by {0}." #~ msgstr "Este rótulo foi aplicado por {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Este rótulo foi aplicado por <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Este rótulo foi aplicado pelo autor." @@ -7349,7 +7648,7 @@ msgstr "Este rótulo foi aplicado pelo autor." #~ msgid "This label was applied by you" #~ msgstr "Este rótulo foi aplicado por você" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Esta etiqueta foi aplicada por você." @@ -7365,7 +7664,7 @@ msgstr "Este link está levando você ao seguinte site:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Esta lista - criada por <0>{0} - contém possíveis violações das diretrizes da comunidade Bluesky em seu nome ou descrição." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Esta lista está vazia!" @@ -7377,32 +7676,32 @@ msgstr "Este serviço de moderação está indisponível. Veja mais detalhes aba msgid "This name is already in use" msgstr "Você já tem uma senha com esse nome" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." -msgstr "Este post foi excluído." +msgstr "Esta postagem foi excluída." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "Este post só pode ser visto por usuários autenticados e não aparecerá para pessoas que não estão autenticadas." +msgstr "Esta postagem só pode ser vista por usuários autenticados e não aparecerá para pessoas que não estão autenticadas." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "Este post será ocultado de feeds e threads. Isso não pode ser desfeito." +msgstr "Esta postagem será ocultada de feeds e threads. Isso não pode ser desfeito." #: src/view/com/util/forms/PostDropdownBtn.tsx:443 #~ msgid "This post will be hidden from feeds." -#~ msgstr "Este post será escondido de todos os feeds." +#~ msgstr "Esta postagem será escondida de todos os feeds." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "O autor desta postagem desabilitou as postagens de citação." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "Este post só pode ser visto por usuários autenticados e não aparecerá para pessoas que não estão autenticadas." +msgstr "Esta postagem só pode ser vista por usuários autenticados e não aparecerá para pessoas que não estão autenticadas." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "Esta resposta será classificada em uma seção oculta na parte inferior do seu tópico e silenciará as notificações para respostas subsequentes, tanto para você quanto para outras pessoas." @@ -7410,7 +7709,7 @@ msgstr "Esta resposta será classificada em uma seção oculta na parte inferior msgid "This service has not provided terms of service or a privacy policy." msgstr "Este serviço não proveu termos de serviço ou política de privacidade." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Isso deve criar um registro no domínio:" @@ -7449,7 +7748,7 @@ msgstr "Este usuário não segue ninguém ainda." #: src/view/com/modals/SelfLabel.tsx:137 #~ msgid "This warning is only available for posts with media attached." -#~ msgstr "Este aviso só está disponível para publicações com mídia anexada." +#~ msgstr "Este aviso só está disponível para postagens com mídia anexada." #: src/components/dialogs/MutedWords.tsx:435 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." @@ -7463,16 +7762,16 @@ msgstr "Isso excluirá \"{0}\" das suas palavras silenciadas. Você sempre pode msgid "This will remove @{0} from the quick access list." msgstr "Isso removerá @{0} da lista de acesso rápido." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Isso removerá sua postagem desta postagem de citação para todos os usuários e a substituirá por um espaço reservado." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Preferências das Threads" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Preferências das Threads" @@ -7480,38 +7779,42 @@ msgstr "Preferências das Threads" #~ msgid "Thread settings updated" #~ msgstr "Configurações de Thread atualizadas" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Visualização de Threads" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Preferências das Threads" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Para desabilitar o 2FA via e-mail, por favor verifique seu acesso a este endereço de e-mail." #: src/components/dialogs/nuxs/TenMillion/Trigger.tsx:69 -msgid "To learn more, <0>check out our post." -msgstr "" +#~ msgid "To learn more, <0>check out our post." +#~ msgstr "Para aprender mais, <0>cheque nossa postagem." #: src/components/dms/ReportConversationPrompt.tsx:20 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Para denunciar uma conversa, por favor, denuncie uma das mensagens individualmente. Isso vai permitir a análise da situação pelos nossos moderadores." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Para enviar vídeos para o Bluesky, você deve primeiro verificar seu e-mail." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Para quem você gostaria de enviar esta denúncia?" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Hoje" + #: src/components/dialogs/nuxs/TenMillion/index.tsx:658 #: src/components/dialogs/nuxs/TenMillion/Trigger.tsx:63 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "Juntos, estamos reconstruindo a internet social. Estamos felizes que você esteja aqui." +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "Juntos, estamos reconstruindo a internet social. Estamos felizes que você esteja aqui." #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." @@ -7521,25 +7824,25 @@ msgstr "Juntos, estamos reconstruindo a internet social. Estamos felizes que voc msgid "Toggle dropdown" msgstr "Alternar menu suspenso" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Ligar ou desligar conteúdo adulto" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Principais" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Transformações" +#~ msgid "Transformations" +#~ msgstr "Transformações" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Traduzir" @@ -7548,40 +7851,40 @@ msgctxt "action" msgid "Try again" msgstr "Tentar novamente" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Autenticação de dois fatores (2FA)" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Digite sua mensagem aqui" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Tipo:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Desbloquear lista" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Dessilenciar lista" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifique sua conexão à internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Não foi possível excluir" @@ -7589,14 +7892,14 @@ msgstr "Não foi possível excluir" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" @@ -7606,21 +7909,21 @@ msgstr "Desbloquear" msgid "Unblock account" msgstr "Desbloquear Conta" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Desbloquear Conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Desbloquear Conta?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" -msgstr "Desfazer repost" +msgstr "Desfazer repostagem" #: src/view/com/profile/FollowButton.tsx:61 msgctxt "action" @@ -7631,12 +7934,12 @@ msgstr "Deixar de seguir" #~ msgid "Unfollow" #~ msgstr "Deixar de seguir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Deixar de seguir" @@ -7644,12 +7947,12 @@ msgstr "Deixar de seguir" #~ msgid "Unlike" #~ msgstr "Descurtir" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Descurtir este feed" -#: src/components/TagMenu/index.tsx:263 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "Dessilenciar" @@ -7663,29 +7966,29 @@ msgstr "Ativar o áudio" msgid "Unmute {truncatedTag}" msgstr "Dessilenciar {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Dessilenciar conta" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" -msgstr "Dessilenciar posts com {displayTag}" +msgstr "Dessilenciar postagens com {displayTag}" #: src/components/dms/ConvoMenu.tsx:176 msgid "Unmute conversation" -msgstr "Desmutar conversa" +msgstr "Dessilenciar conversa" #: src/components/dms/ConvoMenu.tsx:140 #~ msgid "Unmute notifications" #~ msgstr "Dessilenciar notificações" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Dessilenciar thread" -#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Ativar o áudio do vídeo" @@ -7693,24 +7996,29 @@ msgstr "Ativar o áudio do vídeo" #~ msgid "Unmuted" #~ msgstr "Áudio ativado" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Desafixar" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Desafixar da tela inicial" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "Desafixar do seu perfil" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" -msgstr "Desfixado dos seus feeds" +msgstr "Desafixado dos seus feeds" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Desinscrever-se" @@ -7719,7 +8027,7 @@ msgstr "Desinscrever-se" msgid "Unsubscribe from list" msgstr "Cancelar assinatura da lista" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Desinscrever-se deste rotulador" @@ -7727,7 +8035,7 @@ msgstr "Desinscrever-se deste rotulador" msgid "Unsubscribed from list" msgstr "Cancelada inscrição na lista" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de vídeo não suportado: {mimeType}" @@ -7741,75 +8049,92 @@ msgid "Unwanted Sexual Content" msgstr "Conteúdo Sexual Indesejado" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Atualizar {displayName} nas Listas" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Atualizar {displayName} nas Listas" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "Atualizar <0>{displayName} nas Listas" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Alterar para {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "Falha na atualização do anexo de cotação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "Falha na atualização da visibilidade da resposta" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Atualizando..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "Enviar uma foto" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Carregar um arquivo de texto para:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Tirar uma foto" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Carregar um arquivo" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Carregar da galeria" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Utilize um arquivo no seu servidor" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Use as senhas de aplicativos para fazer login em outros clientes do Bluesky sem dar acesso total à sua conta ou senha." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Usar bsky.social como serviço de hospedagem" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Usar provedor padrão" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Usar o navegador interno" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Usar o meu navegador padrão" @@ -7817,7 +8142,7 @@ msgstr "Usar o meu navegador padrão" msgid "Use recommended" msgstr "Usar recomendados" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Usar o painel do meu DNS" @@ -7854,36 +8179,36 @@ msgstr "Usuário Bloqueia Você" msgid "User Blocks You" msgstr "Este Usuário Te Bloqueou" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Lista de usuários por {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Lista de usuários por <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Sua lista de usuários" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Lista de usuários criada" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Lista de usuários atualizada" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Listas de Usuários" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Nome de usuário ou endereço de e-mail" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Usuários" @@ -7895,26 +8220,24 @@ msgstr "Usuários" msgid "users followed by <0>@{0}" msgstr "usuários seguidos por <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Usuários que eu sigo" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Usuários em \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Usuários que curtiram este conteúdo ou perfil" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Conteúdo:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "E-mail verificado necessário" @@ -7922,39 +8245,41 @@ msgstr "E-mail verificado necessário" #~ msgid "Verify {0}" #~ msgstr "Verificar {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Verificar e-mail" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Caixa de diálogo da verificação de e-mail" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Verificar meu e-mail" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" -msgstr "Verificar Meu Email" +msgstr "Verificar Meu E-mail" #: src/view/com/modals/ChangeEmail.tsx:200 #: src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" msgstr "Verificar Novo E-mail" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "Verifique agora" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Verificar Arquivo" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Verificar Seu E-mail" @@ -7963,7 +8288,7 @@ msgstr "Verificar Seu E-mail" #~ msgid "Version {0}" #~ msgstr "Versão {0}" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Versão {appVersion} {bundleInfo}" @@ -7972,12 +8297,12 @@ msgstr "Versão {appVersion} {bundleInfo}" msgid "Video" msgstr "Vídeo" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "Falha no processamento do vídeo" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Games" @@ -7985,20 +8310,24 @@ msgstr "Games" msgid "Video not found." msgstr "Vídeo não encontrado." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "Configurações de vídeo" +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "Vídeo: {0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "Os vídeos devem ter menos de 60 segundos de duração." -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" @@ -8011,15 +8340,23 @@ msgstr "Ver perfil de {0}" msgid "View {displayName}'s profile" msgstr "Ver perfil de {displayName}" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Ver perfil do usuário bloqueado" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Veja o blogpost para mais detalhes" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Ver depuração" @@ -8040,14 +8377,16 @@ msgid "View information about these labels" msgstr "Ver informações sobre estes rótulos" #: src/components/dialogs/nuxs/TenMillion/Trigger.tsx:72 -msgid "View our post" -msgstr "" +#~ msgid "View our post" +#~ msgstr "Ver nossa postagem" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Ver perfil" @@ -8055,28 +8394,28 @@ msgstr "Ver perfil" msgid "View the avatar" msgstr "Ver o avatar" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Ver este rotulador provido por @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Veja suas contas bloqueadas" -#: src/view/com/home/HomeHeaderLayout.web.tsx:132 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:143 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Veja seus feeds e explore mais" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Veja suas listas de moderação" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Veja suas contas silenciadas" @@ -8099,11 +8438,11 @@ msgstr "Avisar" msgid "Warn content and filter from feeds" msgstr "Avisar e filtrar dos feeds" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." -msgstr "Não encontramos nenhum post com esta hashtag." +msgstr "Não encontramos nenhuma postagem com esta hashtag." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Não foi possível carregar esta conversa" @@ -8111,39 +8450,39 @@ msgstr "Não foi possível carregar esta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos que sua conta estará pronta em mais ou menos {estimatedTime}." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "Enviamos outro e-mail de verificação para <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperamos que você se divirta. Lembre-se, o Bluesky é:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." -msgstr "Não temos mais posts de quem você segue. Aqui estão os mais novos de <0/>." +msgstr "Não temos mais postagens de quem você segue. Aqui estão os mais novos de <0/>." #: src/components/dialogs/MutedWords.tsx:203 #~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -#~ msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitos posts, já que isso pode resultar em filtrar todos eles." +#~ msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitas postagens, já que isso pode resultar em postagens não sendo exibidas." #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Recomendamos nosso feed \"Discover\":" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Não conseguimos determinar se você tem permissão para enviar vídeos. Tente novamente." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Não foi possível carregar sua data de nascimento. Por favor, tente novamente." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Não foi possível carregar seus rotuladores." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, você pode pular este fluxo." @@ -8151,19 +8490,23 @@ msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar con msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para customizar a sua experiência." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "Nós estamos introduzindo uma nova fonte, junto com o tamanho de fonte ajustável." + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Estamos muito felizes em recebê-lo!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, contate o criador da lista: @{handleOrDid}." @@ -8171,16 +8514,16 @@ msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, cont msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor, tente novamente." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas sua busca não pôde ser concluída. Por favor, tente novamente em alguns minutos." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentimos muito! A postagem que você está respondendo foi excluída." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava procurando." @@ -8188,7 +8531,7 @@ msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava pr #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Sentimos muito! Você só pode se inscrever em até dez rotuladores e você já chegou ao máximo." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Sentimos muito! Você só pode assinar vinte rotuladores, e você atingiu seu limite de vinte." @@ -8204,7 +8547,7 @@ msgstr "Bem vindo de volta!" msgid "Welcome, friend!" msgstr "Bem-vindo, amigo!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Do que você gosta?" @@ -8212,17 +8555,17 @@ msgstr "Do que você gosta?" msgid "What do you want to call your starter pack?" msgstr "Como você quer chamar seu pacote inicial?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "E aí?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" -msgstr "Quais idiomas são usados neste post?" +msgstr "Quais idiomas são usados nesta postagem?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Quais idiomas você gostaria de ver nos seus feeds?" @@ -8232,8 +8575,8 @@ msgstr "Quem pode interagir com esta postagem?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Quem pode enviar mensagens para você?" +#~ msgid "Who can message you?" +#~ msgstr "Quem pode enviar mensagens para você?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8248,7 +8591,7 @@ msgstr "Quem pode responder" #~ msgstr "Quem pode responder?" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Opa!" @@ -8270,7 +8613,7 @@ msgstr "Por que esta mensagem deve ser analisada?" #: src/components/ReportDialog/SelectReportOptionView.tsx:51 msgid "Why should this post be reviewed?" -msgstr "Por que este post deve ser analisado?" +msgstr "Por que esta postagem deve ser analisada?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" @@ -8281,35 +8624,35 @@ msgid "Why should this user be reviewed?" msgstr "Por que este usuário deve ser analisado?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Largo" +#~ msgid "Wide" +#~ msgstr "Largo" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Escreva uma mensagem" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" -msgstr "Escrever post" +msgstr "Escrever postagem" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Escreva sua resposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Escritores" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Sim" @@ -8318,15 +8661,15 @@ msgstr "Sim" msgid "Yes, deactivate" msgstr "Sim, desativar" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Sim, exclua este pacote inicial" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Sim, desvincule" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Sim, ocultar" @@ -8334,11 +8677,14 @@ msgstr "Sim, ocultar" msgid "Yes, reactivate my account" msgstr "Sim, reative minha conta" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Ontem, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Ontem" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Ontem, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "você" @@ -8351,7 +8697,7 @@ msgstr "Você" msgid "You are in line." msgstr "Você está na fila." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "Você não tem permissão para enviar vídeos." @@ -8359,10 +8705,14 @@ msgstr "Você não tem permissão para enviar vídeos." msgid "You are not following anyone." msgstr "Você não segue ninguém." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "Você pode ajustar isso depois nas suas Configurações de Aparência" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." -msgstr "Você também pode descobrir novos feeds para seguir." +msgstr "Você também pode descobrir novos feeds customizados para seguir." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." @@ -8373,15 +8723,15 @@ msgstr "Você também pode desativar temporariamente sua conta e reativá-la a q #~ msgstr "Você pode mudar estas configurações depois." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Você pode alterar isso a qualquer momento." +#~ msgid "You can change this at any time." +#~ msgstr "Você pode alterar isso a qualquer momento." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Você pode continuar conversando, independentemente da configuração que escolher." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Agora você pode entrar com a sua nova senha." @@ -8393,7 +8743,7 @@ msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e msgid "You do not have any followers." msgstr "Ninguém segue você ainda." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Você não segue nenhum usuário que segue @{name}." @@ -8401,7 +8751,7 @@ msgstr "Você não segue nenhum usuário que segue @{name}." msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Você ainda não tem nenhum convite! Nós lhe enviaremos alguns quando você estiver há mais tempo no Bluesky." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Você não tem feeds fixados." @@ -8409,7 +8759,7 @@ msgstr "Você não tem feeds fixados." #~ msgid "You don't have any saved feeds!" #~ msgstr "Você não tem feeds salvos!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Você não tem feeds salvos." @@ -8427,8 +8777,8 @@ msgstr "Você bloqueou este usuário" msgid "You have blocked this user. You cannot view their content." msgstr "Você bloqueou este usuário. Você não pode ver este conteúdo." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8436,11 +8786,11 @@ msgstr "Você utilizou um código inválido. O código segue este padrão: XXXXX #: src/lib/moderation/useModerationCauseDescription.ts:114 msgid "You have hidden this post" -msgstr "Você escondeu este post" +msgstr "Você escondeu esta postagem" #: src/components/moderation/ModerationDetailsDialog.tsx:110 msgid "You have hidden this post." -msgstr "Você escondeu este post." +msgstr "Você escondeu esta postagem." #: src/components/moderation/ModerationDetailsDialog.tsx:103 #: src/lib/moderation/useModerationCauseDescription.ts:97 @@ -8451,7 +8801,7 @@ msgstr "Você silenciou esta conta." msgid "You have muted this user" msgstr "Você silenciou este usuário." -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "Você ainda não tem conversas. Comece uma!" @@ -8459,8 +8809,8 @@ msgstr "Você ainda não tem conversas. Comece uma!" msgid "You have no feeds." msgstr "Você não tem feeds." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Você não tem listas." @@ -8468,15 +8818,15 @@ msgstr "Você não tem listas." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "Você ainda não tem chats. Comece um novo com alguém!" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Você ainda não bloqueou nenhuma conta. Para bloquear uma conta, acesse um perfil e selecione \"Bloquear conta\" no menu." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Você ainda não criou nenhuma senha de aplicativo. Você pode criar uma pressionando o botão abaixo." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Você ainda não silenciou nenhuma conta. Para silenciar uma conta, acesse um perfil e selecione \"Silenciar conta\" no menu." @@ -8484,11 +8834,11 @@ msgstr "Você ainda não silenciou nenhuma conta. Para silenciar uma conta, aces msgid "You have reached the end" msgstr "Você chegou ao fim" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Você atingiu temporariamente o limite de uploads de vídeo. Tente novamente mais tarde." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Você ainda não criou um pacote inicial!" @@ -8525,7 +8875,11 @@ msgstr "Você pode adicionar no máximo 3 feeds" #~ msgid "You may only add up to 50 profiles" #~ msgstr "Você só pode adicionar até 50 perfis" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Você precisa ter no mínimo 13 anos de idade para se cadastrar." @@ -8533,7 +8887,7 @@ msgstr "Você precisa ter no mínimo 13 anos de idade para se cadastrar." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Você precisa ser maior de idade para habilitar conteúdo adulto." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial." @@ -8541,12 +8895,11 @@ msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um p msgid "You must grant access to your photo library to save a QR code" msgstr "Você deve conceder acesso à sua biblioteca de fotos para salvar o QR code." -#: src/components/dialogs/nuxs/TenMillion/index.tsx:302 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Você deve conceder acesso à sua biblioteca de fotos para salvar a imagem." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Você deve selecionar no mínimo um rotulador" @@ -8554,47 +8907,51 @@ msgstr "Você deve selecionar no mínimo um rotulador" msgid "You previously deactivated @{0}." msgstr "Você desativou @{0} anteriormente." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Você não vai mais receber notificações desta thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Você vai receber notificações desta thread" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Você receberá um e-mail com um \"código de redefinição\". Digite esse código aqui, e então digite sua nova senha." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Você: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Você: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Você: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Você seguirá os usuários e feeds sugeridos depois de terminar de criar sua conta!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Você seguirá os usuários sugeridos depois de terminar de criar sua conta!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Você seguirá estas pessoas e mais {0} outras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "Você seguirá estas pessoas imediatamente" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Você se manterá atualizado com estes feeds" @@ -8613,28 +8970,28 @@ msgstr "Você está na fila" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Você está logado com uma senha de aplicativo. Por favor, faça login com sua senha principal para continuar desativando sua conta." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Tudo pronto!" #: src/components/moderation/ModerationDetailsDialog.tsx:107 #: src/lib/moderation/useModerationCauseDescription.ts:106 msgid "You've chosen to hide a word or tag within this post." -msgstr "Você escolheu esconder uma palavra ou tag deste post." +msgstr "Você escolheu esconder uma palavra ou tag desta postagem." #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Você atingiu seu limite diário de uploads de vídeos (muitos vídeos)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Sua conta" @@ -8642,15 +8999,15 @@ msgstr "Sua conta" msgid "Your account has been deleted" msgstr "Sua conta foi excluída" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Sua conta ainda não tem idade suficiente para enviar vídeos. Por favor, tente novamente mais tarde." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "O repositório da sua conta, contendo todos os seus dados públicos, pode ser baixado como um arquivo \"CAR\". Este arquivo não inclui imagens ou dados privados, estes devem ser exportados separadamente." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Sua data de nascimento" @@ -8658,11 +9015,11 @@ msgstr "Sua data de nascimento" msgid "Your browser does not support the video format. Please try a different browser." msgstr "Seu navegador não suporta o formato de vídeo. Por favor, tente um navegador diferente." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Seus chats foram desativados" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Sua escolha será salva, mas você pode trocá-la nas configurações depois" @@ -8670,16 +9027,16 @@ msgstr "Sua escolha será salva, mas você pode trocá-la nas configurações de #~ msgid "Your default feed is \"Following\"" #~ msgstr "Seu feed inicial é o \"Seguindo\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Seu e-mail parece ser inválido." #: src/view/com/modals/ChangeEmail.tsx:120 msgid "Your email has been updated but not verified. As a next step, please verify your new email." -msgstr "Seu e-mail foi atualizado mas não foi verificado. Como próximo passo, por favor verifique seu novo e-mail." +msgstr "Seu e-mail foi atualizado mas não foi verificado. Como próxima etapa, por favor verifique seu novo e-mail." #: src/view/com/modals/VerifyEmail.tsx:122 msgid "Your email has not yet been verified. This is an important security step which we recommend." @@ -8697,7 +9054,7 @@ msgstr "Seu feed inicial está vazio! Siga mais usuários para acompanhar o que msgid "Your full handle will be" msgstr "Seu identificador completo será" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Seu usuário completo será <0>@{0}" @@ -8709,15 +9066,15 @@ msgstr "Suas palavras silenciadas" msgid "Your password has been changed successfully!" msgstr "Sua senha foi alterada com sucesso!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" -msgstr "Seu post foi publicado" +msgstr "Sua postagem foi publicada" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Suas postagens, curtidas e bloqueios são públicos. Silenciamentos são privados." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Seu perfil" @@ -8725,14 +9082,14 @@ msgstr "Seu perfil" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Seu perfil, postagens, feeds e listas não serão mais visíveis para outros usuários do Bluesky. Você pode reativar sua conta a qualquer momento fazendo login." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Sua resposta foi publicada" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Sua denúncia será enviada para o serviço de moderação do Bluesky" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Seu identificador de usuário" diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po index db2f1af623..dc845ec789 100644 --- a/src/locale/locales/ru/messages.po +++ b/src/locale/locales/ru/messages.po @@ -10,10 +10,10 @@ msgstr "" "Report-Msgid-Bugs-To: Kirill Plotnikov \n" "PO-Revision-Date: \n" "Last-Translator: Kirill Plotnikov \n" -"Language-Team: DearFox, ponfertato, Potato Energy, Ukrainian\n" +"Language-Team: DearFox, ponfertato, Potato Energy, Ukrainian, RomanPro100\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(содержит встроенный контент)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(нет электронной почты)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {еще один} other {{formattedCount} других}}" @@ -50,9 +50,9 @@ msgstr "{0, plural, one {# минута} other {# минуты}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# месяц} other {# месяцы}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "{0, plural, one {# перепост} other {# перепосты}}" +msgstr "{0, plural, one {# репост} other {# репосты}}" #: src/lib/hooks/useTimeAgo.ts:126 msgid "{0, plural, one {# second} other {# seconds}}" @@ -68,15 +68,15 @@ msgstr "{1, plural, one {подписчик} other {подписчиков}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {подписка} other {подписок}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Нравится (# лайк)} other {Нравится (# лайки)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {лайк} other {лайков}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Понравилось # пользователю} other {Понравилось # пользователям}}" @@ -85,47 +85,47 @@ msgstr "{0, plural, one {Понравилось # пользователю} othe msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {пост} other {постов}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" -msgstr "{0, plural, one {quote} other {quotes}}" +msgstr "{0, plural, one {цитирование} other {цитирований}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Ответить (# ответ)} other {Ответить (# ответов)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {репост} other {репостов}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Убрать лайк (# лайк)} other {Убрать лайки (# лайков)}}" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 msgid "{0} <0>in <1>tags" -msgstr "{0} <0>в <1>теги" +msgstr "{0} <0>в <1>тегах" #. Pattern: {wordValue} in text, tags #: src/components/dialogs/MutedWords.tsx:465 msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>в <1>тексте и тегах" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "{0} присоединился на этой неделе" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "{0} из {1}" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "{0} людей использовали этот стартовый набор!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" -msgstr "аватар {0}" +msgstr "Аватар {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" @@ -160,12 +160,12 @@ msgstr "{0}мес" msgid "{0}s" msgstr "{0}с" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {Понравилось # пользователю} other {Понравилось # пользователям}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "Стартовый набор {displayName}" @@ -177,24 +177,24 @@ msgstr "{estimatedTimeHrs, plural, one {час} other {часов}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {минута} other {минуты}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} подписок" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "{handle} не может получать сообщения" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Понравилось # пользователю} other {Понравилось # пользователям}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" -msgstr "{numUnreadNotifications} непрочитанное" +msgstr "{numUnreadNotifications} непрочитанных" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" @@ -204,29 +204,29 @@ msgstr "{profileName} присоединился к Bluesky {0} назад" msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName} присоединился к Bluesky, используя стартовый набор {0} назад" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, и {2, plural, one {# другой} other {# другие}} включены в ваш стартовый набор" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1}, и {2, plural, one {# другой} other {# другие}} включены в ваш стартовый набор" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {подписчик} other {подписчиков}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {подписка} other {подписок}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} и<1> <2>{1} входят в ваш стартовый набор" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} входит в ваш стартовый набор" @@ -234,15 +234,19 @@ msgstr "<0>{0} входит в ваш стартовый набор" msgid "<0>{0} members" msgstr "<0>{0} участников" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>Не применимо. Это предупреждение доступно только для сообщений с прикрепленными медиафайлами." +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "<0>Не применимо. Это предупреждение доступно только для сообщений с прикрепленными медиафайлами." + +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Вы и<1> <2>{0} включены в ваш стартовый набор" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Недопустимый псевдоним" @@ -250,7 +254,7 @@ msgstr "⚠Недопустимый псевдоним" msgid "24 hours" msgstr "24 часа" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "Подтверждение 2FA" @@ -262,8 +266,8 @@ msgstr "30 дней" msgid "7 days" msgstr "7 дней" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Открыть навигацию и настройки" @@ -271,35 +275,34 @@ msgstr "Открыть навигацию и настройки" msgid "Access profile and other navigation links" msgstr "Открыть профиль и другую навигацию" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Доступность" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "Настройки доступности" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "Настройки Доступности" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Учетная запись" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Учетная запись заблокирована" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Вы подписались на учетную запись" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Учетная запись игнорируется" @@ -320,27 +323,27 @@ msgstr "Параметры учетной записи" msgid "Account removed from quick access" msgstr "Учетная запись удалена из быстрого доступа" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Учетная запись разблокирована" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Вы отписались от учетной записи" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Учетная запись больше не игнорируется" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Добавить" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "Добавьте еще {0}, чтобы продолжить" @@ -348,37 +351,39 @@ msgstr "Добавьте еще {0}, чтобы продолжить" msgid "Add {displayName} to starter pack" msgstr "Добавить {displayName} в стартовый набор" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Добавить предупреждение о содержимом" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Добавить пользователя в список" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Добавить учетную запись" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Добавить альтернативный текст" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "Добавьте альтернативный текст (необязательно)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Добавить пароль приложения" @@ -394,24 +399,24 @@ msgstr "Добавить игнорируемые слова и теги" msgid "Add recommended feeds" msgstr "Добавить рекомендуемые ленты" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "Добавьте ленты в свой стартовый набор!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "Добавьте в ленту по умолчанию только тех людей, за кем вы следите" +msgstr "Добавьте в ленту по умолчанию только тех людей, на кого вы подписаны" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Добавьте следующую DNS-запись к вашему домену:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "Добавьте эту ленту в свои ленты" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Добавить в списки" @@ -420,7 +425,7 @@ msgid "Add to my feeds" msgstr "Добавить в мои ленты" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Добавлено в список" @@ -428,89 +433,100 @@ msgstr "Добавлено в список" msgid "Added to my feeds" msgstr "Добавлено в мои ленты" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Содержимое для взрослых" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "Взрослый контент можно включить только через веб-сайт <0>bsky.app." -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Содержимое для взрослых отключено." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Расширенные" #: src/state/shell/progress-guide.tsx:171 msgid "Algorithm training complete!" -msgstr "Обучение алгоритму завершено!" +msgstr "Обучение алгоритма завершено!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "Все учетные записи отслеживаются!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Все сохраненные ленты в одном месте." #: src/view/com/modals/AddAppPasswords.tsx:188 #: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" -msgstr "Разрешите доступ к своим прямым сообщениям" +msgstr "Разрешите доступ к своим личным сообщениям" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Разрешить новые сообщения от" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "Разрешить ответы от:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" -msgstr "Позволяет получить доступ к прямым сообщениям" +msgstr "Позволяет получить доступ к личным сообщениям" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Уже есть код?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Уже вошли как @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "АЛЬТ" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Альтернативный текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "Альтернативный текст" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." -msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей, и предоставляет дополнительный контекст для всех." +msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех." + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Было отправлено письмо на адрес {0}. Оно содержит код подтверждения, который можно ввести ниже." @@ -518,19 +534,23 @@ msgstr "Было отправлено письмо на адрес {0}. Оно msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Было отправлено письмо на ваш предыдущий адрес, {0}. Оно содержит код подтверждения, который вы можете ввести ниже." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "Возникла ошибка" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "Возникла ошибка" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "Возникла ошибка при сжатии видео." -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "При создании вашего стартового набора возникла ошибка. Хотите попробовать еще раз?" @@ -543,24 +563,24 @@ msgid "An error occurred while loading the video. Please try again." msgstr "При загрузке видео возникла ошибка. Пожалуйста, попробуйте еще раз." #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" -msgstr "При сохранении QR-кода возникла ошибка." +msgstr "При сохранении QR-кода возникла ошибка!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "При выборе видео возникла ошибка" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" -msgstr "Возникла ошибка при попытке проследить за всеми" +msgstr "Возникла ошибка при попытке подписаться на всех" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "При загрузке видео возникла ошибка." @@ -572,40 +592,40 @@ msgstr "Проблема не включена в эти варианты" msgid "An issue occurred starting the chat" msgstr "При запуске чата возникла проблема" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "При попытке открыть чат возникла проблема" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Возникла проблема, пожалуйста, попробуйте еще раз." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "возникла неизвестная ошибка" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "неизвестный маркировщик" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "и" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Животные" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "Анимированные GIF" @@ -613,67 +633,72 @@ msgstr "Анимированные GIF" msgid "Anti-Social Behavior" msgstr "Антисоциальное поведение" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "Любой может взаимодействовать" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Язык приложения" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Пароль приложения удален" #: src/view/com/modals/AddAppPasswords.tsx:138 msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." -msgstr "Название пароля приложения может содержать только латинские буквы, цифры, пробелы, минусы и нижнее подчеркивание." +msgstr "Название пароля приложения может содержать только латинские буквы, цифры, пробелы, дефисы и нижние подчеркивания." #: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." msgstr "Название пароля приложения должно быть хотя бы 4 символа в длину." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Настройка пароля приложений" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Пароли для приложений" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Оспорить" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Оспорить метку \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Обращение отправлено" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Обжаловать это решение" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Оформление" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "Настройки внешнего вида" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "Настройки внешнего вида" @@ -682,7 +707,7 @@ msgstr "Настройки внешнего вида" msgid "Apply default recommended feeds" msgstr "Применить рекомендуемые по умолчанию ленты" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Вы действительно хотите удалить пароль приложения \"{name}\"?" @@ -690,23 +715,27 @@ msgstr "Вы действительно хотите удалить пароль msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Вы уверены, что хотите удалить это сообщение? Сообщение будет удалено для вас, но не для другого участника." -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "Вы уверены, что хотите удалить этот стартовый набор?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Вы уверены, что хотите покинуть эту беседу? Ваши сообщения будут удалены для вас, но не для других участников." #: src/view/com/feeds/FeedSourceCard.tsx:313 msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Вы уверены, что хотите удалить {0} из лент?" +msgstr "Вы уверены, что хотите удалить {0} из своих лент?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" -msgstr "Вы уверены, что хотите удалить это из своей ленты?" +msgstr "Вы уверены, что хотите удалить это из своих лент?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Вы действительно хотите удалить этот черновик?" @@ -719,11 +748,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Вы пишете на <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Искусство" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Художественная или неэротическая обнаженность." @@ -732,39 +761,39 @@ msgid "At least 3 characters" msgstr "Не менее 3-х символов" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Назад" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Основные" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Дата рождения" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Дата рождения:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Заблокировать" @@ -773,45 +802,45 @@ msgstr "Заблокировать" msgid "Block account" msgstr "Заблокировать" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Заблокировать" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Заблокировать учетную запись?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Заблокировать учетные записи" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Заблокировать список" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Заблокировать эти учетные записи?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Заблокировано" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Заблокированные учетные записи" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Заблокированные учетные записи" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблокированные учетные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Заблокированные учетные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом. Вы не будете видеть их посты и они не будут видеть ваши." @@ -823,40 +852,44 @@ msgstr "Заблокирован пост." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокировка не мешает этому маркировщику добавлять метку в вашу учетную запись." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Блокировка - это открытая информация. Заблокированные учетные записи не могут отвечать в ваших постах, упоминать вас или иным образом взаимодействовать с вами." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Блокировка не помешает добавлять метки в вашу учетную запись, но она остановит возможность этой учетной записи комментировать ваши посты или взаимодействовать с вами." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Блог" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky - это открытая сеть, где вы можете выбрать своего хостинг-провайдера. Собственный хостинг теперь доступен в бета-версии для разработчиков." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky - это открытая сеть, где вы можете выбрать своего хостинг-провайдера. Собственный хостинг теперь доступен в бета-версии для разработчиков." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Bluesky лучше с друзьями!" #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky выберет набор рекомендуемых учетных записей из людей в вашей сети." -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky не будет показывать ваш профиль и сообщения посетителям без учетной записи. Другие приложения могут не следовать этому запросу. Это не делает вашу учетную запись приватной." @@ -869,13 +902,13 @@ msgid "Blur images and filter from feeds" msgstr "Размыть изображения и отфильтровать их из ленты" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Книги" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -902,7 +935,7 @@ msgstr "Просмотрите другие предложения на стра msgid "Browse other feeds" msgstr "Просмотр других лент" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Бизнес" @@ -910,7 +943,7 @@ msgstr "Бизнес" msgid "by —" msgstr "от —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "От {0}" @@ -919,49 +952,60 @@ msgid "by <0/>" msgstr "от <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Создавая учетную запись, вы даете согласие с {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Создавая учетную запись, вы даете согласие с {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "создано вами" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Камера" #: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." -msgstr "Может содержать только буквы, цифры, пробелы, дефисы и знаки подчеркивания, и иметь длину от 4 до 32 символов." +msgstr "Может содержать только латинские буквы, цифры, пробелы, дефисы и нижние подчеркивания. Должен иметь длину от 4 до 32 символов." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Отменить" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +1017,19 @@ msgstr "Отменить" msgid "Cancel account deletion" msgstr "Отменить удаление учетной записи" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Отменить изменение псевдонима" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Отменить обрезку изображения" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Отменить изменения профиля" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Отменить изменения профиля" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Отменить цитирование поста" @@ -994,6 +1038,7 @@ msgid "Cancel reactivation and log out" msgstr "Отменить реактивацию и выйти из системы" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Отменить поиск" @@ -1001,40 +1046,44 @@ msgstr "Отменить поиск" msgid "Cancels opening the linked website" msgstr "Отменяет открытие ссылки" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "Невозможно взаимодействовать с заблокированным пользователем" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" -msgstr "Подписи (.vtt)" +msgstr "Субтитры (.vtt)" #: src/view/com/composer/videos/SubtitleDialog.tsx:56 msgid "Captions & alt text" -msgstr "Подписи и альтернативный текст" +msgstr "Субтитры и альтернативный текст" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Изменить" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Изменить" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Изменить псевдоним" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Изменить псевдоним" @@ -1042,12 +1091,12 @@ msgstr "Изменить псевдоним" msgid "Change my email" msgstr "Изменить адрес электронной почты" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Изменить пароль" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Изменение пароля" @@ -1059,9 +1108,10 @@ msgstr "Изменить язык поста на {0}" msgid "Change Your Email" msgstr "Изменить адрес электронной почты" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "Чат" @@ -1071,14 +1121,14 @@ msgstr "Чат без звука" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "Настройки чата" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "Настройки чата" @@ -1091,7 +1141,7 @@ msgstr "Чат со звуком" msgid "Check my status" msgstr "Проверить мой статус" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "Проверьте свою электронную почту на наличие кода для входа в систему и введите его здесь." @@ -1107,23 +1157,27 @@ msgstr "Проверьте свой почтовый ящик на наличи #~ msgid "Choose at least {0} more" #~ msgstr "Выберите, по крайней мере, еще {0}" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "Выберите ленты" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" -msgstr "Выберите для меня" +msgstr "Выберите за меня" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "Выберите людей" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Выберите хостинг-провайдера" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Выберите алгоритмы, которые будут наполнять ваши ленты." @@ -1131,28 +1185,27 @@ msgstr "Выберите алгоритмы, которые будут напо msgid "Choose this color as your avatar" msgstr "Выберите этот цвет в качестве своего аватара" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Укажите пароль" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Очистите все данные хранилища" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" -msgstr "Очистите все данные хранилища (после этого перезагрузитесь)." +msgstr "Очистите все данные хранилища (после этого перезагрузитесь)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Очистить поисковый запрос" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Удаляет все данные из хранилища" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "нажмите здесь" @@ -1168,15 +1221,15 @@ msgstr "Нажмите здесь, чтобы узнать больше" msgid "Click here to open tag menu for {tag}" msgstr "Нажмите здесь, чтобы открыть меню тегов для {tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "Нажмите, чтобы отключить цитирование этого сообщения." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "Нажмите, чтобы включить цитирование этого сообщения." -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "Нажмите, чтобы повторить неудачное сообщение" @@ -1188,27 +1241,25 @@ msgstr "Климат" msgid "Clip 🐴 clop 🐴" msgstr "Клип 🐴 клоп 🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Закрыть" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Закрыть диалоговое окно" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Закрыть уведомления" @@ -1216,12 +1267,11 @@ msgstr "Закрыть уведомления" msgid "Close bottom drawer" msgstr "Закрыть нижнее меню" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "Закрыть диалог" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "Закройте окно GIF" @@ -1234,29 +1284,29 @@ msgid "Close image viewer" msgstr "Закрыть просмотр изображения" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "Закрыть модальное окно" +#~ msgid "Close modal" +#~ msgstr "Закрыть модальное окно" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Закрыть панель навигации" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Закрыть диалоговое окно" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Закрывает нижнюю панель навигации" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Закрывает уведомление об обновлении пароля" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Закрывает редактор постов и удаляет черновик" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Закрывает редактор постов и удаляет черновик" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1266,56 +1316,66 @@ msgstr "Закрывает просмотр изображения" msgid "Collapse list of users" msgstr "Свернуть список пользователей" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Сворачивает список пользователей для данного уведомления" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Комедия" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Комиксы" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Правила сообщества" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Завершите ознакомление и начните пользоваться вашей учетной записью" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Выполните задание" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Создавайте посты до {MAX_GRAPHEME_LENGTH} символов в длину" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Составить ответ" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Настроить фильтрацию содержимого для категории: {имя}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Настраивается в <0>настройках модерации." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Подтвердить" @@ -1332,30 +1392,35 @@ msgstr "Подтвердить настройку языка содержимо msgid "Confirm delete account" msgstr "Подтвердить удаление учетной записи" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Подтвердите ваш возраст:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Подтвердите вашу дату рождения" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Код подтверждения" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Соединение..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Служба поддержки" @@ -1363,12 +1428,12 @@ msgstr "Служба поддержки" msgid "Content Blocked" msgstr "Заблокированное содержимое" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Фильтры содержимого" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Языки содержимого" @@ -1378,40 +1443,40 @@ msgid "Content Not Available" msgstr "Содержимое недоступно" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Предупреждение о содержимом" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Предупреждение о содержимом" #: src/components/Menu/index.web.tsx:83 msgid "Context menu backdrop, click to close the menu." -msgstr "Фон контекстного меню нажмите, чтобы закрыть меню." +msgstr "Фон контекстного меню, нажмите, чтобы закрыть меню." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Далее" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Продолжить как {0} (текущий пользователь)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "Продолжить обсуждение..." +msgstr "Продолжить ветку..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Перейти к следующему шагу" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "Беседа удалена" @@ -1424,20 +1489,21 @@ msgstr "Кулинария" msgid "Copied" msgstr "Скопировано" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Версия сборки скопирована в буфер обмена" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Скопировано в буфер обмена" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Скопировано!" @@ -1445,17 +1511,17 @@ msgstr "Скопировано!" msgid "Copies app password" msgstr "Копирует пароль приложения" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Копировать" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Копировать {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Копировать код" @@ -1467,12 +1533,12 @@ msgstr "Копировать ссылку" msgid "Copy Link" msgstr "Копировать ссылку" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Копировать ссылку на список" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Копировать ссылку на пост" @@ -1481,17 +1547,17 @@ msgstr "Копировать ссылку на пост" msgid "Copy message text" msgstr "Копировать текст сообщения" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Копировать текст поста" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "Копировать QR-код" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Политика защиты авторского права" @@ -1499,50 +1565,55 @@ msgstr "Политика защиты авторского права" msgid "Could not leave chat" msgstr "Не удалось выйти из чата" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Не удалось загрузить ленту" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Не удалось загрузить список" #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" -msgstr "Не удалось отключить звук в чате" +msgstr "Не удалось заглушить чат" #: src/view/com/composer/videos/VideoPreview.web.tsx:56 msgid "Could not process your video" msgstr "Не удалось обработать ваше видео" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "Создать" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Создать новую учетную запись" +#~ msgid "Create a new account" +#~ msgstr "Создать новую учетную запись" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Создать новую учетную запись Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "Создать QR-код для стартового набора" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "Создать стартовый набор" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "Создать для меня стартовый набор" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Создать учетную запись" @@ -1551,11 +1622,11 @@ msgstr "Создать учетную запись" msgid "Create an account" msgstr "Создать учетную запись" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" -msgstr "Создайть аватар вместо этого" +msgstr "Создать аватар вместо этого" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "Создать еще один" @@ -1564,7 +1635,7 @@ msgid "Create App Password" msgstr "Создать пароль приложения" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Создать новую учетную запись" @@ -1572,86 +1643,87 @@ msgstr "Создать новую учетную запись" msgid "Create report for {0}" msgstr "Создать отчет для {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Создано: {0}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Культура" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Пользовательский" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Собственный домен" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." -msgstr "Кастомные ленты, созданные сообществом, подарят вам новые впечатления и помогут найти контент, который вы любите." +msgstr "Пользовательские ленты, созданные сообществом, подарят вам новые впечатления и помогут найти контент, который вы любите." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." -msgstr "Настройка медиа со внешних веб-сайтов." +msgstr "Настройка медиа с внешних веб-сайтов." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "Настройте, кто может взаимодействовать с этим сообщением." -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Черная" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Темный режим" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "Темная тема" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Дата рождения" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "Деактивировать мой аккаунт" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "Деактивировать мой аккаунт" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Настройка модерации" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Панель отладки" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Удалить" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Удалить учетную запись" @@ -1659,16 +1731,16 @@ msgstr "Удалить учетную запись" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "Удаление учетной записи <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Удалить пароль для приложения" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Удалить пароль для приложения?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "Удалить запись объявления чата" @@ -1676,7 +1748,7 @@ msgstr "Удалить запись объявления чата" msgid "Delete for me" msgstr "Удалить для меня" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Удалить список" @@ -1692,33 +1764,33 @@ msgstr "Удалите сообщение для меня" msgid "Delete my account" msgstr "Удалить мою учетную запись" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" -msgstr "Удалить мою учетную запись..." +msgstr "Удалить мою учетную запись…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Удалить пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "Удалить стартовый набор" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "Удалить стартовый набор?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Удалить этот список?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Удалить этот пост?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Удалено" @@ -1726,27 +1798,35 @@ msgstr "Удалено" msgid "Deleted post." msgstr "Удаленный пост." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "Удаление записи объявления чата" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Описание" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "Описательный альтернативный текст" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "Отделить цитату" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "Отделить цитату от поста?" @@ -1754,54 +1834,58 @@ msgstr "Отделить цитату от поста?" msgid "Dialog: adjust who can interact with this post" msgstr "Диалог: настройте, кто может взаимодействовать с этим сообщением" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Вы хотели что-то написать?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Тусклая" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "Прямые сообщения здесь!" +#~ msgid "Direct messages are here!" +#~ msgstr "Прямые сообщения здесь!" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "Отключить автовоспроизведение для видео и GIF-файлов" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Отключить 2FA по электронной почте" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "Отключить тактильную обратную связь" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "Отключить субтитры" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Отключено" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Удалить" -#: src/view/com/composer/Composer.tsx:837 -msgid "Discard draft?" -msgstr "Выбросить черновик?" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 +msgid "Discard draft?" +msgstr "Удалить черновик?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросить приложения не показывать мою учетную запись незалогиненным пользователям" @@ -1814,41 +1898,59 @@ msgstr "Откройте для себя новые пользовательск msgid "Discover new feeds" msgstr "Откройте для себя новые ленты" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Откройте для себя новые ленты" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "Пропустить" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "Пропустить" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "Пропустить ошибку" #: src/components/ProgressGuide/List.tsx:40 msgid "Dismiss getting started guide" -msgstr "Пропустите руководство по началу работы" +msgstr "Пропустить руководство по началу работы" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "Отображение больших значков альтернативного текста" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Имя" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Имя" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Имя" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Панель DNS" #: src/components/dialogs/MutedWords.tsx:302 msgid "Do not apply this mute word to users you follow" -msgstr "Не применять это игнорируемое слово к пользователям, за которыми вы следите" +msgstr "Не применять это игнорируемое слово к пользователям, на которых вы подписаны" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." @@ -1858,38 +1960,37 @@ msgstr "Не содержит обнаженности." msgid "Doesn't begin or end with a hyphen" msgstr "Не начинается или заканчивается дефисом" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Значение домена" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Домен проверен!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Готово" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Готово" @@ -1898,20 +1999,24 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "Скачать Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" -msgstr "Загрузить CAR файл" +msgstr "Скачать CAR файл" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Перетащите и отпустите, чтобы добавить изображение" @@ -1919,98 +2024,103 @@ msgstr "Перетащите и отпустите, чтобы добавить msgid "Duration:" msgstr "Продолжительность:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" -msgstr "для примера, алиса" +msgstr "например, alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "напр. Алиса Робертс" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "например, Алиса Робертс" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" -msgstr "для примера, alice.ru" +msgstr "например, alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "например, художница, собачница и заядлая читательница." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "например, художница, собачница и заядлая читательница." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Например, художественная обнаженность." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" -msgstr "напр. Великолепные писари" +msgstr "например, Крутые авторы" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" -msgstr "напр. спамеры" +msgstr "например, Cпамеры" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." -msgstr "напр. Писари, которые ничего не пропускают." +msgstr "например, Авторы, которые ничего не пропускают." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." -msgstr "напр. пользователи, неоднократно отвечавшие рекламой." +msgstr "например, Пользователи, неоднократно отвечавшие рекламой." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Каждый код приглашения работает только один раз. Время от времени вы будете получать новые коды." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Редактировать" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Редактировать" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Изменить фото профиля" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "Редактировать ленты" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Редактировать изображение" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "Редактировать настройки взаимодействия" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Редактировать описание списка" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Редактирование списка" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Редактировать мои ленты" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Редактировать мой профиль" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Редактировать мой профиль" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "Редактировать людей" @@ -2019,21 +2129,23 @@ msgstr "Редактировать людей" msgid "Edit post interaction settings" msgstr "Редактировать настройки взаимодействия с постом" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Редактировать профиль" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Редактировать профиль" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "Редактировать стартовый набор" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Редактировать список пользователей" @@ -2041,24 +2153,24 @@ msgstr "Редактировать список пользователей" msgid "Edit who can reply" msgstr "Редактировать, кто может отвечать" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Редактировать ваш псевдоним для показа" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Редактировать ваше имя" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Редактировать описание вашего профиля" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Редактировать описание вашего профиля" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "Редактировать свой стартовый набор" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Образование" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Электронная почта" @@ -2067,42 +2179,42 @@ msgstr "Электронная почта" msgid "Email 2FA disabled" msgstr "Отключение 2FA по электронной почте" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Адрес электронной почты" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" -msgstr "" +msgstr "Подтверждение отправлено повторно" #: src/view/com/modals/ChangeEmail.tsx:54 #: src/view/com/modals/ChangeEmail.tsx:83 msgid "Email updated" -msgstr "Электронный адрес изменен" +msgstr "Электронная почта изменена" #: src/view/com/modals/ChangeEmail.tsx:106 msgid "Email Updated" -msgstr "Электронный адрес обновлен" +msgstr "Электронная почта обновлена" #: src/view/com/modals/VerifyEmail.tsx:85 msgid "Email verified" -msgstr "Электронный адрес проверен" +msgstr "Электронная почта проверена" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" -msgstr "" +msgstr "Электронная почта подтверждена" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" -msgstr "Эл. почта:" +msgstr "Электронная почта:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Встроить HTML-код" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Встроить пост" @@ -2110,55 +2222,55 @@ msgstr "Встроить пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Встройте этот пост в Ваш сайт. Просто скопируйте этот скрипт и вставьте его в HTML код вашего сайта." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Включить только {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Разрешить содержимое для взрослых" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Включить внешние медиа" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Включить медиапроигрыватели для" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "Включить приоритетные уведомления" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "Включить субтитры" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Включить только этот источник" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Включено" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Конец ленты" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." -msgstr "" +msgstr "Убедитесь, что вы выбрали язык для каждого файла субтитров." #: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Введите имя для этого пароля приложения" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Введите пароль" @@ -2167,6 +2279,10 @@ msgstr "Введите пароль" msgid "Enter a word or tag" msgstr "Введите слово или тег" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Введите код подтверждения" @@ -2175,20 +2291,20 @@ msgstr "Введите код подтверждения" msgid "Enter the code you received to change your password." msgstr "Введите код, который вы получили, чтобы изменить пароль." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Введите домен, который вы хотите использовать" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Введите адрес электронной почты, который вы использовали для создания учетной записи. Мы вышлем вам \"код подтверждения\", чтобы вы могли установить новый пароль." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Введите вашу дату рождения" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Введите адрес электронной почты" @@ -2200,10 +2316,14 @@ msgstr "Введите вашу новую электронную почту в msgid "Enter your new email address below." msgstr "Введите новый адрес электронной почты." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Введите псевдоним и пароль" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "Произошла ошибка при сохранении файла" @@ -2212,12 +2332,12 @@ msgstr "Произошла ошибка при сохранении файла" msgid "Error receiving captcha response." msgstr "Ошибка получения ответа Captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Ошибка:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Каждый" @@ -2229,30 +2349,28 @@ msgstr "Каждый может ответить" msgid "Everybody can reply to this post." msgstr "Все могут ответить на этот пост." -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Все" #: src/lib/moderation/useReportOptions.ts:73 msgid "Excessive mentions or replies" -msgstr "Спам; чрезмерные упоминания или ответы" +msgstr "Чрезмерные упоминания или ответы" #: src/lib/moderation/useReportOptions.ts:86 msgid "Excessive or unwanted messages" -msgstr "Чрезмерные и нежелательные сообщения" +msgstr "Чрезмерные или нежелательные сообщения" #: src/components/dialogs/MutedWords.tsx:311 msgid "Exclude users you follow" -msgstr "Исключить пользователей, за которыми вы следите" +msgstr "Исключить пользователей, на которых вы подписаны" #: src/components/dialogs/MutedWords.tsx:514 msgid "Excludes users you follow" -msgstr "Исключает пользователей, за которыми вы следите" +msgstr "Исключает пользователей, на которых вы подписаны" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "Выйти из полноэкранного режима" @@ -2260,11 +2378,11 @@ msgstr "Выйти из полноэкранного режима" msgid "Exits account deletion process" msgstr "Выходит из процесса удаления учетной записи" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Выходит из процесса изменения псевдонима пользователя" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Выходит из процесса обрезки изображений" @@ -2278,20 +2396,24 @@ msgstr "Выходит из поиска" #: src/view/com/lightbox/Lightbox.web.tsx:183 msgid "Expand alt text" -msgstr "Развернуть описание" +msgstr "Развернуть альтернативный текст" #: src/view/com/notifications/FeedItem.tsx:266 msgid "Expand list of users" msgstr "Развернуть список пользователей" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Развернуть или свернуть весь пост, на который вы отвечаете" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." -msgstr "Экспериментально: если включить это предпочтение, вы будете получать уведомления об ответах и цитатах только от тех пользователей, за которыми вы следите. Со временем мы продолжим добавлять сюда дополнительные элементы управления." +msgstr "Экспериментально: если включить эту настройку, вы будете получать уведомления об ответах и цитатах только от тех пользователей, на которых вы подписаны. Со временем мы продолжим добавлять сюда дополнительные элементы управления." #: src/components/dialogs/MutedWords.tsx:500 msgid "Expired" @@ -2303,38 +2425,38 @@ msgstr "Истекает {0}" #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." -msgstr "Откровенно или потенциально проблемный контент." +msgstr "Откровенный или потенциально проблемный контент." #: src/lib/moderation/useGlobalLabelStrings.ts:35 msgid "Explicit sexual images." msgstr "Откровенные сексуальные изображения." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Экспорт моих данных" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Экспорт моих данных" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Внешние медиа" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Внешние медиа могут позволить веб-сайтам собирать информацию о вас и вашем устройстве. Информация не отправляется и не запрашивается, пока не нажата кнопка \"Воспроизвести\"." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Настройка внешних медиа" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Настройка внешних медиа" @@ -2343,12 +2465,12 @@ msgstr "Настройка внешних медиа" msgid "Failed to create app password." msgstr "Не удалось создать пароль приложения." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "Не удалось создать стартовый набор" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Не удалось создать список. Проверьте интернет-соединение и попробуйте еще раз." @@ -2356,25 +2478,24 @@ msgstr "Не удалось создать список. Проверьте ин msgid "Failed to delete message" msgstr "Не удалось удалить сообщение" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Не удалось удалить пост, попробуйте еще раз" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "Не удалось удалить стартовый набор" #: src/view/screens/Search/Explore.tsx:427 #: src/view/screens/Search/Explore.tsx:455 msgid "Failed to load feeds preferences" -msgstr "Не удалось загрузить предпочтения ленты" +msgstr "Не удалось загрузить настройки ленты" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "Не удалось загрузить GIF-файлы" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "Не удалось загрузить предыдущие сообщения" @@ -2387,7 +2508,11 @@ msgstr "Не удалось загрузить предложенные лент msgid "Failed to load suggested follows" msgstr "Не удалось загрузить предложенные подписки" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Не удалось сохранить изображение: {0}" @@ -2395,86 +2520,90 @@ msgstr "Не удалось сохранить изображение: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Не удалось сохранить настройки уведомлений, попробуйте еще раз" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "Не удалось отправить" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Не удалось подать апелляцию, попробуйте еще раз." -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" -msgstr "Не удалось отключить звук, попробуйте еще раз" +msgstr "Не удалось переключить игнорирование ветки, попробуйте еще раз" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "Не удалось обновить ленты" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "Не удалось обновить настройки" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "Не удалось загрузить видео" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Лента" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Лента от {0}" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "Переключение ленты" +msgstr "Переключатель ленты" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Обратная связь" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Ленты" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Ленты - это алгоритмы, созданные пользователями с некоторым опытом программирования. <0/> для дополнительной информации." -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Ленты обновлены!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Содержимое файла" #: src/view/screens/Settings/ExportCarDialog.tsx:42 msgid "File saved successfully!" -msgstr "Файл успешно сохранен!!" +msgstr "Файл успешно сохранен!" #: src/lib/moderation/useLabelBehaviorDescription.ts:66 msgid "Filter from feeds" msgstr "Фильтровать из лент" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Завершение" @@ -2484,19 +2613,19 @@ msgstr "Завершение" msgid "Find accounts to follow" msgstr "Найдите учетные записи для подписки" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "Найти посты и пользователей в Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Выберите, что вы хотите видеть в своей ленте подписок." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Настройте отображение обсуждений." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Финиш" @@ -2504,25 +2633,25 @@ msgstr "Финиш" msgid "Fitness" msgstr "Фитнес" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Гибкий" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Отзеркалить горизонтально" +#~ msgid "Flip horizontal" +#~ msgstr "Отзеркалить горизонтально" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Отзеркалить вертикально" +#~ msgid "Flip vertically" +#~ msgstr "Отзеркалить вертикально" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Подписаться" @@ -2531,12 +2660,12 @@ msgctxt "action" msgid "Follow" msgstr "Подписаться" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Подписаться на {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "Подписаться на {name}" @@ -2544,24 +2673,24 @@ msgstr "Подписаться на {name}" msgid "Follow 7 accounts" msgstr "Подпишитесь на 7 учетных записей" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Подписаться на учетную запись" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" -msgstr "Подписаться на все" +msgstr "Подписаться на всех" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Подписаться в ответ" #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" msgstr "Подписаться в ответ" #: src/view/screens/Search/Explore.tsx:334 @@ -2584,7 +2713,7 @@ msgstr "Подписаны <0>{0} и <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Подписаны <0>{0}, <1>{1} и {2, plural, one {# другой} other {# другие}}." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Ваши подписки" @@ -2596,87 +2725,102 @@ msgstr "подписал(ся/ись) на вас" msgid "followed you back" msgstr "подписал(ся/ись) на вас в ответ" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Подписчики" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "Подписчики @{0}, которых вы знаете" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "Подписчики, которых вы знаете" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" -msgstr "В подписках" +msgstr "Подписки" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Подписка на {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "Подписка на {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Настройка ленты подписок" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Настройка ленты подписок" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Подписаны на вас" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Подписаны на вас" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Еда" #: src/view/com/modals/DeleteAccount.tsx:129 msgid "For security reasons, we'll need to send a confirmation code to your email address." -msgstr "По соображениям безопасности нам нужно будет отправить код подтверждения на ваш электронный адрес." +msgstr "По соображениям безопасности нам нужно будет отправить код подтверждения на вашу электронную почту." #: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "По соображениям безопасности этот пароль отображается только один раз. Если вы потеряете этот пароль, вам нужно будет сгенерировать новый." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "Навсегда" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Забыли пароль" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Забыли пароль?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Забыли пароль?" @@ -2684,34 +2828,34 @@ msgstr "Забыли пароль?" msgid "Frequently Posts Unwanted Content" msgstr "Часто публикует неприемлемый контент" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "От @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Из <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "Полноэкранный режим" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Галерея" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "Сгенерировать стартовый набор" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "Получить помощь" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "Приступить" +#~ msgid "Get started" +#~ msgstr "Приступить" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -2726,7 +2870,7 @@ msgstr "Начало работы" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "Придайте своему профилю лицо" @@ -2734,14 +2878,13 @@ msgstr "Придайте своему профилю лицо" msgid "Glaring violations of law or terms of service" msgstr "Грубые нарушения закона или условий использования" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Назад" @@ -2749,39 +2892,39 @@ msgstr "Назад" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Назад" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Вернуться к предыдущему шагу" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "Вернуться к предыдущему шагу" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Вернуться на главную" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Вернуться на главную" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "Перейти к беседе с {0}" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Далее" @@ -2795,6 +2938,8 @@ msgid "Go to user's profile" msgstr "Перейти к профилю пользователя" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Графический медиаконтент" @@ -2802,11 +2947,11 @@ msgstr "Графический медиаконтент" msgid "Half way there!" msgstr "Полпути пройдено!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Псевдоним" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "Тактильные ощущения" @@ -2814,24 +2959,24 @@ msgstr "Тактильные ощущения" msgid "Harassment, trolling, or intolerance" msgstr "Домогательства, троллинг или нетерпимость" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Хештег" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Хештег: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Возникли проблемы?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Справка" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Чтобы люди знали, что вы не бот, загрузите фотографию или создайте аватар." @@ -2839,56 +2984,56 @@ msgstr "Чтобы люди знали, что вы не бот, загрузи msgid "Here is your app password." msgstr "Это ваш пароль для приложений." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "Скрытый список" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Скрыть" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Спрятать" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "Спрятать пост для меня" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "Спрятать ответ для всех" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "Спрятать ответ для меня" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Скрыть содержимое" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Скрыть этот пост?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "Скрыть этот ответ?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Скрыть список пользователей" @@ -2912,7 +3057,7 @@ msgstr "Хмм, сервер ленты прислал нам непонятны msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Хмм, мы не можем найти эту ленту. Возможно она была удалена." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Похоже, у нас возникли проблемы с загрузкой этих данных. Просмотрите детали ниже. Если проблема не исчезнет, пожалуйста, свяжитесь с нами." @@ -2920,45 +3065,49 @@ msgstr "Похоже, у нас возникли проблемы с загру msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хммм, мы не смогли загрузить этот сервис модерации." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" -msgstr "" +msgstr "Подождите! Мы постепенно даем доступ к видео, и вы все еще в очереди. Возвращайтесь позже!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Главная" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Хост:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Хостинг-провайдер" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Как вы хотите открыть эту ссылку?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "У меня есть код" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "У меня есть код подтверждения" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "У меня есть собственный домен" @@ -2972,18 +3121,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Раскрывает альтернативный текст, если текст слишком длинный" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Если не выбрано ни одного варианта - подходит для всех." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Если не выбрано ни одного варианта - подходит для всех." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Если вы еще не достигли совершеннолетия в соответствии с законами вашей страны, ваш родитель или юридический опекун должен прочитать эти Условия от вашего имени." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Если вы удалите этот список, вы не сможете его восстановить." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Если вы удалите этот пост, вы не сможете его восстановить." @@ -2999,18 +3148,17 @@ msgstr "Если вы хотите изменить свой логин или msgid "Illegal and Urgent" msgstr "Незаконно и срочно" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Изображение" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Описание изображения" +#~ msgid "Image alt text" +#~ msgstr "Описание изображения" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" -msgstr "Изображение сохраняется в папке камеры!" +msgstr "Изображение сохранено в папке камеры!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -3024,7 +3172,7 @@ msgstr "Выдача себя за другого, дезинформация и msgid "Inappropriate messages or explicit links" msgstr "Неприемлемые сообщения или откровенные ссылки" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Введите код, отправленный на вашу электронную почту для сброса пароля" @@ -3036,7 +3184,7 @@ msgstr "Введите код подтверждения для удаления msgid "Input name for app password" msgstr "Введите имя для пароля приложения" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Введите новый пароль" @@ -3044,19 +3192,19 @@ msgstr "Введите новый пароль" msgid "Input password for account deletion" msgstr "Введите пароль для удаления учетной записи" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "Введите код, который был отправлен вам по электронной почте" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" -msgstr "Введите псевдоним или эл. адрес, которые вы использовали для регистрации" +msgstr "Введите псевдоним или адрес электронной почты, которые вы использовали для регистрации" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Введите ваш пароль" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Введите желаемого хостинг-провайдера" @@ -3064,15 +3212,19 @@ msgstr "Введите желаемого хостинг-провайдера" msgid "Input your user handle" msgstr "Введите ваш псевдоним" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "Взаимодействие ограничено" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "Представление прямых сообщений" +#~ msgid "Introducing Direct Messages" +#~ msgstr "Представление прямых сообщений" -#: src/screens/Login/LoginForm.tsx:145 +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Неверный код подтверждения 2FA." @@ -3081,20 +3233,20 @@ msgstr "Неверный код подтверждения 2FA." msgid "Invalid or unsupported post record" msgstr "Неверный или неподдерживаемый пост" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Неверное имя пользователя или пароль" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" -msgstr "" +msgstr "Неверный код подтверждения" #: src/view/com/modals/InviteCodes.tsx:94 msgid "Invite a Friend" msgstr "Пригласить друга" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Код приглашения" @@ -3116,56 +3268,70 @@ msgstr "Пригласите людей в этот стартовый набо #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "Пригласите людей в этот стартовый набор!" +msgstr "Пригласите друзей, чтобы они подписались на ваши любимые ленты и людей" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" msgstr "Приглашения, но личные" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "Сейчас здесь только вы! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше." -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "ID вакансии: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Вакансии" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "Присоединиться к Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Присоединиться к беседе" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Журналистика" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Отмечен {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Метка добавлена автором." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Метки" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Метки являются аннотациями для пользователей и контента. Они могут использоваться для скрытия, предупреждения и категоризации сети." @@ -3182,48 +3348,58 @@ msgstr "Метки на вашем контенте" msgid "Language selection" msgstr "Выбор языка" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Настройка языка" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Настройка языков" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Языки" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Недавние" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Узнать больше" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "Узнайте больше о Bluesky" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Узнайте больше о том, какая модерация применима к этому содержимому." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Узнать больше об этом предупреждении" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Узнать больше о том, что является публичным в Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Узнать больше." @@ -3244,7 +3420,7 @@ msgstr "Выйти из чата" msgid "Leave conversation" msgstr "Выйти из беседы" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Оставьте их все неотмеченными, чтобы видеть посты независимо от языка." @@ -3256,21 +3432,20 @@ msgstr "Вы покидаете Bluesky" msgid "left to go." msgstr "еще осталось." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "Позвольте мне выбрать" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Давайте восстановим ваш пароль!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Взлетаем!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Светлая" @@ -3281,23 +3456,23 @@ msgstr "Лайкните 10 сообщений" #: src/state/shell/progress-guide.tsx:157 #: src/state/shell/progress-guide.tsx:162 msgid "Like 10 posts to train the Discover feed" -msgstr "Лайкните 10 сообщений, чтобы обучиться ленте Discover" +msgstr "Лайкните 10 сообщений, чтобы обучить ленту Discover" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" -msgstr "Лайкните эту ленту" +msgstr "Лайкнуть эту ленту" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Понравилось" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Понравился пользователю" @@ -3309,7 +3484,7 @@ msgstr "понравилась ваша лента" msgid "liked your post" msgstr "понравился ваш пост" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Нравится" @@ -3317,24 +3492,24 @@ msgstr "Нравится" msgid "Likes on this post" msgstr "Лайки этого поста" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Список" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Аватар списка" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Список заблокирован" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Список от {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Список удален" @@ -3342,32 +3517,31 @@ msgstr "Список удален" msgid "List has been hidden" msgstr "Список был спрятан" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "Список скрытых" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Список игнорируется" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Название списка" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Список разблокирован" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Список больше не игнорируется" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Списки" @@ -3385,24 +3559,24 @@ msgstr "Загрузить больше предлагаемых лент" #: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" -msgstr "Загрузите больше предложенного" +msgstr "Загрузить больше предлагаемых подписок" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Загрузить новые уведомления" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Загрузить новые посты" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Загрузка..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Отчет" @@ -3418,21 +3592,29 @@ msgstr "Войдите или зарегистрируйтесь" msgid "Log out" msgstr "Выйти" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Видимость для пользователей без учетной записи" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Войти в учетную запись, которой нет в списке" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "Длительное нажатие открывает меню тегов для #{tag}" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" -msgstr "Выглядит как XXXXX-XXXXXXXXX" +msgstr "Выглядит как XXXXX-XXXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." @@ -3444,9 +3626,9 @@ msgstr "Похоже, вы открепили все свои ленты. Но #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Похоже, вам не хватает следующей ленты. <0>Нажмите здесь, чтобы добавить одну." +msgstr "Похоже, у вас не хватает ленты подписок. <0>Нажмите здесь, чтобы добавить одну." -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "Сделать один для меня" @@ -3463,30 +3645,35 @@ msgstr "Настраивайте ваши игнорируемые слова и msgid "Mark as read" msgstr "Отметить как прочитанное" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Медиа" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "упомянутые пользователи" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Упомянутые пользователи" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Меню" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "Сообщение {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "Сообщение удалено" @@ -3494,23 +3681,23 @@ msgstr "Сообщение удалено" msgid "Message from server: {0}" msgstr "Сообщение от сервера: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "Поле ввода сообщения" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "Сообщение слишком длинное" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "Настройки сообщений" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Сообщения" @@ -3523,63 +3710,63 @@ msgid "Misleading Post" msgstr "Ложный пост" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "Режим" +#~ msgid "Mode" +#~ msgstr "Режим" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Модерация" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Детали модерации" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Список модерации от {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Список модерации от <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Список модерации от вас" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Список модерации создан" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Список модерации обновлен" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" -msgstr "Списки для модерации" +msgstr "Списки модерации" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" -msgstr "Списки для модерации" +msgstr "Списки модерации" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "настройка модерации" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Настройка модерации" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Статус модерации" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Инструменты модерации" @@ -3588,7 +3775,7 @@ msgstr "Инструменты модерации" msgid "Moderator has chosen to set a general warning on the content." msgstr "Модератор решил установить общее предупреждение на контент." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Больше" @@ -3596,46 +3783,47 @@ msgstr "Больше" msgid "More feeds" msgstr "Больше лент" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Дополнительные опции" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" -msgstr "По количеству предпочтений" +msgstr "По количеству лайков" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "Кино" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "Музыка" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" -msgid "Mute" -msgstr "" - -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "Игнорировать" +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "Выключить звук" + #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "Игнорировать {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" -msgstr "Игнорировать" +msgstr "Игнорировать учетную запись" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Игнорировать учетные записи" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Игнорировать все посты {displayTag}" @@ -3648,11 +3836,11 @@ msgstr "Отключить звук" msgid "Mute in:" msgstr "Игнорируемое:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Игнорировать список" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Игнорировать эти учетные записи?" @@ -3680,13 +3868,13 @@ msgstr "Игнорировать это слово только в тегах" msgid "Mute this word until you unmute it" msgstr "Игнорировать это слово пока вы его не включите" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" -msgstr "Игнорировать обсуждение" +msgstr "Игнорировать ветку" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Игнорировать слова и теги" @@ -3694,16 +3882,16 @@ msgstr "Игнорировать слова и теги" #~ msgid "Muted" #~ msgstr "Игнорируется" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Игнорируемые учетные записи" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Игнорируемые учетные записи" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Игнорируемые учетные записи автоматически убираются из вашей ленты и уведомлений. Игнорирование является полностью частным." @@ -3711,41 +3899,41 @@ msgstr "Игнорируемые учетные записи автоматич msgid "Muted by \"{0}\"" msgstr "Проигнорировано списком \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Игнорируемые слова и теги" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "Игнорирование является частным. Игнорируемые учетные записи могут взаимодействовать с вами, но вы не будете видеть их посты и не будете получать от них уведомления." +msgstr "Игнорирование является приватным. Игнорируемые учетные записи могут взаимодействовать с вами, но вы не будете видеть их посты и не будете получать от них уведомления." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" -msgstr "Мой день рождения" +msgstr "Моя дата рождения" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Мои ленты" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Мой профиль" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Мои сохраненные ленты" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Мои сохраненные ленты" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Имя" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Необходимое название" @@ -3754,63 +3942,71 @@ msgstr "Необходимое название" #: src/lib/moderation/useReportOptions.ts:106 #: src/lib/moderation/useReportOptions.ts:114 msgid "Name or Description Violates Community Standards" -msgstr "Имя или Описание нарушают стандарты сообщества" +msgstr "Имя или описание нарушают стандарты сообщества" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Природа" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" -msgstr "Перейдите к {0}" +msgstr "Перейти к {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "Перейдите к стартовому набору" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "Перейти к стартовому набору" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Переходит к следующему экрану" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Переходит к вашему профилю" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Хотите сообщить о нарушении авторских прав?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Никогда не теряйте доступ к вашим подписчикам и данным." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Неважно, создайте для меня псевдоним" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Новый" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Новый" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Новый чат" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "Новые сообщения" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Новый список модерации" @@ -3822,22 +4018,22 @@ msgstr "Новый пароль" msgid "New Password" msgstr "Новый Пароль" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Новый пост" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Новый пост" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Новый пост" @@ -3846,30 +4042,30 @@ msgstr "Новый пост" msgid "New user info dialog" msgstr "Новый диалог информации о пользователе" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Новый список пользователей" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Сначала самые новые" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Новости" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3879,35 +4075,39 @@ msgstr "Далее" msgid "Next image" msgstr "Следующее изображение" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Нет" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Описание отсутствует" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Нет панели DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Не найдено ни одного тематического GIF. Возможно, возникла проблема с Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "Не найдено ни одной ленты. Попробуйте поискать что-нибудь еще." -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Вы больше не подписаны на {0}" @@ -3915,11 +4115,11 @@ msgstr "Вы больше не подписаны на {0}" msgid "No longer than 253 characters" msgstr "Не может быть длиннее 253 символов" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "Сообщения пока отсутствуют" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "Больше никаких бесед для показа" @@ -3927,10 +4127,8 @@ msgstr "Больше никаких бесед для показа" msgid "No notifications yet!" msgstr "Еще никаких уведомлений!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Никого" @@ -3938,16 +4136,24 @@ msgstr "Никого" msgid "No one but the author can quote this post." msgstr "Никто, кроме автора, не может цитировать это сообщение." -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "Пока нет постов." -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Нет результатов" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "Нет результатов" @@ -3955,37 +4161,45 @@ msgstr "Нет результатов" msgid "No results found" msgstr "Нет результатов" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Ничего не найдено по запросу \"{query}\"" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Ничего не найдено по запросу \"{query}\"" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "Результаты поиска по запросу \"{search}\" не найдены." -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Нет, спасибо" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Никто" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Пока это никому не понравилось. Возможно, вы должны быть первым!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "Никто не найден. Попробуйте поискать кого-нибудь другого." @@ -3993,8 +4207,8 @@ msgstr "Никто не найден. Попробуйте поискать ко msgid "Non-sexual Nudity" msgstr "Несексуальная обнаженность" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Не найдено" @@ -4003,49 +4217,48 @@ msgstr "Не найдено" msgid "Not right now" msgstr "Позже" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Примечание по распространению" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примечание: Bluesky является открытой и публичной сетью. Этот параметр ограничивает видимость вашего содержимого только в приложениях и на сайте Bluesky, но другие приложения могут этого не придерживаться. Ваш контент все еще может быть показан посетителям без учетной записи другими приложениями и веб-сайтами." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "Ничего здесь нет" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "Фильтры уведомлений" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Настройки уведомления" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "Настройки уведомления" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "Звуки уведомлений" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "Звуки уведомлений" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Уведомления" @@ -4053,11 +4266,12 @@ msgstr "Уведомления" msgid "now" msgstr "сейчас" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "Сейчас" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Нагота" @@ -4069,45 +4283,44 @@ msgstr "Нагота или материалы для взрослых не по msgid "Off" msgstr "Отключено" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" -msgstr "О, нет!" +msgstr "О нет!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." -msgstr "Ой! Что-то пошло не так." +msgstr "О нет! Что-то пошло не так." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "ОК" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Хорошо" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" -msgstr "Сначала самые древние" +msgstr "Сначала самые старые" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "на<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Сброс настроек" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." -msgstr "Для одного или нескольких изображений отсутствует описание." +msgstr "Для одного или нескольких изображений отсутствует альтернативный текст." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "Поддерживаются только файлы .jpg и .png" @@ -4119,7 +4332,11 @@ msgstr "Только {0} могут отвечать." msgid "Only contains letters, numbers, and hyphens" msgstr "Только буквы, цифры и дефис" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "Поддерживаются только файлы WebVTT (.vtt)" @@ -4128,50 +4345,54 @@ msgid "Oops, something went wrong!" msgstr "Ой, что-то пошло не так!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Ой!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Открыть" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "Открыть контекстное меню профиля {name}" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" -msgstr "Открытый создатель аватаров" +msgstr "Открыть создатель аватара" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "Открыть настройки беседы" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Открыть подборщик эмодзи" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Открыть меню настроек ленты" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" -msgstr "Открывать ссылки встроенным браузером" +msgstr "Открывать ссылки во встроенном браузере" #: src/components/dms/ActionsWrapper.tsx:87 msgid "Open message options" msgstr "Открыть параметры сообщений" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Открыть настройки игнорирования слов и тегов" @@ -4179,20 +4400,20 @@ msgstr "Открыть настройки игнорирования слов и msgid "Open navigation" msgstr "Открыть навигацию" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Открыть меню настроек поста" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "Открыть меню стартового набора" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Открыть страницу storybook" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Открыть системный журнал" @@ -4200,53 +4421,57 @@ msgstr "Открыть системный журнал" msgid "Opens {numItems} options" msgstr "Открывает меню с {numItems} опциями" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 -msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Открывает диалог, позволяющий выбрать, кто может отвечать в этой теме" +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "Открывает диалог, позволяющий выбрать, кто может отвечать в этой ветке" + +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "Открывает параметры доступности" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Открывает дополнительную информацию о записи для отладки" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "Открывает настройки внешнего вида" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Открывает камеру на устройстве" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "Открывает настройки чата" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Открывает редактор" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Открывает настройки языков" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Открывает фотогалерею устройства" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Открывает настройки внешних встроек" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Открывает процесс создания новой учетной записи Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Открывает процесс входа в существующую учетную запись Bluesky" @@ -4258,51 +4483,51 @@ msgstr "Открывает диалоговое окно выбора GIF" msgid "Opens list of invite codes" msgstr "Открывает список кодов приглашения" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "Открывает модальное окно для подтверждения деактивации аккаунта" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Открывает модальное окно для подтверждения удаления учетной записи. Требует код из электронной почты" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Открывает модальное окно для изменения пароля в Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Открывает модальное окно для выбора псевдонима в Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Открывает модальное окно для загрузки данных из вашей учетной записи Bluesky (репозиторий)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Открывает модальное окно для проверки электронной почты" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Открывает диалог настройки собственного домена в качестве псевдонима" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Открывает настройки модерации" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Открывает форму сброса пароля" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" -msgstr "Открывает страницу со всеми сохраненными каналами" +msgstr "Открывает страницу со всеми сохраненными лентами" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Открывает настройки паролей для приложений" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Открывает настройки ленты подписок" @@ -4310,34 +4535,34 @@ msgstr "Открывает настройки ленты подписок" msgid "Opens the linked website" msgstr "Открывает ссылку" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" -msgstr "Открывает страницу сборника рассказов" +msgstr "Открывает страницу storybook" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Открывает системный журнал" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Открывает настройки веток" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "Открывает этот профиль" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "Открывает окно выбора видео" #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" -msgstr "Опция {0} с {numItems}" +msgstr "Опция {0} из {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "По желанию предоставьте дополнительную информацию ниже:" @@ -4345,7 +4570,7 @@ msgstr "По желанию предоставьте дополнительну msgid "Options:" msgstr "Варианты:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Или какие-то из следующих вариантов:" @@ -4358,14 +4583,15 @@ msgid "Or, log into one of your other accounts." msgstr "Или войдите в одну из других своих учетных записей." #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Другое" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Другая учетная запись" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "Другие учетные записи" @@ -4373,21 +4599,21 @@ msgstr "Другие учетные записи" msgid "Other..." msgstr "Другие..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Наши модераторы рассмотрели сообщения и решили отключить вам доступ к чатам на Bluesky." #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Страница не найдена" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Страница не найдена" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4397,104 +4623,113 @@ msgstr "Пароль" msgid "Password Changed" msgstr "Пароль изменен" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Пароль изменен" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Пароль изменен!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "Приостановить" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "Приостановить видео" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Люди" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" -msgstr "Люди, на которых подписан(-а) @{0}" +msgstr "Люди, на которых подписан(а) @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Люди, которые подписаны на @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Требуется разрешение на доступ к папке камеры." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." -msgstr "Разрешение на доступ к папке камеры было запрещено. Пожалуйста, включите его в настройках системы." +msgstr "Доступ к папке камеры был запрещен. Пожалуйста, разрешите доступ в настройках системы." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "Переключение персон" +msgstr "Переключатель пользователя" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" -msgstr "Домашние любимцы" +msgstr "Домашние животные" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "Фотография" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Изображения, предназначенные для взрослых." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" -msgstr "Закрепить" +msgstr "Закрепить на главной" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Закрепить на главной" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Закрепленные ленты" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" -msgstr "Прикрепить к своим лентам" +msgstr "Закрепить в своих лентах" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "Воспроизвести" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Воспроизвести {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "Воспроизведение или приостановка GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "Воспроизвести видео" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Воспроизвести видео" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Воспроизводит GIF" @@ -4503,7 +4738,7 @@ msgid "Please choose your handle." msgstr "Пожалуйста, выберите псевдоним." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Пожалуйста, выберите ваш пароль." @@ -4513,11 +4748,11 @@ msgstr "Пожалуйста, завершите проверку Captcha." #: src/view/com/modals/ChangeEmail.tsx:65 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." -msgstr "Пожалуйста, подтвердите ваш адрес электронной почты, прежде чем изменить его. Это временное требование при добавлении инструментов обновления электронного адреса, вскоре оно будет удалено." +msgstr "Пожалуйста, подтвердите ваш адрес электронной почты, прежде чем изменить его. Это временное требование при добавлении инструментов обновления электронной почты, вскоре оно будет удалено." #: src/view/com/modals/AddAppPasswords.tsx:94 msgid "Please enter a name for your app password. All spaces is not allowed." -msgstr "Пожалуйста, введите имя для пароля приложения. Пробелы и пробелы не допускаются." +msgstr "Пожалуйста, введите имя для пароля приложения. Названия из одних пробелов не допускаются." #: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." @@ -4528,11 +4763,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Пожалуйста, введите допустимое слово, тег или фразу для игнорирования" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." -msgstr "Пожалуйста, введите адрес эл. почты." +msgstr "Пожалуйста, введите адрес электронной почты." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "Пожалуйста, введите код приглашения." @@ -4540,16 +4775,16 @@ msgstr "Пожалуйста, введите код приглашения." msgid "Please enter your password as well:" msgstr "Пожалуйста, также введите ваш пароль:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Пожалуйста, объясните, почему вы считаете, что эта метка была ошибочно добавлена к {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Пожалуйста, объясните, почему вы считаете, что ваши чаты были неправильно отключены" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "Пожалуйста, войдите под именем @{0}" @@ -4558,20 +4793,21 @@ msgid "Please Verify Your Email" msgstr "Подтвердите свой адрес электронной почты" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Пожалуйста, подождите пока завершится создание предварительного просмотра для ссылки" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Пожалуйста, подождите пока завершится создание предварительного просмотра для ссылки" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Политика" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Порнография" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Запостить" @@ -4585,17 +4821,21 @@ msgstr "Пост" msgid "Post by {0}" msgstr "Пост от {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Пост от @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Пост удален" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Пост скрыт" @@ -4610,7 +4850,7 @@ msgstr "Пост скрыт из-за игнорированного слова" msgid "Post Hidden by You" msgstr "Вы скрыли этот пост" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "Настройки взаимодействия с постами" @@ -4618,7 +4858,7 @@ msgstr "Настройки взаимодействия с постами" msgid "Post language" msgstr "Язык поста" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Языки поста" @@ -4627,18 +4867,26 @@ msgstr "Языки поста" msgid "Post not found" msgstr "Пост не найден" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "посты" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Посты" #: src/components/dialogs/MutedWords.tsx:115 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "Посты могут быть отключены на основании их текста, тегов или того и другого. Мы рекомендуем избегать общих слов, которые встречаются во многих сообщениях, так как это может привести к тому, что посты не будут показаны." +msgstr "Посты могут быть отключены на основании их текста, тегов или того и другого. Мы рекомендуем избегать общих слов, которые встречаются во многих сообщениях, так как это может привести к тому, что никакие посты не будут показаны." #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" @@ -4650,9 +4898,9 @@ msgstr "Потенциально обманчивая ссылка" #: src/state/queries/notifications/settings.ts:44 msgid "Preference saved" -msgstr "Предпочтения сохранены" +msgstr "Настройки сохранены" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Нажмите для попытки повторного подключения" @@ -4662,92 +4910,96 @@ msgstr "Сменить хостинг-провайдера" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Нажмите, чтобы повторить попытку" #: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" -msgstr "Нажмите, чтобы просмотреть подписчиков этой учетной записи, за которыми вы также следите" +msgstr "Нажмите, чтобы просмотреть подписчиков этой учетной записи, на которых вы также подписаны" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" msgstr "Предварительное изображение" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Основной язык" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Приоритезировать ваши подписки" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "Приоритетные уведомления" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Конфиденциальность" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Политика конфиденциальности" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "Частный чат с другими пользователями." +#~ msgid "Privately chat with other users." +#~ msgstr "Частный чат с другими пользователями." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Обработка..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "профиль" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Профиль" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Профиль обновлен" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." -msgstr "Защитите свою учетную запись, подтвердив свой электронный адрес." +msgstr "Защитите свою учетную запись, подтвердив свой адрес электронной почты." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Публичный" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Публичные, распространяемые списки пользователей для игнорирования или блокировки." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Публичные, распространяемые списки для создания лент." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Опубликовать пост" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Опубликовать пост" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Опубликовать ответ" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Опубликовать ответ" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4755,45 +5007,45 @@ msgstr "QR-код скопирован в ваш буфер обмена!" #: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" -msgstr "QR-код был загружен!" +msgstr "QR-код был скачан!" #: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "QR-код сохранен в папке камеры!" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "Цитировать пост" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "Пост с цитатой был повторно прикреплен" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "Пост с цитатой был успешно отсоединен" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "Цитирование постов отключено" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "Цитирование постов включено" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "Настройки цитирования" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Цитаты" @@ -4801,63 +5053,64 @@ msgstr "Цитаты" msgid "Quotes of this post" msgstr "Цитаты из этого поста" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "В случайном порядке (он же \"Poster's Roulette\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Соотношение сторон" +#~ msgid "Ratios" +#~ msgstr "Соотношение сторон" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "Прикрепить цитату заново" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "Реактивируйте свой аккаунт" +msgstr "Реактивировать свой аккаунт" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "Прочтите блог Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "Прочтите политику конфиденциальности Bluesky" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "Прочтите условия предоставления услуг Bluesky" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "Причина:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Последние запросы" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "Переподключиться" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "Обновить уведомления" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "Перезагрузить беседы" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4871,11 +5124,11 @@ msgstr "Удалить {displayName} из стартового набора" msgid "Remove account" msgstr "Удалить учетную запись" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "Удалить вложение" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Удалить аватар" @@ -4883,7 +5136,7 @@ msgstr "Удалить аватар" msgid "Remove Banner" msgstr "Удалить баннер" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "Удалить встраивание" @@ -4899,13 +5152,14 @@ msgstr "Удалить ленту?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Удалить из моих лент" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Удалить из моих лент?" @@ -4918,7 +5172,7 @@ msgstr "Удалить из быстрого доступа?" msgid "Remove from saved feeds" msgstr "Удалить из сохраненных лент" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Удалить изображение" @@ -4926,24 +5180,24 @@ msgstr "Удалить изображение" msgid "Remove mute word from your list" msgstr "Удалить игнорируемые слова из вашего списка" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "Удалить профиль" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "Удалить профиль из истории поиска" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "Убрать цитату" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Удалить репост" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "Удалить файл субтитров" @@ -4951,16 +5205,16 @@ msgstr "Удалить файл субтитров" msgid "Remove this feed from your saved feeds" msgstr "Удалить эту ленту из сохраненных лент" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "Удалено автором" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "Удалено вами" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Удалено из списка" @@ -4974,25 +5228,25 @@ msgid "Removed from saved feeds" msgstr "Удалено из сохраненных лент" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Удалено из моих лент" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" -msgstr "Удаляет процитированное сообщение" +msgstr "Удаляет процитированный пост" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "Удаляет вложения" +#~ msgid "Removes the attachment" +#~ msgstr "Удаляет вложение" #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "Заменить на Discover" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Ответы" @@ -5004,7 +5258,7 @@ msgstr "Ответы отключены" msgid "Replies to this post are disabled." msgstr "Ответы на этот пост отключены." -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Ответить" @@ -5012,48 +5266,48 @@ msgstr "Ответить" #: src/components/moderation/ModerationDetailsDialog.tsx:115 #: src/lib/moderation/useModerationCauseDescription.ts:123 msgid "Reply Hidden by Thread Author" -msgstr "Ответ скрыт автором темы" +msgstr "Ответ скрыт автором ветки" #: src/components/moderation/ModerationDetailsDialog.tsx:114 #: src/lib/moderation/useModerationCauseDescription.ts:122 msgid "Reply Hidden by You" msgstr "Ответ скрыт вами" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" -msgstr "Настройки ответа" +msgstr "Настройки ответов" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" -msgstr "Настройки ответа выбирает автор темы" +msgstr "Настройки ответов выбирает автор ветки" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Ответить на <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" -msgstr "Ответить на заблокированный пост" +msgstr "Ответ на заблокированный пост" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" -msgstr "Ответить на пост" +msgstr "Ответ на пост" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "Ответ вам" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "Обновление видимости ответа" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "Ответ был успешно скрыт" @@ -5063,27 +5317,27 @@ msgstr "Ответ был успешно скрыт" msgid "Report" msgstr "Пожаловаться" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" -msgstr "Пожаловаться" +msgstr "Пожаловаться на аккаунт" #: src/components/dms/ConvoMenu.tsx:197 #: src/components/dms/ConvoMenu.tsx:200 #: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" -msgstr "Пожаловаться" +msgstr "Пожаловаться на переписку" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Диалоговое окно для жалоб" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Пожаловаться на ленту" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Пожаловаться на список" @@ -5091,19 +5345,19 @@ msgstr "Пожаловаться на список" msgid "Report message" msgstr "Пожаловаться на сообщение" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Пожаловаться на пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "Пожаловаться на стартовый набор" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" -msgstr "Пожаловаться на это содержание" +msgstr "Пожаловаться на этот контент" #: src/components/ReportDialog/SelectReportOptionView.tsx:56 msgid "Report this feed" @@ -5113,11 +5367,11 @@ msgstr "Пожаловаться на эту ленту" msgid "Report this list" msgstr "Пожаловаться на этот список" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" -msgstr "Сообщить об этом сообщении" +msgstr "Пожаловаться на это сообщение" #: src/components/ReportDialog/SelectReportOptionView.tsx:50 msgid "Report this post" @@ -5131,9 +5385,9 @@ msgstr "Пожаловаться на этот стартовый набор" msgid "Report this user" msgstr "Пожаловаться на этого пользователя" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Репост" @@ -5143,34 +5397,34 @@ msgstr "Репост" msgid "Repost" msgstr "Репостить" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Репостить или цитировать" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" -msgstr "Сделал(-ла) репост" +msgstr "Сделали репост" + +#: src/view/com/posts/FeedItem.tsx:294 +msgid "Reposted by {0}" +msgstr "{0} сделал(а) репост" + +#: src/view/com/posts/FeedItem.tsx:313 +msgid "Reposted by <0><1/>" +msgstr "Репост от <0><1/>" #: src/view/com/posts/FeedItem.tsx:292 -msgid "Reposted by {0}" -msgstr "{0} сделал(-а) репост" - #: src/view/com/posts/FeedItem.tsx:311 -msgid "Reposted by <0><1/>" -msgstr "Сделан репост от <0><1/>" - -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 msgid "Reposted by you" -msgstr "Сделанный вами репост" +msgstr "Вы сделали репост" #: src/view/com/notifications/FeedItem.tsx:180 msgid "reposted your post" -msgstr "сделал(-а) репост вашего поста" +msgstr "сделал(а) репост вашего поста" #: src/view/com/post-thread/PostThreadItem.tsx:209 msgid "Reposts of this post" @@ -5186,30 +5440,36 @@ msgstr "Изменить" msgid "Request Code" msgstr "Отправить запрос на код" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" -msgstr "Требовать описание изображений перед публикацией" +msgstr "Требовать альтернативный текст изображений перед публикацией" #: src/view/screens/Settings/Email2FAToggle.tsx:51 msgid "Require email code to log into your account" msgstr "Требуется код электронной почты для входа в аккаунт" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Требуется этим хостинг-провайдером" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "Отправить письмо повторно" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" -msgstr "" +msgstr "Отправить письмо повторно" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" -msgstr "" +msgstr "Отправить письмо с подтверждением повторно" #: src/view/com/modals/ChangePassword.tsx:186 msgid "Reset code" @@ -5219,47 +5479,47 @@ msgstr "Код подтверждения" msgid "Reset Code" msgstr "Код сброса" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Сбросить состояние входа в систему" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Сбросить пароль" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" -msgstr "Сбросить состояние предпочтений" +msgstr "Сбросить состояние настроек" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Сброс состояния входа в систему" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" -msgstr "Сброс состояния предпочтений" +msgstr "Сбрасывает состояние настроек" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Повторная попытка входа" #: src/view/com/util/error/ErrorMessage.tsx:57 #: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" -msgstr "Повторить последнее действие, которое вызвало ошибку" +msgstr "Повторяет последнее действие, которое вызвало ошибку" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5269,51 +5529,62 @@ msgstr "Повторить попытку" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Вернуться к предыдущей странице" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Возвращает на главную страницу" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Возвращает к предыдущей странице" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Сохранить" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Сохранить" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Сохранить описание" +#~ msgid "Save alt text" +#~ msgstr "Сохранить описание" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" -msgstr "Сохранить день рождения" +msgstr "Сохранить дату рождения" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Сохранить изменения" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Сохранить изменения" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Сохранить новый псевдоним" @@ -5322,92 +5593,89 @@ msgstr "Сохранить новый псевдоним" msgid "Save image" msgstr "Сохранить изображение" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" -msgstr "Обрезать изображение" +msgstr "Сохранить обрезаное изображение" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "Сохранить QR-код" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Сохранить в мои ленты" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Сохраненные ленты" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" -msgstr "Сохранено в папке с камерой" +msgstr "Сохранено в папке камеры" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Сохранено в ваши ленты" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Сохраняет изменения вашего профиля" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Сохраняет изменения вашего профиля" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Сохраняет изменение псевдонима на {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Сохраняет настройки обрезки изображения" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "Скажи привет!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Наука" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Пролистать вверх" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Поиск" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Искать \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "Поиск \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Поиск всех сообщений @{authorHandle} с тегом {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Поиск всех сообщений от @{authorHandle} с тегом {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Поиск всех сообщений с тегом {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Поиск всех сообщений с тегом {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Поиск лент, которые вы хотите предложить другим." @@ -5415,18 +5683,16 @@ msgstr "Поиск лент, которые вы хотите предложит msgid "Search for users" msgstr "Поиск пользователей" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "Поиск GIF-файлов" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "Поиск профилей" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "Поиск в Tenor" @@ -5442,23 +5708,23 @@ msgstr "Просмотреть сообщения {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Просмотреть посты пользователя с {truncatedTag}" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Просмотреть посты с <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Просмотреть посты этого пользователя с <0>{displayTag}" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "Посмотреть вакансии в Bluesky" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Просмотрите это руководство" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "Искать ползунок" @@ -5470,7 +5736,7 @@ msgstr "Выбрать {item}" msgid "Select a color" msgstr "Выбрать цвет" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Выбрать учетную запись" @@ -5482,7 +5748,7 @@ msgstr "Выбрать аватар" msgid "Select an emoji" msgstr "Выбрать эмодзи" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Выбрать существующую учетную запись" @@ -5490,23 +5756,23 @@ msgstr "Выбрать существующую учетную запись" msgid "Select GIF" msgstr "Выбрать GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "Выбрать GIF \"{0}\"" #: src/components/dialogs/MutedWords.tsx:142 msgid "Select how long to mute this word for." -msgstr "Выберите, на какое время игнорировать это слова." +msgstr "Выберите, на какое время игнорировать это слово." -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "Выбрать язык..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Выбрать языки" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Выберите модератора" @@ -5514,23 +5780,23 @@ msgstr "Выберите модератора" msgid "Select option {i} of {numItems}" msgstr "Выбрать вариант {i} из {numItems}" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "Выберите файл субтитров (.vtt)" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" -msgstr "Выберите эмодзи {emojiName} в качестве своего аватара" +msgstr "Выбрать эмодзи {emojiName} в качестве своего аватара" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" -msgstr "Выберите сервис модерации для жалобы" +msgstr "Выберите сервис(ы) модерации для жалобы" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Выберите хостинг-провайдера для ваших данных." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "Выберите видео" @@ -5538,29 +5804,37 @@ msgstr "Выберите видео" msgid "Select what content this mute word should apply to." msgstr "Выберите, к какому содержимому следует применять это игнорируемое слово." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Выберите языки, на которых будут отображаться подписанные вами ленты. Если вы не выберете ни одного языка, будут отображаться все языки." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Выберите язык приложения для отображения текста по умолчанию." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Выберите дату рождения" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Выберите ваши интересы из нижеприведенных вариантов" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Выберите желаемый язык для переводов в вашей ленте." #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" -msgstr "Отправить на сайт!" +msgstr "Отправьте прикольный сайт!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 @@ -5569,116 +5843,115 @@ msgstr "Отправить подтверждение по электронно #: src/view/com/modals/DeleteAccount.tsx:149 msgid "Send email" -msgstr "Отправить эл. письмо" +msgstr "Отправить электронное письмо" #: src/view/com/modals/DeleteAccount.tsx:162 msgctxt "action" msgid "Send Email" -msgstr "Отправить эл. письмо" +msgstr "Отправить электронное письмо" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Отправить отзыв" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "Отправить сообщение" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "Отправить пост на..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Пожаловаться" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Отправить жалобу в {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "Отправьте письмо с подтверждением" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" -msgstr "Отправить прямым сообщением" +msgstr "Отправить личным сообщением" #: src/view/com/modals/DeleteAccount.tsx:151 msgid "Sends email with confirmation code for account deletion" msgstr "Отправляет электронное письмо с кодом подтверждения удаления учетной записи" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Адреса сервера" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Добавить дату рождения" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Изменение пароля" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Отключите этот параметр, чтобы скрыть все цитируемые посты в вашей ленте. Не влияет на репосты без цитирования." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Отключите этот параметр, чтобы скрыть все ответы в вашей ленте." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Отключите этот параметр, чтобы скрыть все репосты в вашей ленте." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Включите эту настройку, чтобы показывать ответы в виде веток. Это экспериментальная функция." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." -msgstr "Включите эту настройку, чтобы иногда видеть посты из сохраненных лент в вашей домашней ленте. Это экспериментальная функция." +msgstr "Включите эту настройку, чтобы иногда видеть посты из сохраненных лент в вашей ленте подписок. Это экспериментальная функция." #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" msgstr "Настройте вашу учетную запись" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Устанавливает псевдоним Bluesky" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" -msgstr "Устанавливает эл. адрес для сброса пароля" +msgstr "Устанавливает адрес электронной почты для сброса пароля" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Устанавливает квадратное соотношение сторон изображения" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Устанавливает квадратное соотношение сторон изображения" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Устанавливает соотношение сторон изображения к высоте" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Устанавливает соотношение сторон изображения к высоте" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Устанавливает соотношение сторон изображения к ширине" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Устанавливает соотношение сторон изображения к ширине" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Настройки" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Сексуальная активность или эротическая обнаженность." @@ -5686,21 +5959,20 @@ msgstr "Сексуальная активность или эротическа msgid "Sexually Suggestive" msgstr "С сексуальным подтекстом" -#: src/view/com/lightbox/Lightbox.tsx:148 -msgctxt "action" +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Поделиться" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/view/com/lightbox/Lightbox.tsx:176 +msgctxt "action" msgid "Share" msgstr "Поделиться" @@ -5712,28 +5984,28 @@ msgstr "Поделитесь классной историей!" msgid "Share a fun fact!" msgstr "Поделитесь забавным фактом!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" -msgstr "Все равно распространить" +msgstr "Все равно поделиться" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" -msgstr "Распространить ленту" +msgstr "Поделиться лентой" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "Поделиться ссылкой" @@ -5751,7 +6023,7 @@ msgstr "Диалоговое окно обмена ссылками" msgid "Share QR code" msgstr "Поделиться QR-кодом" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "Поделиться этим стартовым набором" @@ -5763,27 +6035,31 @@ msgstr "Поделитесь этим стартовым набором и по msgid "Share your favorite feed!" msgstr "Поделитесь любимой лентой!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" -msgstr "Тестер общих предпочтений" +msgstr "Тестер общих настроек" #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" -msgstr "Распространяет ссылку" +msgstr "Позволяет поделиться ссылкой на сайт" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Показать" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "Показать альтернативный текст" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Все равно показать" @@ -5805,8 +6081,8 @@ msgstr "Показать значок и фильтры из ленты" msgid "Show hidden replies" msgstr "Показать скрытые ответы" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "Показать меньше похожего" @@ -5814,14 +6090,14 @@ msgstr "Показать меньше похожего" msgid "Show list anyway" msgstr "Все равно показывать список" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Показать больше" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "Показать больше похожего" @@ -5829,32 +6105,32 @@ msgstr "Показать больше похожего" msgid "Show muted replies" msgstr "Показать игнорируемые ответы" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Показать посты из сохраненных лент" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Показать цитаты" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Показать ответы" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." -msgstr "Показать ответы от людей, за которыми вы следите, перед всеми остальными ответами." +msgstr "Показать ответы от людей, на которых вы подписаны, перед всеми остальными ответами." -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "Показать ответы для всех" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Показать репосты" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Показать содержимое" @@ -5868,35 +6144,34 @@ msgid "Show warning and filter from feeds" msgstr "Показать предупреждения и фильтровать из ленты" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Показывает сообщения с {0} в вашей ленте" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Показывает сообщения с {0} в вашей ленте" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Войти" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Войти как {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Войти как..." @@ -5908,42 +6183,41 @@ msgstr "Войдите или создайте свою учетную запи msgid "Sign into Bluesky or create a new account" msgstr "Войдите в Bluesky или создайте новую учетную запись" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Выйти" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "Выйти из всех учетных записей" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Регистрация" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Зарегистрируйтесь или войдите в систему, чтобы присоединиться к беседе" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Зарегистрируйтесь или войдите в систему, чтобы присоединиться к беседе" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Необходимо войти для просмотра" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Вы вошли как" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Вы вошли как @{0}" @@ -5951,8 +6225,8 @@ msgstr "Вы вошли как @{0}" msgid "signed up with your starter pack" msgstr "зарегистрировались с вашим стартовым набором" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "Зарегистрировались без стартового набора" @@ -5960,17 +6234,22 @@ msgstr "Зарегистрировались без стартового наб msgid "Similar accounts" msgstr "Похожие учетные записи" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Пропустить" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Пропустить этот процесс" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Разрабочик программного обеспечения" @@ -5982,42 +6261,46 @@ msgstr "Некоторые другие ленты, которые могут в msgid "Some people can reply" msgstr "Некоторые люди могут ответить" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "Что-то пошло не так" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "Что-то пошло не так, пожалуйста, попробуйте еще раз." +msgstr "Что-то пошло не так, пожалуйста, попробуйте еще раз" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "Что-то пошло не так!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Извините! Ваш сеанс исчерпан. Пожалуйста, войдите снова." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Сортировать ответы" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Выберите, как сортировать ответы к постам:" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "" + #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "Источник: <0>{sourceName}" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "Источник: <0>{sourceName}" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6029,73 +6312,77 @@ msgid "Spam; excessive mentions or replies" msgstr "Спам; чрезмерные упоминания или ответы" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Спорт" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Квадратное" +#~ msgid "Square" +#~ msgstr "Квадратное" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" -msgstr "Начните новый чат" +msgstr "Начать новый чат" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" -msgstr "Начните общаться с {displayName}" +msgstr "Начать общаться с {displayName}" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "Начните общаться" +#~ msgid "Start chatting" +#~ msgstr "Начните общаться" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Стартовый набор" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "Стартовый набор от {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "Стартовый набор недействителен" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "Стартовые наборы" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Стартовые наборы позволяют легко делиться любимыми лентами и людьми с друзьями." -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "Страница состояния" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "Шаг {0} из {1}" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Хранилище очищено, теперь вам нужно перезапустить приложение." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" -msgstr "Сборник рассказов" +msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Отправить" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Подписаться" @@ -6103,18 +6390,22 @@ msgstr "Подписаться" msgid "Subscribe to @{0} to use these labels:" msgstr "Подпишитесь на @{0}, чтобы использовать эти метки:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Подписаться на маркировщика" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Подписаться на этого маркировщика" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Подписаться на этот список" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "Предлагаемые учетные записи" @@ -6123,63 +6414,65 @@ msgstr "Предлагаемые учетные записи" msgid "Suggested for you" msgstr "Предложения для вас" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Неприличный" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Поддержка" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Переключить учетную запись" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Переключиться на {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Переключает учетную запись" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Системное" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Системный журнал" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Меню тегов: {displayTag}" #: src/components/dialogs/MutedWords.tsx:282 msgid "Tags only" -msgstr "Тэги только" +msgstr "Только теги" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Высокое" +#~ msgid "Tall" +#~ msgstr "Высокое" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "Нажмите, чтобы пропустить" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "Нажмите, чтобы перейти в полноэкранный режим" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" -msgstr "" +msgstr "Нажмите, чтобы начать или остановить проигрывание" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "Нажмите, чтобы переключить звук" @@ -6197,7 +6490,7 @@ msgid "Teach our algorithm what you like" msgstr "Обучите наш алгоритм тому, что вам нравится" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Технологии" @@ -6205,23 +6498,27 @@ msgstr "Технологии" msgid "Tell a joke!" msgstr "Расскажите шутку!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "Расскажите нам немного больше" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Условия" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Условия использования" @@ -6236,64 +6533,72 @@ msgstr "Использованные термины нарушают станд msgid "Text & tags" msgstr "Текст и теги" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Поле ввода текста" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Спасибо. Ваша жалоба была отправлена." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "Спасибо, вы успешно подтвердили адрес электронной почты." + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" -msgstr "Что содержит следующее:" +msgstr "Который содержит следующее:" #: src/screens/Signup/StepHandle.tsx:51 msgid "That handle is already taken." msgstr "Этот псевдоним уже занят." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." -msgstr "Этот стартовый набор найти не удалось." +msgstr "Не удалось найти этот стартовый набор." -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "Вот и все, ребята!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Учетная запись сможет взаимодействовать с вами после разблокировки." #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." -msgstr "Автор этой темы скрыл этот ответ." +msgstr "Автор этой ветки скрыл этот ответ." -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Веб-приложение Bluesky" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Правила Сообщества перемещены в <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Политика защиты авторского права перемещена в <0/>" @@ -6306,13 +6611,13 @@ msgstr "Лента Discover" msgid "The Discover feed now knows what you like" msgstr "Теперь лента Discover знает, что вам нравится" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "В приложении впечатления лучше. Загрузите Bluesky прямо сейчас, и мы продолжим работу с того места, где вы остановились." +msgstr "В приложении впечатления лучше. Скачайте Bluesky прямо сейчас, и мы продолжим работу с того места, где вы остановились." #: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." -msgstr "Лента была заменен на Discover." +msgstr "Лента была заменена на Discover." #: src/components/moderation/LabelsOnMeDialog.tsx:58 msgid "The following labels were applied to your account." @@ -6331,63 +6636,70 @@ msgstr "Следующие шаги помогут настроить ваш о msgid "The post may have been deleted." msgstr "Возможно этот пост был удален." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Политика конфиденциальности была перемещена в <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "Размер выбранного видео превышает 50МБ." -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Стартовый набор, который вы пытаетесь просмотреть, недействителен. Вы можете удалить этот стартовый набор." -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Форма поддержки перемещена. Если вам нужна помощь, пожалуйста, <0/> или посетите {HELP_DESK_URL}, чтобы связаться с нами." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Условия Использования перенесены в" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "Вы ввели неверный код подтверждения. Пожалуйста, убедитесь, что перешли по правильной ссылке подтверждения, или запросите новую." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "Время деактивации аккаунта не ограничено, возвращайтесь в любое время" +msgstr "Время деактивации аккаунта не ограничено, возвращайтесь в любое время." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Возникла проблема с доступом к серверу. Проверьте подключение к Интернету и повторите попытку снова." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Возникла проблема с доступом к серверу. Проверьте подключение к Интернету и повторите попытку снова." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Возникла проблема при удалении этой ленты. Проверьте подключение к Интернету и повторите попытку." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Возникла проблема при удалении этой ленты. Проверьте подключение к Интернету и повторите попытку." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Возникла проблема с обновлением ваших лент. Проверьте подключение к Интернету и повторите попытку." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Возникла проблема с обновлением ваших лент. Проверьте подключение к Интернету и повторите попытку." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "Возникла проблема с подключением к Tenor." -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "При соединении с сервером возникла проблема" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6397,39 +6709,49 @@ msgstr "При соединении с вашим сервером возник msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Возникла проблема с загрузкой уведомлений. Нажмите здесь, чтобы повторить попытку." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Возникла проблема с загрузкой списка. Нажмите здесь, чтобы повторить попытку." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Возникла проблема с загрузкой ваших списков. Нажмите здесь, чтобы повторить попытку." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Возникла проблема с отправкой вашей жалобы. Пожалуйста, проверьте подключение к Интернету." -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Возникла проблема с загрузкой ваших паролей для приложений" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Возникла проблема! {0}" @@ -6437,16 +6759,15 @@ msgstr "Возникла проблема! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Возникла проблема. Проверьте подключение к Интернету и повторите попытку." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "В приложении возникла неожиданная проблема. Пожалуйста, сообщите нам, если вы получили это сообщение!" @@ -6454,11 +6775,11 @@ msgstr "В приложении возникла неожиданная проб msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Произошел наплыв новых пользователей в Bluesky! Мы активируем вашу учетную запись как только сможем." -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Этот {screenDescription} был помечен:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Этот пользователь указал, что не хочет, чтобы его профиль видели посетители без учетной записи." @@ -6466,15 +6787,15 @@ msgstr "Этот пользователь указал, что не хочет, msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "Эта учетная запись заблокирована в одном или нескольких ваших списках модерации. Чтобы снять блокировку, пожалуйста, посетите списки непосредственно и удалите этого пользователя." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "Это обращение будет отправлено на адрес <0>{sourceName}." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Это обращение будет отправлено в службу модерации Bluesky." -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "Этот чат был отключен" @@ -6486,7 +6807,7 @@ msgstr "Этот контент был скрыт модераторами." msgid "This content has received a general warning from moderators." msgstr "Этот контент получил общее предупреждение от модераторов." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Этот контент размещен {0}. Включить внешние медиа?" @@ -6499,11 +6820,11 @@ msgstr "Этот контент недоступен, поскольку оди msgid "This content is not viewable without a Bluesky account." msgstr "Этот контент недоступен для просмотра без учетной записи Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "Этот разговор ведется с удаленной или деактивированной учетной записью. Нажмите для выбора опций." -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Эта функция находится в бете. Вы можете узнать больше об экспорте репозиториев в <0>этом блоге.." @@ -6516,8 +6837,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Эта лента пуста! Возможно, вам нужно подписаться на большее количество пользователей или изменить настройки языка." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Эта лента пуста." @@ -6525,7 +6846,7 @@ msgstr "Эта лента пуста." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Этот канал больше не работает. Вместо этого мы показываем <0>Discover." -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Эта информация не раскрывается другим пользователям." @@ -6533,15 +6854,15 @@ msgstr "Эта информация не раскрывается другим msgid "This is important in case you ever need to change your email or reset your password." msgstr "Это важно для случая, если вам когда-нибудь нужно будет изменить адрес электронной почты или восстановить пароль." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "Эта метка была применена <0>{0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "Эта метка была применена автором." -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "Эта метка была применена вами." @@ -6557,7 +6878,7 @@ msgstr "Эта ссылка ведет на сайт:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "Этот список, созданный <0>{0}, содержит возможные нарушения правил сообщества Bluesky в названии или описании." -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Список пустой!" @@ -6569,36 +6890,36 @@ msgstr "Данный сервис модерации недоступен. Пр msgid "This name is already in use" msgstr "Это имя уже используется" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Этот пост был удален." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Этот пост виден только пользователям, которые вошли в систему. Оно не будет видимым для людей, которые не вошли в систему." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Этот пост будет скрыт из лент и тем. Это невозможно отменить." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "Автор этого поста отключил цитирование сообщений." -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Этот профиль виден только пользователям, которые вошли в систему. Он не будет виден людям, которые не вошли в систему." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "Этот ответ будет отсортирован в скрытый раздел в нижней части вашей темы и отключит уведомления о последующих ответах - как для вас, так и для других." +msgstr "Этот ответ будет отсортирован в скрытый раздел в нижней части вашей ветки и отключит уведомления о последующих ответах - как для вас, так и для других." #: src/screens/Signup/StepInfo/Policies.tsx:37 msgid "This service has not provided terms of service or a privacy policy." msgstr "Этот сервис не предоставил условия обслуживания или политику конфиденциальности." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Это должно создать учетную запись домена:" @@ -6643,28 +6964,28 @@ msgstr "Это удалит \"{0}\" из ваших отключенных сл msgid "This will remove @{0} from the quick access list." msgstr "Это удалит @{0} из списка быстрого доступа." -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "Это удалит ваше сообщение из этой цитаты для всех пользователей и заменит его на место." -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Настройка веток" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Настройка веток" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" -msgstr "Режим ветвей" +msgstr "Режим веток" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Настройка обсуждений" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Чтобы отключить метод 2FA по электронной почте, проверьте свой доступ к адресу электронной почты." @@ -6672,41 +6993,45 @@ msgstr "Чтобы отключить метод 2FA по электронной msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "Чтобы сообщить о беседе, сообщите об одном из ее сообщений на экране беседы. Это позволит нашим модераторам понять контекст вашей проблемы." -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "Чтобы загрузить видео на Bluesky, необходимо сначала подтвердить свою электронную почту." -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Кому вы хотели бы отправить эту жалобу?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "Раскрыть/скрыть" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Включить или отключить контент для взрослых" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Вверх" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Редактирование" +#~ msgid "Transformations" +#~ msgstr "Редактирование" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Перевести" @@ -6715,40 +7040,40 @@ msgctxt "action" msgid "Try again" msgstr "Попробовать еще раз" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "ТВ" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "Двухфакторная аутентификация" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "Напечатайте здесь свое сообщение" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" -msgstr "Напечатайте:" +msgstr "Тип:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" -msgstr "Разблокировать список" +msgstr "Список разблокировки" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" -msgstr "Перестать игнорировать" +msgstr "Список неигнорирования" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Не удалось связаться с вашим хостинг-провайдером. Проверьте ваше подключение к Интернету." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "Не удается удалить" @@ -6756,14 +7081,14 @@ msgstr "Не удается удалить" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Разблокировать" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Разблокировать" @@ -6773,17 +7098,17 @@ msgstr "Разблокировать" msgid "Unblock account" msgstr "Разблокировать учетную запись" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Разблокировать учетную запись" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Разблокировать учетную запись?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6794,40 +7119,40 @@ msgctxt "action" msgid "Unfollow" msgstr "Отписаться" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Отписаться от {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Отписаться от учетной записи" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" -msgstr "Удалить предпочтения этой ленты" +msgstr "Убраль лайк с этой ленты" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Не игнорировать" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Не игнорировать" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Не игнорировать {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Перестать игнорировать" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Перестать игнорировать все посты {displayTag}" @@ -6835,12 +7160,12 @@ msgstr "Перестать игнорировать все посты {displayTa msgid "Unmute conversation" msgstr "Включить звук" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" -msgstr "Перестать игнорировать" +msgstr "Перестать игнорировать ветку" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "Включить звук видео" @@ -6848,24 +7173,29 @@ msgstr "Включить звук видео" #~ msgid "Unmuted" #~ msgstr "Не игнорируемый" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Открепить" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Открепить от главной страницы" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Открепить список модерации" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "Убрать из вашей ленты" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Отписаться" @@ -6874,15 +7204,15 @@ msgstr "Отписаться" msgid "Unsubscribe from list" msgstr "Отписаться от списка" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Отписаться от этого маркировщика" #: src/screens/List/ListHiddenScreen.tsx:86 msgid "Unsubscribed from list" -msgstr "Отказаться от подписки на список" +msgstr "Подписка на список отменена" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "Неподдерживаемый тип видео: {mimeType}" @@ -6892,75 +7222,92 @@ msgid "Unwanted Sexual Content" msgstr "Нежелательное сексуальное содержимое" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Изменить принадлежность {displayName} к спискам" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Изменить принадлежность {displayName} к спискам" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Обновить до {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" -msgstr "Обновление вложения цитаты не удалось" +msgstr "Не удалось обновить вложение цитаты" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" -msgstr "Обновление видимости ответа не удалось" +msgstr "Не удалось обновить видимость ответа" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Обновление..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" -msgstr "Вместо этого загрузите фотографию" +msgstr "Загрузить вместо этого фотографию" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Загрузить текстовый файл в:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Загрузить с камеры" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Загрузить из файлов" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Загрузить из библиотеки" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Использовать файл на вашем сервере" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." -msgstr "Использовать пароли приложений для входа в другие клиенты Bluesky без предоставления полного доступа к вашей учетной записи или паролю." +msgstr "Используйте пароли приложений для входа в другие клиенты Bluesky без предоставления полного доступа к вашей учетной записи или паролю." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Использовать bsky.social в качестве хостинг-провайдера" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Использовать провайдера по умолчанию" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Во встроенном браузере" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "В браузере по умолчанию" @@ -6968,7 +7315,7 @@ msgstr "В браузере по умолчанию" msgid "Use recommended" msgstr "Использовать рекомендуемые" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Использовать панель DNS" @@ -7005,118 +7352,118 @@ msgstr "Пользователь заблокировал вас" msgid "User Blocks You" msgstr "Пользователь заблокировал вас" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Список пользователей от {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Список пользователей от <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Список пользователей от вас" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Список пользователей создан" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Список пользователей обновлен" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Списки пользователей" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" -msgstr "Имя пользователя или электронный адрес" +msgstr "Имя пользователя или электронная почта" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Пользователи" #: src/components/WhoCanReply.tsx:258 msgid "users followed by <0>@{0}" -msgstr "пользователи, за которыми следуют <0>@{0}" +msgstr "пользователи, на которых подписаны <0>@{0}" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Пользователи, на которых я подписан" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Пользователи в \"{0}\"" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Пользователи, которым понравился этот контент и профиль" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Значение:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "Требуется подтвердить электронную почту" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "Проверка DNS-записи" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" -msgstr "Подтвердить мой электронный адрес" +msgstr "Подтвердить адрес электронной почты" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "" +msgstr "Диалоговое окно подтверждения электронной почты" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" -msgstr "Подтвердить мой электронный адрес" +msgstr "Подтвердить мой адрес электронной почты" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" -msgstr "Подтвердить мой электронный адрес" +msgstr "Подтвердить мой адрес электронной почты" #: src/view/com/modals/ChangeEmail.tsx:200 #: src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" msgstr "Подтвердить новый адрес электронной почты" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "Подтвердить сейчас" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "Подтвердить текстовым файлом" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" -msgstr "Подтвердить адрес вашей электронной почты" +msgstr "Подтвердите адрес вашей электронной почты" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "Версия {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "Видео" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "Не удалось обработать видео" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Видеоигры" @@ -7124,20 +7471,24 @@ msgstr "Видеоигры" msgid "Video not found." msgstr "Видео не найдено." -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "Настройки видео" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "Видео: {0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" -msgstr "" +msgstr "Видео должно длиться меньше 60 секунд" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Просмотреть аватар {0}" @@ -7148,17 +7499,25 @@ msgstr "Посмотреть профиль {0}" #: src/components/dms/MessagesListHeader.tsx:160 msgid "View {displayName}'s profile" +msgstr "Показать профиль {displayName}" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "Просмотреть профиль заблокированного пользователя" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "Посмотреть запись в блоге для получения более подробной информации" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Просмотреть запись для отладки" @@ -7172,17 +7531,19 @@ msgstr "Просмотреть детали как отправить жалоб #: src/view/com/posts/FeedSlice.tsx:136 msgid "View full thread" -msgstr "Просмотреть обсуждение" +msgstr "Просмотреть ветку полностью" #: src/components/moderation/LabelsOnMe.tsx:47 msgid "View information about these labels" msgstr "Просмотреть информацию о метках" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Просмотреть профиль" @@ -7190,28 +7551,28 @@ msgstr "Просмотреть профиль" msgid "View the avatar" msgstr "Просмотреть аватар" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Просмотр услуг маркировки, который предоставляет @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Просмотр пользователей, которым понравилась эта лента" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "Просмотрите заблокированные вами учетные записи" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "Просмотрите свои ленты и исследуйте больше" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "Просмотр своего списка модерации" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "Просмотр отключенных учетных записей" @@ -7234,11 +7595,11 @@ msgstr "Предупреждать о содержимом" msgid "Warn content and filter from feeds" msgstr "Предупреждать о содержимом и фильтровать его из ленты" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Мы не смогли найти никаких результатов для этого хештега." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "Мы не смогли загрузить эту беседу" @@ -7246,11 +7607,11 @@ msgstr "Мы не смогли загрузить эту беседу" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Мы оцениваем {estimatedTime} до готовности вашей учетной записи." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." -msgstr "" +msgstr "Мы повторно отправили письмо с подтверждением на <0>{0}." -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Мы надеемся, что вы отлично проведете время. Помните, Bluesky - это:" @@ -7258,19 +7619,19 @@ msgstr "Мы надеемся, что вы отлично проведете в msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "У нас закончились посты в ваших подписках. Вот последние посты из ленты <0/>." -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." -msgstr "" +msgstr "Мы не смогли определить, доступна ли вам загрузка видео. Попробуйте еще раз." -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Не удалось загрузить ваши настройки даты рождения. Повторите попытку." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "На данный момент мы не смогли загрузить список ваших маркировщиков." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Мы не смогли подключиться. Пожалуйста, попробуйте еще раз, чтобы продолжить настройку своей учетной записи. Если ошибка повторяется, то вы можете пропустить этот процесс." @@ -7278,19 +7639,23 @@ msgstr "Мы не смогли подключиться. Пожалуйста, msgid "We will let you know when your account is ready." msgstr "Мы сообщим вам, когда ваша учетная запись будет готова." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Мы воспользуемся этим, чтобы подстроить Ваш опыт." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "У нас проблемы с сетью, попробуйте еще раз" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Мы очень рады, что вы присоединились!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Нам очень жаль, но нам не удалось найти этот список. Если это продолжается, пожалуйста, свяжитесь с его автором: @{handleOrDid}." @@ -7298,20 +7663,20 @@ msgstr "Нам очень жаль, но нам не удалось найти msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Нам очень жаль, мы не смогли сейчас загрузить ваши игнорируемые слова. Пожалуйста, попробуйте еще раз." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Нам очень жаль, нам не удалось выполнить поиск по вашему запросу. Пожалуйста, попробуйте еще раз через несколько минут." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам очень жаль! Сообщение, на которое вы отвечаете, было удалено." #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Нам очень жаль! Мы не можем найти страницу, которую вы искали." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Нам очень жаль! Вы можете подписаться только на двадцать маркировщиков, и вы достигли своего лимита в двадцать." @@ -7323,7 +7688,7 @@ msgstr "С возвращением!" msgid "Welcome, friend!" msgstr "Добро пожаловать, друг!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Чем вы интересуетесь?" @@ -7331,17 +7696,17 @@ msgstr "Чем вы интересуетесь?" msgid "What do you want to call your starter pack?" msgstr "Как вы хотите назвать свой стартовый набор?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Как дела?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Какие языки использованы в этом посте?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "На каких языках вы хотите видеть посты в алгоритмических лентах?" @@ -7351,15 +7716,15 @@ msgstr "Кто может взаимодействовать с этим пос #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "Кто может отправить вам сообщение?" +#~ msgid "Who can message you?" +#~ msgstr "Кто может отправить вам сообщение?" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "Кто может отвечать" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Опаньки!" @@ -7392,35 +7757,35 @@ msgid "Why should this user be reviewed?" msgstr "Почему следует просмотреть этого пользователя?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Широкий" +#~ msgid "Wide" +#~ msgstr "Широкий" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "Написать сообщение" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Написать пост" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Написать ответ" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Писатели" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Да" @@ -7429,15 +7794,15 @@ msgstr "Да" msgid "Yes, deactivate" msgstr "Да, деактивировать" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "Да, удалите этот стартовый набор" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "Да, отсоединить" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "Да, скрыть" @@ -7445,11 +7810,14 @@ msgstr "Да, скрыть" msgid "Yes, reactivate my account" msgstr "Да, активируйте мой аккаунт повторно" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "Вчера, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "Вчера, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "вы" @@ -7462,33 +7830,37 @@ msgstr "Вы" msgid "You are in line." msgstr "Вы в очереди." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." -msgstr "" +msgstr "Вы не можете загружать видео." #: src/view/com/profile/ProfileFollows.tsx:95 msgid "You are not following anyone." msgstr "Вы ни на кого не подписаны." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." -msgstr "Также вы можете найти кастомные ленты для подписи." +msgstr "Также вы можете найти пользовательские ленты для подписки." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "Вы также можете временно деактивировать свой аккаунт и активировать его в любое время." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "Вы можете изменить его в любое время." +#~ msgid "You can change this at any time." +#~ msgstr "Вы можете изменить его в любое время." -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Вы можете продолжать беседу независимо от выбранной вами настройки." -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Теперь вы можете войти с помощью нового пароля." @@ -7500,7 +7872,7 @@ msgstr "Вы можете повторно активировать свой а msgid "You do not have any followers." msgstr "У вас нет ни одного подписчика." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "Вы не подписаны ни на каких пользователей, которые подписаны на @{name}." @@ -7508,11 +7880,11 @@ msgstr "Вы не подписаны ни на каких пользовател msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "У вас еще нет кодов приглашения! Со временем мы предоставим вам несколько." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "У вас нет закрепленных лент." -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "У вас нет сохраненных лент." @@ -7530,8 +7902,8 @@ msgstr "Вы заблокировали этого пользователя" msgid "You have blocked this user. You cannot view their content." msgstr "Вы заблокировали этого пользователя. Вы не можете видеть их содержимое." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -7554,7 +7926,7 @@ msgstr "Вы включили игнорирование этой учетной msgid "You have muted this user" msgstr "Вы включили игнорирование этого пользователя" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "У вас еще нет бесед. Начните одну!" @@ -7562,20 +7934,20 @@ msgstr "У вас еще нет бесед. Начните одну!" msgid "You have no feeds." msgstr "У вас нет лент." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "У вас нет списков." -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Вы еще не заблокировали ни одну учетную запись. Чтобы заблокировать кого-то, перейдите в их профиль и выберите опцию \"Заблокировать\" в меню их учетной записи." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Вы еще не создали ни одного пароля для приложений. Вы можете создать новый пароль, нажав кнопку ниже." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Вы еще не игнорируете ни одну учетную запись. Чтобы включить игнорирование кого-то, перейдите в их профиль и выберите опцию \"Игнорировать\" в меню их учетной записи." @@ -7583,11 +7955,11 @@ msgstr "Вы еще не игнорируете ни одну учетную з msgid "You have reached the end" msgstr "Вы добрались до конца" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." -msgstr "" +msgstr "Вы достигли временного лимита по загрузкам видео. Попробуйте еще раз позже." -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "Вы еще не создали стартовый набор!" @@ -7616,11 +7988,15 @@ msgstr "Вы можете добавить только до {STARTER_PACK_MAX_S msgid "You may only add up to 3 feeds" msgstr "Вы можете добавить не более 3 лент" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Вам должно исполниться 13 лет для того, чтобы иметь возможность зарегистрироваться." -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Чтобы получить стартовый набор, вы должны подписаться как минимум на семь других людей." @@ -7628,12 +8004,11 @@ msgstr "Чтобы получить стартовый набор, вы долж msgid "You must grant access to your photo library to save a QR code" msgstr "Чтобы сохранить QR-код, необходимо предоставить доступ к библиотеке фотографий." -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "Чтобы сохранить изображение, необходимо предоставить доступ к библиотеке фотографий." -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Вы должны выбрать хотя бы одного маркировщика для жалобы" @@ -7641,47 +8016,51 @@ msgstr "Вы должны выбрать хотя бы одного маркир msgid "You previously deactivated @{0}." msgstr "Вы ранее деактивировали @{0}." -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" -msgstr "Вы больше не будете получать уведомления из этого обсуждения" +msgstr "Вы больше не будете получать уведомления из этой ветки" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" -msgstr "Вы будете получать уведомления из этого обсуждения" +msgstr "Вы будете получать уведомления из этой ветки" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Вы получите электронное письмо с \"кодом подтверждения.\" Введите этот код здесь, а затем введите новый пароль." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "Вы: {0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "Вы: {defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "Вы: {short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей и ленты, как только создадите свою учетную запись!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей, как только создадите свою учетную запись!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "Вы будете подписаны на предложенных людей и {0} других" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" -msgstr "Вы сразу же будете подписаны на предложенных людей." +msgstr "Вы сразу же будете подписаны на предложенных людей" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Вы будете оставаться в курсе этих лент" @@ -7696,7 +8075,7 @@ msgstr "Вы в очереди" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Вы вошли в систему с паролем приложения. Пожалуйста, войдите в систему с основным паролем, чтобы продолжить деактивацию вашего аккаунта." -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Все готово!" @@ -7709,15 +8088,15 @@ msgstr "Вы выбрали скрывать слово или тег в это msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашняя лента закончилась! Подпишитесь на больше учетных записей чтобы получать больше постов." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" -msgstr "" +msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много байт)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" -msgstr "" +msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Ваш аккаунт" @@ -7725,15 +8104,15 @@ msgstr "Ваш аккаунт" msgid "Your account has been deleted" msgstr "Ваша учетная запись удалена" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "" +msgstr "Ваш аккаунт создан еще недостаточно давно, чтобы вы могли загружать видео. Попробуйте еще раз позже." -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Данные из вашей учетной записи, содержащие все общедоступные записи, можно загрузить как \"CAR\" файл. Этот файл не содержит медиафайлов, таких как изображения, или личные данные, которые необходимо получить отдельно." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Ваша дата рождения" @@ -7741,17 +8120,17 @@ msgstr "Ваша дата рождения" msgid "Your browser does not support the video format. Please try a different browser." msgstr "Ваш браузер не поддерживает формат видео. Пожалуйста, попробуйте использовать другой браузер." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "Ваши чаты были отключены" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Ваш выбор будет запомнен, вы в любой момент сможете изменить его в настройках." -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Не удалось распознать адрес электронной почты." @@ -7776,7 +8155,7 @@ msgstr "Ваша домашняя лента пуста! Подпишитесь msgid "Your full handle will be" msgstr "Ваш полный псевдоним будет" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Вашим полным псевдонимом будет <0>@{0}" @@ -7788,15 +8167,15 @@ msgstr "Ваши игнорируемые слова" msgid "Your password has been changed successfully!" msgstr "Ваш пароль успешно изменен!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Пост опубликован" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." -msgstr "Ваши сообщения, предпочтения и блоки являются публичными. Игнорирование - частные." +msgstr "Ваши сообщения, лайки и блокировки являются публичными. Игнорирования - приватные." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Ваш профиль" @@ -7804,14 +8183,14 @@ msgstr "Ваш профиль" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ваш профиль, сообщения, ленты и списки больше не будут видны другим пользователям Bluesky. Вы можете активировать свой аккаунт в любое время, войдя в систему." -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Ответ опубликован" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Ваш отчет будет отправлен в Службу Модерации Bluesky." -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Ваш псевдоним" diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po new file mode 100644 index 0000000000..14784ffb0e --- /dev/null +++ b/src/locale/locales/th/messages.po @@ -0,0 +1,8962 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2024-10-21 12:01+0700\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: th\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-10-21 18:00+0700\n" +"Last-Translator: Himesora Aika\n" +"Language-Team: Himesora Aika, Gara Guide\n" +"Plural-Forms: \n" + +#: src/screens/Messages/components/ChatListItem.tsx:130 +msgid "(contains embedded content)" +msgstr "(มีเนื้อหาที่ฝังอยู่)" + +#: src/view/com/modals/VerifyEmail.tsx:150 +msgid "(no email)" +msgstr "(ไม่มีอีเมล)" + +#: src/view/com/notifications/FeedItem.tsx:232 +#: src/view/com/notifications/FeedItem.tsx:327 +msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:156 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:146 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:55 +#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" +#~ msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:54 +msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgstr "{0, plural, one {# ป้ายถูกวางบนบัญชีนี้} other {# ป้ายถูกวางบนบัญชีนี้}}" + +#: src/components/moderation/LabelsOnMe.tsx:61 +#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" +#~ msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:60 +msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgstr "{0, plural, one {# ป้ายถูกวางบนเนื้อหานี้} other {# ป้ายถูกวางบนเนื้อหานี้}}" + +#: src/lib/hooks/useTimeAgo.ts:136 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "{0, plural, one {# นาที} other {# นาที}}" + +#: src/lib/hooks/useTimeAgo.ts:167 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "{0, plural, one {# เดือน} other {# เดือน}}" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "{0, plural, one {# รีโพสต์} other {# รีโพสต์}}" + +#: src/lib/hooks/useTimeAgo.ts:126 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/KnownFollowers.tsx:179 +#~ msgid "{0, plural, one {and # other} other {and # others}}" +#~ msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:434 +msgid "{0, plural, one {like} other {likes}}" +msgstr "" + +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:300 +msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "" + +#: src/screens/Profile/Header/Metrics.tsx:59 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:418 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:400 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" +msgstr "" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 +msgid "{0} joined this week" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "{0} of {1}" +msgstr "{0} จาก {1}" + +#: src/screens/StarterPack/StarterPackScreen.tsx:467 +msgid "{0} people have used this starter pack!" +msgstr "" + +#: src/view/screens/ProfileList.tsx:286 +#~ msgid "{0} your feeds" +#~ msgstr "" + +#: src/view/com/util/UserAvatar.tsx:435 +msgid "{0}'s avatar" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:68 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:47 +msgid "{0}'s starter pack" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:158 +msgid "{0}d" +msgstr "{0}วัน" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:148 +msgid "{0}h" +msgstr "{0}ชม." + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:138 +msgid "{0}m" +msgstr "{0}น." + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0}mo" +msgstr "{0}เดือน" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:128 +msgid "{0}s" +msgstr "{0}วินาที" + +#: src/components/LabelingServiceCard/index.tsx:96 +msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{count, plural, one {ถูกใจโดย # ผู้ใช้} other {ถูกใจโดย # ผู้ใช้}}" + +#: src/lib/hooks/useTimeAgo.ts:69 +#~ msgid "{diff, plural, one {day} other {days}}" +#~ msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:64 +#~ msgid "{diff, plural, one {hour} other {hours}}" +#~ msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:59 +#~ msgid "{diff, plural, one {minute} other {minutes}}" +#~ msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:75 +#~ msgid "{diff, plural, one {month} other {months}}" +#~ msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:54 +#~ msgid "{diffSeconds, plural, one {second} other {seconds}}" +#~ msgstr "" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:174 +msgid "{displayName}'s Starter Pack" +msgstr "ชุดเริ่มต้นของ {displayName}" + +#: src/screens/SignupQueued.tsx:207 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "{estimatedTimeHrs, plural, one {ชั่วโมง} other {ชั่วโมง}}" + +#: src/screens/SignupQueued.tsx:213 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "{estimatedTimeMins, plural, one {นาที} other {นาที}}" + +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 +msgid "{following} following" +msgstr "{following} ติดตามอยู่" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 +msgid "{handle} can't be messaged" +msgstr "{handle} ไม่สามารถส่งข้อความได้" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:281 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:294 +#: src/view/screens/ProfileFeed.tsx:584 +msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{likeCount, plural, one {ถูกใจโดย # ผู้ใช้} other {ถูกใจโดย # ผู้ใช้}}" + +#: src/view/shell/Drawer.tsx:458 +msgid "{numUnreadNotifications} unread" +msgstr "{numUnreadNotifications} ยังไม่ได้อ่าน" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "{profileName} เข้าร่วม Bluesky เมื่อ {0} ที่แล้ว" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "{profileName} เข้าร่วม Bluesky โดยใช้ชุดเริ่มต้นเมื่อ {0} ที่แล้ว" + +#: src/view/screens/PreferencesFollowingFeed.tsx:67 +#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" +#~ msgstr "" + +#: src/components/WhoCanReply.tsx:296 +#~ msgid "<0/> members" +#~ msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:485 +#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:466 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:519 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:497 +#~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" +#~ msgstr "" + +#: src/view/shell/Drawer.tsx:108 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:507 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/view/shell/Drawer.tsx:96 +msgid "<0>{0} following" +msgstr "<0>{0} ติดตามอยู่" + +#: src/screens/StarterPack/Wizard/index.tsx:500 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "<0>{0} members" +msgstr "" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:437 +#~ msgid "<0>{followers} <1>{pluralizedFollowers}" +#~ msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/screens/Profile/Header/Metrics.tsx:45 +msgid "<0>{following} <1>following" +msgstr "<0>{following} <1>ติดตามอยู่" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 +#~ msgid "<0>Choose your<1>Recommended<2>Feeds" +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 +#~ msgid "<0>Follow some<1>Recommended<2>Users" +#~ msgstr "" + +#: src/view/com/modals/SelfLabel.tsx:135 +msgid "<0>Not Applicable. This warning is only available for posts with media attached." +msgstr "<0>ไม่สามารถใช้ได้ คำเตือนนี้ใช้ได้เฉพาะสำหรับโพสต์ที่มีสื่อแนบอยู่เท่านั้น" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 +#~ msgid "<0>Welcome to<1>Bluesky" +#~ msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>คุณ และ<1> <2>{0} ถูกรวมอยู่ในชุดเริ่มต้นของคุณ" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "⚠แฮนด์เดิลไม่ถูกต้อง" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "24 ชั่วโมง" + +#: src/screens/Login/LoginForm.tsx:250 +msgid "2FA Confirmation" +msgstr "การยืนยัน 2FA" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "30 วัน" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "7 วัน" + +#: src/tours/Tooltip.tsx:70 +#~ msgid "A help tooltip" +#~ msgstr "" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:877 +msgid "Access navigation links and settings" +msgstr "เข้าถึงการค้นหาลิงก์และการตั้งค่า" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 +msgid "Access profile and other navigation links" +msgstr "เข้าถึงโปรไฟล์และการค้นหาลิงก์" + +#: src/view/screens/Settings/index.tsx:463 +msgid "Accessibility" +msgstr "การเข้าถึง" + +#: src/view/screens/Settings/index.tsx:454 +msgid "Accessibility settings" +msgstr "การตั้งค่าการเข้าถึง" + +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:70 +msgid "Accessibility Settings" +msgstr "การตั้งค่าการเข้าถึง" + +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "account" +#~ msgstr "" + +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:315 +#: src/view/screens/Settings/index.tsx:718 +msgid "Account" +msgstr "บัญชี" + +#: src/view/com/profile/ProfileMenu.tsx:132 +msgid "Account blocked" +msgstr "บัญชีถูกบล็อก" + +#: src/view/com/profile/ProfileMenu.tsx:145 +msgid "Account followed" +msgstr "ติดตามบัญชีแล้ว" + +#: src/view/com/profile/ProfileMenu.tsx:108 +msgid "Account muted" +msgstr "ปิดเสียงบัญชีแล้ว" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 +msgid "Account Muted" +msgstr "ปิดเสียงบัญชี" + +#: src/components/moderation/ModerationDetailsDialog.tsx:88 +msgid "Account Muted by List" +msgstr "บัญชีถูกปิดเสียงโดยลิสต์" + +#: src/view/com/util/AccountDropdownBtn.tsx:43 +msgid "Account options" +msgstr "ตัวเลือกบัญชี" + +#: src/view/com/util/AccountDropdownBtn.tsx:59 +msgid "Account removed from quick access" +msgstr "ลบบัญชีออกจากการเข้าถึงด่วนแล้ว" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:129 +#: src/view/com/profile/ProfileMenu.tsx:122 +msgid "Account unblocked" +msgstr "ปลดบล็อกบัญชีแล้ว" + +#: src/view/com/profile/ProfileMenu.tsx:157 +msgid "Account unfollowed" +msgstr "เลิกติดตามบัญชีแล้ว" + +#: src/view/com/profile/ProfileMenu.tsx:98 +msgid "Account unmuted" +msgstr "เลิกปิดเสียงบัญชีแล้ว" + +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:931 +msgid "Add" +msgstr "เพิ่ม" + +#: src/screens/StarterPack/Wizard/index.tsx:568 +msgid "Add {0} more to continue" +msgstr "เพิ่มอีก {0} คนเพื่อดำเนินการต่อ" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "เพิ่ม {displayName} ไปยังชุดเริ่มต้น" + +#: src/view/com/modals/SelfLabel.tsx:57 +msgid "Add a content warning" +msgstr "เพื่มคำเตือนเกี่ยวกับเนื้อหา" + +#: src/view/screens/ProfileList.tsx:921 +msgid "Add a user to this list" +msgstr "เพิ่มผู้ใช้ไปยังลิสต์นี้" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:401 +#: src/view/screens/Settings/index.tsx:410 +msgid "Add account" +msgstr "เพิ่มบัญชี" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:145 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:89 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:94 +msgid "Add alt text" +msgstr "เพิ่มข้อความแสดงแทน" + +#: src/view/com/composer/GifAltText.tsx:175 +#~ msgid "Add ALT text" +#~ msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Add alt text (optional)" +msgstr "เพิ่มข้อความแสดงแทน (ไม่บังคับ)" + +#: src/view/screens/AppPasswords.tsx:102 +#: src/view/screens/AppPasswords.tsx:144 +#: src/view/screens/AppPasswords.tsx:157 +msgid "Add App Password" +msgstr "เพิ่มรหัสผ่านแอป" + +#: src/view/com/composer/Composer.tsx:467 +#~ msgid "Add link card" +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:472 +#~ msgid "Add link card:" +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word for configured settings" +msgstr "เพิ่มคำปิดเสียงสำหรับการตั้งค่าที่กำหนดไว้" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "เพิ่มคำและแท็กที่ไม่ออกเสียง" + +#: src/screens/StarterPack/Wizard/index.tsx:197 +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "เพิ่มฟีตที่แนะนำ" + +#: src/screens/StarterPack/Wizard/index.tsx:488 +msgid "Add some feeds to your starter pack!" +msgstr "เพิ่มบางฟีตจากตัวเริ่มต้น" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "เพิ่มเป็นฟีตเฉพาะคนที่คุณติดตาม" + +#: src/view/com/modals/ChangeHandle.tsx:403 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:296 +msgid "Add this feed to your feeds" +msgstr "เพิ่มฟีตนี้ในฟีตของคุณ" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 +msgid "Add to Lists" +msgstr "เพิ่มในลิสต์" + +#: src/view/com/feeds/FeedSourceCard.tsx:266 +msgid "Add to my feeds" +msgstr "เพิ่มในฟีตของคุณ" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 +#~ msgid "Added" +#~ msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "เพิ่มในลิสต์แล้ว" + +#: src/view/com/feeds/FeedSourceCard.tsx:125 +msgid "Added to my feeds" +msgstr "เพิ่มในฟีตของคุณแล้ว" + +#: src/view/screens/PreferencesFollowingFeed.tsx:171 +#~ msgid "Adjust the number of likes a reply must have to be shown in your feed." +#~ msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/modals/SelfLabel.tsx:76 +msgid "Adult Content" +msgstr "เนื้อหาสำหรับผู้ใหญ่ (18+)" + +#: src/screens/Moderation/index.tsx:363 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "เนื้อหาผู้ใหญ่ (18+) สามารถเปิดใช้งานในเว็บได้ที่ <0>bsky.app." + +#: src/components/moderation/LabelPreference.tsx:241 +msgid "Adult content is disabled." +msgstr "ปิดเนื้อหาสำหรับผู้ใหญ่" + +#: src/screens/Moderation/index.tsx:407 +#: src/view/screens/Settings/index.tsx:652 +msgid "Advanced" +msgstr "ขั้นสูง" + +#: src/state/shell/progress-guide.tsx:171 +msgid "Algorithm training complete!" +msgstr "เทรนอัลกอริทึ่มสำเร็จ!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:370 +msgid "All accounts have been followed!" +msgstr "บัญชีทั้งหมดได้ถูกติดตามแล้ว" + +#: src/view/screens/Feeds.tsx:734 +msgid "All the feeds you've saved, right in one place." +msgstr "ฟีดทั้งหมดที่คุณบันทึกรวมไว้ในที่เดียวแล้ว" + +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 +msgid "Allow access to your direct messages" +msgstr "อนุญาตให้คนเข้าถึงข้อความส่วนตัวของคุณ" + +#: src/screens/Messages/Settings.tsx:61 +#: src/screens/Messages/Settings.tsx:64 +#~ msgid "Allow messages from" +#~ msgstr "" + +#: src/screens/Messages/Settings.tsx:62 +#: src/screens/Messages/Settings.tsx:65 +msgid "Allow new messages from" +msgstr "อนุญาตให้เข้าถึงข้อความใหม่จาก" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 +msgid "Allow replies from:" +msgstr "อนุญาตให้ตอบกลับจาก" + +#: src/view/screens/AppPasswords.tsx:263 +msgid "Allows access to direct messages" +msgstr "อนุญาตให้เข้าถึงข้อความส่วนตัว" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 +msgid "Already have a code?" +msgstr "มีโค้ดหรือยัง?" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "เข้าสู่ระบบของ @{0} เรียบร้อยแล้ว" + +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +msgid "ALT" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:155 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:119 +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:84 +msgid "Alt text" +msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:179 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:252 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน" + +#: src/view/com/composer/GifAltText.tsx:180 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:140 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "ตัดทอนข้อความให้เหลือ {0} ตัวอักษร" + +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "อีเมลได้ถูกส่งไปยัง {0} แล้ว เมื่อได้รหัสยืนยันสามารถกรอกรหัสที่นี่ได้เลย" + +#: src/view/com/modals/ChangeEmail.tsx:114 +msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." +msgstr "อีเมลได้ถูกส่งไปยังที่อยู่เดิมของคุณคือ {0} เมื่อได้รหัสยืนยันสามารถกรอกรหัสที่นี่ได้เลย" + +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "อีเมลได้ถูกส่งไปแล้ว โปรดใส่รหัสยืนยันในกล่องข้อความอีเมลของคุณ" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "เกิดข้อผิดพลาด" + +#: src/components/dialogs/GifSelect.tsx:252 +#~ msgid "An error occured" +#~ msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 +msgid "An error occurred" +msgstr "เกิดข้อผิดพลาด" + +#: src/view/com/composer/state/video.ts:412 +msgid "An error occurred while compressing the video." +msgstr "เกิดข้อผิดพลาดขณะบีบอัดวิดีโอ" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "เกิดข้อผิดพลาดขณะสร้างชุดเริ่มต้นของคุณ ต้องการลองอีกครั้งหรือไม่?" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:135 +msgid "An error occurred while loading the video. Please try again later." +msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้งในภายหลัง" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 +msgid "An error occurred while loading the video. Please try again." +msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้ง" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:79 +#~ msgid "An error occurred while saving the image." +#~ msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "An error occurred while saving the QR code!" +msgstr "เกิดข้อผิดพลาดขณะบันทึก QR code!" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 +msgid "An error occurred while selecting the video" +msgstr "เกิดข้อผิดพลาดขณะเลือกวีดีโอ" + +#: src/components/dms/MessageMenu.tsx:134 +#~ msgid "An error occurred while trying to delete the message. Please try again." +#~ msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:336 +#: src/screens/StarterPack/StarterPackScreen.tsx:358 +msgid "An error occurred while trying to follow all" +msgstr "เกิดข้อผิดพลาดขณะพยายามติดตามทั้งหมด" + +#: src/view/com/composer/state/video.ts:449 +msgid "An error occurred while uploading the video." +msgstr "เกิดข้อผิดพลาดขณะอัปโหลดวิดีโอ" + +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "ปัญหาที่ไม่ได้รวมอยู่ในตัวเลือกเหล่านี้" + +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "เกิดปัญหาขณะเริ่มการสนทนา" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "เกิดปัญหาขณะพยายามเปิดการสนทนา" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 +msgid "An issue occurred, please try again." +msgstr "เกิดปัญหา กรุณาลองอีกครั้ง" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "เกิดข้อผิดพลาดที่ไม่ทราบ" + +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +msgid "an unknown labeler" +msgstr "ผู้ทำเครื่องหมายที่ไม่รู้จัก" + +#: src/components/WhoCanReply.tsx:295 +#: src/view/com/notifications/FeedItem.tsx:231 +#: src/view/com/notifications/FeedItem.tsx:324 +msgid "and" +msgstr "และ" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 +msgid "Animals" +msgstr "สัตว์" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:136 +msgid "Animated GIF" +msgstr "ภาพเคลื่อนไหว GIF" + +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "พฤติกรรมต่อต้านสังคม" + +#: src/view/screens/Search/Search.tsx:346 +#: src/view/screens/Search/Search.tsx:347 +msgid "Any language" +msgstr "ทุกภาษา" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:51 +msgid "Anybody can interact" +msgstr "ทุกคนสามารถมีส่วนร่วมได้" + +#: src/view/screens/LanguageSettings.tsx:92 +msgid "App Language" +msgstr "ภาษาแอป" + +#: src/view/screens/AppPasswords.tsx:223 +msgid "App password deleted" +msgstr "ลบรหัสผ่านแอปแล้ว" + +#: src/view/com/modals/AddAppPasswords.tsx:138 +msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." +msgstr "ชื่อรหัสผ่านแอปต้องประกอบด้วยตัวอักษร ตัวเลข ช่องว่าง ขีดกลาง และขีดล่างเท่านั้น" + +#: src/view/com/modals/AddAppPasswords.tsx:103 +msgid "App Password names must be at least 4 characters long." +msgstr "ชื่อรหัสผ่านแอปต้องมีความยาวอย่างน้อย 4 ตัวอักษร" + +#: src/view/screens/Settings/index.tsx:663 +msgid "App password settings" +msgstr "การตั้งค่ารหัสผ่านแอป" + +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:188 +#: src/view/screens/Settings/index.tsx:672 +msgid "App Passwords" +msgstr "รหัสผ่านแอป" + +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +msgid "Appeal" +msgstr "อุทธรณ์" + +#: src/components/moderation/LabelsOnMeDialog.tsx:243 +msgid "Appeal \"{0}\" label" +msgstr "อุทธรณ์ป้าย \"{0}\"" + +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgid "Appeal submitted" +msgstr "ส่งคำอุทธรณ์แล้ว" + + +#: src/components/moderation/LabelsOnMeDialog.tsx:193 +#~ msgid "Appeal submitted." +#~ msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "อุทธรณ์การตัดสินใจนี้" + +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:484 +msgid "Appearance" +msgstr "รูปลักษณ์" + +#: src/view/screens/Settings/index.tsx:475 +msgid "Appearance settings" +msgstr "การตั้งค่ารูปลักษณ์" + +#: src/Navigation.tsx:325 +msgid "Appearance Settings" +msgstr "การตั้งค่ารูปลักษณ์" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "ใช้ฟีดที่แนะนำตามค่าเริ่มต้น" + +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" + +#: src/view/screens/AppPasswords.tsx:274 +msgid "Are you sure you want to delete the app password \"{name}\"?" +msgstr "คุณแน่ใจหรือว่าต้องการลบรหัสผ่านแอป \"{name}\"?" + +#: src/components/dms/MessageMenu.tsx:123 +#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." +#~ msgstr "" + +#: src/components/dms/MessageMenu.tsx:149 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "คุณแน่ใจหรือว่าต้องการลบข้อความนี้? ข้อความจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น" + +#: src/screens/StarterPack/StarterPackScreen.tsx:621 +msgid "Are you sure you want to delete this starter pack?" +msgstr "คุณแน่ใจหรือว่าต้องการลบชุดเริ่มต้นนี้?" + +#: src/components/dms/ConvoMenu.tsx:189 +#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." +#~ msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "คุณแน่ใจหรือว่าต้องการออกจากการสนทนานี้? ข้อความของคุณจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น" + +#: src/view/com/feeds/FeedSourceCard.tsx:313 +msgid "Are you sure you want to remove {0} from your feeds?" +msgstr "คุณแน่ใจหรือว่าต้องการลบ {0} ออกจากฟีดของคุณ?" + + +#: src/components/FeedCard.tsx:313 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "คุณแน่ใจหรือว่าต้องการลบสิ่งนี้ออกจากฟีดของคุณ?" + +#: src/view/com/composer/Composer.tsx:840 +msgid "Are you sure you'd like to discard this draft?" +msgstr "คุณแน่ใจหรือว่าต้องการลบร่างนี้?" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "คุณแน่ใจไหม?" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 +msgid "Are you writing in <0>{0}?" +msgstr "คุณกำลังเขียนใน <0>{0} ใช่ไหม?" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 +msgid "Art" +msgstr "ศิลปะ" + +#: src/view/com/modals/SelfLabel.tsx:124 +msgid "Artistic or non-erotic nudity." +msgstr "ภาพนู้ดที่เป็นศิลปะหรือไม่ใช่ภาพอนาจาร" + +#: src/screens/Signup/StepHandle.tsx:173 +msgid "At least 3 characters" +msgstr "ต้องมีอย่างน้อย 3 ตัวอักษร" + +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:298 +#: src/view/com/util/ViewHeader.tsx:87 +msgid "Back" +msgstr "กลับ" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 +#~ msgid "Based on your interest in {interestsText}" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:441 +msgid "Basics" +msgstr "พื้นฐาน" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "Birthday" +msgstr "วันเกิด" + +#: src/view/screens/Settings/index.tsx:347 +msgid "Birthday:" +msgstr "วันเกิด:" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:341 +msgid "Block" +msgstr "บล็อก" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Block account" +msgstr "บล็อกบัญชี" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 +msgid "Block Account" +msgstr "บล็อกบัญชี" + +#: src/view/com/profile/ProfileMenu.tsx:324 +msgid "Block Account?" +msgstr "บล็อกบัญชี?" + +#: src/view/screens/ProfileList.tsx:634 +msgid "Block accounts" +msgstr "บล็อกบัญชี" + +#: src/view/screens/ProfileList.tsx:738 +msgid "Block list" +msgstr "ลิสต์บล็อก" + +#: src/view/screens/ProfileList.tsx:733 +msgid "Block these accounts?" +msgstr "บล็อกบัญชีเหล่านี้?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 +msgid "Blocked" +msgstr "ถูกบล็อก" + +#: src/screens/Moderation/index.tsx:277 +msgid "Blocked accounts" +msgstr "บัญชีที่ถูกบล็อก" + +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:106 +msgid "Blocked Accounts" +msgstr "บัญชีที่ถูกบล็อก" + +#: src/view/com/profile/ProfileMenu.tsx:336 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้" + +#: src/view/screens/ModerationBlockedAccounts.tsx:114 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้ คุณจะไม่เห็นเนื้อหาของพวกเขาและพวกเขาจะไม่เห็นเนื้อหาของคุณ" + +#: src/view/com/post-thread/PostThread.tsx:412 +msgid "Blocked post." +msgstr "โพสต์ที่ถูกบล็อก" + +#: src/screens/Profile/Sections/Labels.tsx:173 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "การบล็อกไม่ได้ป้องกันผู้ทำเครื่องหมายนี้จากการวางป้ายบนบัญชีของคุณ" + +#: src/view/screens/ProfileList.tsx:735 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "การบล็อกเป็นสาธารณะ บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้" + +#: src/view/com/profile/ProfileMenu.tsx:333 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "การบล็อกจะไม่ป้องกันไม่ให้ป้ายถูกวางบนบัญชีของคุณ แต่จะหยุดบัญชีนี้จากการตอบในกระทู้ของคุณหรือมีปฏิสัมพันธ์กับคุณ" + +#: src/view/com/auth/SplashScreen.web.tsx:172 +msgid "Blog" +msgstr "บล็อก" + +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/view/com/auth/server-input/index.tsx:154 +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky เป็นเครือข่ายเปิดที่คุณสามารถเลือกผู้ให้บริการโฮสติ้งของคุณได้ หากคุณเป็นนักพัฒนา คุณสามารถโฮสต์เซิร์ฟเวอร์ของคุณเองได้" + +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky สนุกยิ่งขึ้นเมื่อมีเพื่อน!" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82 +#~ msgid "Bluesky is flexible." +#~ msgstr "" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:71 +#~ msgid "Bluesky is open." +#~ msgstr "" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:58 +#~ msgid "Bluesky is public." +#~ msgstr "" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "Bluesky จะเลือกชุดบัญชีที่แนะนำจากผู้คนในเครือข่ายของคุณ" + +#: src/screens/Moderation/index.tsx:568 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "Bluesky จะไม่แสดงโปรไฟล์และโพสต์ของคุณให้กับผู้ใช้ที่ออกจากระบบ แอปอื่นอาจไม่ให้เกียรติกับคำขอนี้ สิ่งนี้ไม่ได้ทำให้บัญชีของคุณเป็นส่วนตัว" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "เบลอภาพ" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "เบลอภาพและกรองออกจากฟีด" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 +msgid "Books" +msgstr "หนังสือ" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:614 +#~ msgid "Brag a little!" +#~ msgstr "" + +#: src/components/FeedInterstitials.tsx:350 +msgid "Browse more accounts on the Explore page" +msgstr "เรียกดูบัญชีเพิ่มเติมในหน้าค้นหา" + +#: src/components/FeedInterstitials.tsx:483 +msgid "Browse more feeds on the Explore page" +msgstr "เรียกดูฟีดเพิ่มเติมในหน้าค้นหา" + +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 +msgid "Browse more suggestions" +msgstr "เรียกดูข้อเสนอเพิ่มเติม" + +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 +msgid "Browse more suggestions on the Explore page" +msgstr "เรียกดูข้อเสนอเพิ่มเติมในหน้าค้นหา" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "เรียกดูฟีดอื่น ๆ" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +msgid "Business" +msgstr "ธุรกิจ" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "by —" +msgstr "โดย —" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 +#~ msgid "by {0}" +#~ msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:62 +msgid "By {0}" +msgstr "โดย {0}" + +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 +#~ msgid "by @{0}" +#~ msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:164 +msgid "by <0/>" +msgstr "โดย {0}" + +#: src/screens/Signup/StepInfo/Policies.tsx:80 +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:162 +msgid "by you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 +msgid "Camera" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:180 +msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." +msgstr "" + +#: src/components/Menu/index.tsx:235 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:281 +#: src/screens/Deactivated.tsx:161 +#: src/view/com/composer/Composer.tsx:540 +#: src/view/com/composer/Composer.tsx:555 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/EditProfile.tsx:244 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:164 +#: src/view/screens/Search/Search.tsx:905 +msgid "Cancel" +msgstr "ยกเลิก" + +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 +msgctxt "action" +msgid "Cancel" +msgstr "ยกเลิก" + +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 +msgid "Cancel account deletion" +msgstr "ยกเลิกการลบบัญชี" + +#: src/view/com/modals/ChangeHandle.tsx:137 +msgid "Cancel change handle" +msgstr "ยกเลิกการเปลี่ยนชื่อ" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "ยกเลิกการครอปภาพ" + +#: src/view/com/modals/EditProfile.tsx:239 +msgid "Cancel profile editing" +msgstr "ยกเลิกการแก้ไขโปรไฟล์" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:159 +msgid "Cancel quote post" +msgstr "ยกเลิกโพสต์คำคม" + +#: src/screens/Deactivated.tsx:155 +msgid "Cancel reactivation and log out" +msgstr "ยกเลิกการเปิดใช้งานใหม่และออกจากระบบ" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:897 +msgid "Cancel search" +msgstr "ยกเลิกการค้นหา" + +#: src/view/com/modals/LinkWarning.tsx:106 +msgid "Cancels opening the linked website" +msgstr "ยกเลิกการเปิดเว็บไซต์ที่เชื่อมโยง" + +#: src/state/shell/composer/index.tsx:95 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +msgid "Cannot interact with a blocked user" +msgstr "ไม่สามารถโต้ตอบกับผู้ใช้ที่ถูกบล็อก" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 +msgid "Captions (.vtt)" +msgstr "คำบรรยาย (.vtt)" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +msgid "Captions & alt text" +msgstr "คำบรรยาย & ข้อความสำรอง" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:368 +#~ msgid "Celebrating {0} users" +#~ msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:160 +msgid "Change" +msgstr "เปลี่ยน" + +#: src/view/screens/Settings/index.tsx:341 +msgctxt "action" +msgid "Change" +msgstr "เปลี่ยน" + +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "เปลี่ยนที่อยู่อีเมล" + +#: src/view/screens/Settings/index.tsx:684 +msgid "Change handle" +msgstr "เปลี่ยนแฮนด์เดิล" + +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:695 +msgid "Change Handle" +msgstr "เปลี่ยนแฮนด์เดิล" + +#: src/view/com/modals/VerifyEmail.tsx:155 +msgid "Change my email" +msgstr "เปลี่ยนอีเมล" + +#: src/view/screens/Settings/index.tsx:729 +msgid "Change password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:740 +msgid "Change Password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 +msgid "Change post language to {0}" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:104 +msgid "Change Your Email" +msgstr "เปลี่ยนอีเมลของคุณ" + +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +msgid "Chat" +msgstr "แชท" + +#: src/components/dms/ConvoMenu.tsx:82 +msgid "Chat muted" +msgstr "ปิดเสียงแชทแล้ว" + +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:87 +#: src/view/screens/Settings/index.tsx:604 +msgid "Chat settings" +msgstr "ตั้งค่าแชท" + +#: src/screens/Messages/Settings.tsx:59 +#: src/view/screens/Settings/index.tsx:613 +msgid "Chat Settings" +msgstr "ตั้งค่าแชท" + +#: src/components/dms/ConvoMenu.tsx:84 +msgid "Chat unmuted" +msgstr "เปิดเสียงแชทแล้ว" + +#: src/screens/Messages/Conversation/index.tsx:26 +#~ msgid "Chat with {chatId}" +#~ msgstr "" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "เช็คสถานะของฉัน" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:122 +#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 +#~ msgid "Check out some recommended users. Follow them to see similar users." +#~ msgstr "" + +#: src/screens/Login/LoginForm.tsx:275 +msgid "Check your email for a login code and enter it here." +msgstr "ตรวจสอบอีเมลของคุณเพื่อรับรหัสเข้าสู่ระบบและกรอกที่นี่" + +#: src/view/com/modals/DeleteAccount.tsx:231 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "ตรวจสอบกล่องขาเข้าของคุณสำหรับอีเมลที่มีรหัสยืนยันให้กรอกด้านล่าง:" + +#: src/view/com/modals/Threadgate.tsx:75 +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:191 +#~ msgid "Choose 3 or more:" +#~ msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:326 +#~ msgid "Choose at least {0} more" +#~ msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:190 +msgid "Choose Feeds" +msgstr "เลือกฟีด" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 +msgid "Choose for me" +msgstr "เลือกให้ฉัน" + +#: src/screens/StarterPack/Wizard/index.tsx:186 +msgid "Choose People" +msgstr "เลือกผู้คน" + +#: src/view/com/auth/server-input/index.tsx:76 +msgid "Choose Service" +msgstr "เลือกบริการ" + +#: src/screens/Onboarding/StepFinished.tsx:271 +msgid "Choose the algorithms that power your custom feeds." +msgstr "เลือกอัลกอริธึมที่ขับเคลื่อนฟีดที่กำหนดเองของคุณ" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:85 +#~ msgid "Choose the algorithms that power your experience with custom feeds." +#~ msgstr "เลือกอัลกอริธึมที่ขับเคลื่อนประสบการณ์ของคุณด้วยฟีดที่กำหนดเอง" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "เลือกสีนี้เป็นอวาตาร์ของคุณ" + + +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +#~ msgid "Choose who can reply" +#~ msgstr "เลือกผู้ที่สามารถตอบกลับ" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 +#~ msgid "Choose your main feeds" +#~ msgstr "เลือกฟีดหลักของคุณ" + +#: src/screens/Signup/StepInfo/index.tsx:201 +msgid "Choose your password" +msgstr "ป้อนรหัสผ่านของคุณ" + +#: src/view/screens/Settings/index.tsx:912 +#~ msgid "Clear all legacy storage data" +#~ msgstr "ลบข้อมูลการเก็บข้อมูลเก่า" + +#: src/view/screens/Settings/index.tsx:915 +#~ msgid "Clear all legacy storage data (restart after this)" +#~ msgstr "ลบข้อมูลการเก็บข้อมูลเก่า (รีสตาร์ทหลังจากนี้)" + +#: src/view/screens/Settings/index.tsx:876 +msgid "Clear all storage data" +msgstr "ลบข้อมูลการเก็บข้อมูลทั้งหมด" + +#: src/view/screens/Settings/index.tsx:879 +msgid "Clear all storage data (restart after this)" +msgstr "ลบข้อมูลการเก็บข้อมูลทั้งหมด (รีสตาร์ทหลังจากนี้)" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "ลบการค้นหา" + +#: src/view/screens/Settings/index.tsx:913 +#~ msgid "Clears all legacy storage data" +#~ msgstr "ลบข้อมูลการเก็บข้อมูลเก่า" + +#: src/view/screens/Settings/index.tsx:877 +msgid "Clears all storage data" +msgstr "ลบข้อมูลการเก็บข้อมูลทั้งหมด" + +#: src/view/screens/Support.tsx:40 +msgid "click here" +msgstr "คลิกที่นี่" + +#: src/view/com/modals/DeleteAccount.tsx:208 +msgid "Click here for more information on deactivating your account" +msgstr "คลิกที่นี่เพื่อข้อมูลเพิ่มเติมเกี่ยวกับการปิดใช้งานบัญชีของคุณ" + +#: src/view/com/modals/DeleteAccount.tsx:216 +msgid "Click here for more information." +msgstr "คลิกที่นี่เพื่อข้อมูลเพิ่มเติม." + +#: src/screens/Feeds/NoFollowingFeed.tsx:46 +#~ msgid "Click here to add one." +#~ msgstr "คลิกที่นี่เพื่อเพิ่มหนึ่ง" + +#: src/components/TagMenu/index.web.tsx:152 +msgid "Click here to open tag menu for {tag}" +msgstr "คลิกที่นี่เพื่อเปิดเมนูแท็กสำหรับ {tag}" + +#: src/components/RichText.tsx:198 +#~ msgid "Click here to open tag menu for #{tag}" +#~ msgstr "คลิกที่นี่เพื่อเปิดเมนูแท็กสำหรับ #{tag}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +msgid "Click to disable quote posts of this post." +msgstr "คลิกเพื่อปิดการโพสต์อ้างอิงของโพสต์นี้." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "คลิกเพื่อเปิดการโพสต์อ้างอิงของโพสต์นี้." + +#: src/components/dms/MessageItem.tsx:240 +msgid "Click to retry failed message" +msgstr "คลิกเพื่อพยายามส่งข้อความที่ล้มเหลวอีกครั้ง" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "ภูมิอากาศ" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "Clip 🐴 clop 🐴" + + +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:185 +msgid "Close" +msgstr "ปิด" + +#: src/components/Dialog/index.web.tsx:109 +#: src/components/Dialog/index.web.tsx:251 +msgid "Close active dialog" +msgstr "ปิดกล่องโต้ตอบที่เปิดอยู่" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "ปิดการแจ้งเตือน" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "ปิดลิ้นชักด้านล่าง" + +#: src/components/dialogs/GifSelect.tsx:276 +msgid "Close dialog" +msgstr "ปิดกล่องโต้ตอบ" + +#: src/components/dialogs/GifSelect.tsx:169 +msgid "Close GIF dialog" +msgstr "ปิดกล่องโต้ตอบ GIF" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 +msgid "Close image" +msgstr "ปิดภาพ" + +#: src/view/com/lightbox/Lightbox.web.tsx:129 +msgid "Close image viewer" +msgstr "ปิดโปรแกรมดูภาพ" + +#: src/components/dms/MessagesNUX.tsx:162 +#~ msgid "Close modal" +#~ msgstr "ปิดโมดัล" + +#: src/view/shell/index.web.tsx:65 +msgid "Close navigation footer" +msgstr "ปิดฟุตเตอร์การนำทาง" + +#: src/components/Menu/index.tsx:229 +#: src/components/TagMenu/index.tsx:275 +msgid "Close this dialog" +msgstr "ปิดกล่องโต้ตอบนี้" + +#: src/view/shell/index.web.tsx:66 +msgid "Closes bottom navigation bar" +msgstr "ปิดแถบการนำทางด้านล่าง" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน" + +#: src/view/com/composer/Composer.tsx:552 +msgid "Closes post composer and discards post draft" +msgstr "ปิดเครื่องมือสร้างโพสต์และยกเลิกต้นฉบับโพสต์" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 +msgid "Closes viewer for header image" +msgstr "ปิดโปรแกรมดูสำหรับภาพหัวเรื่อง" + +#: src/view/com/notifications/FeedItem.tsx:265 +msgid "Collapse list of users" +msgstr "ย่อลิสต์ผู้ใช้" + +#: src/view/com/notifications/FeedItem.tsx:470 +msgid "Collapses list of users for a given notification" +msgstr "ย่อลิสต์ผู้ใช้สำหรับการแจ้งเตือนที่กำหนด" + +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "โหมดสี" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 +msgid "Comedy" +msgstr "ตลก" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 +msgid "Comics" +msgstr "การ์ตูน" + +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "Community Guidelines" +msgstr "แนวทางชุมชน" + +#: src/screens/Onboarding/StepFinished.tsx:284 +msgid "Complete onboarding and start using your account" +msgstr "เสร็จสิ้นการอบรมและเริ่มใช้งานบัญชีของคุณ" + +#: src/screens/Signup/index.tsx:144 +msgid "Complete the challenge" +msgstr "ทำให้สำเร็จตามความท้าทาย" + +#: src/view/com/composer/Composer.tsx:664 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "สร้างโพสต์ความยาวสูงสุด {MAX_GRAPHEME_LENGTH} ตัวอักษร" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:47 +msgid "Compose reply" +msgstr "สร้างการตอบกลับ" + +#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 +#~ msgid "Compressing..." +#~ msgstr "กำลังบีบอัด..." + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 +#~ msgid "Configure content filtering setting for category: {0}" +#~ msgstr "ตั้งค่าการกรองเนื้อหาสำหรับหมวดหมู่: {0}" + +#: src/components/moderation/LabelPreference.tsx:81 +msgid "Configure content filtering setting for category: {name}" +msgstr "ตั้งค่าการกรองเนื้อหาสำหรับหมวดหมู่: {name}" + +#: src/components/moderation/LabelPreference.tsx:243 +msgid "Configured in <0>moderation settings." +msgstr "ตั้งค่าใน <0>การตั้งค่าการดูแล." + +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 +#: src/view/com/modals/SelfLabel.tsx:155 +#: src/view/com/modals/VerifyEmail.tsx:239 +#: src/view/com/modals/VerifyEmail.tsx:241 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 +msgid "Confirm" +msgstr "ยืนยัน" + +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 +msgid "Confirm Change" +msgstr "ยืนยันการเปลี่ยนแปลง" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 +msgid "Confirm content language settings" +msgstr "ยืนยันการตั้งค่าภาษาเนื้อหา" + +#: src/view/com/modals/DeleteAccount.tsx:282 +msgid "Confirm delete account" +msgstr "ยืนยันการลบบัญชี" + +#: src/screens/Moderation/index.tsx:311 +msgid "Confirm your age:" +msgstr "ยืนยันอายุของคุณ:" + +#: src/screens/Moderation/index.tsx:302 +msgid "Confirm your birthdate" +msgstr "ยืนยันวันเกิดของคุณ" + + +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 +msgid "Confirmation code" +msgstr "รหัสยืนยัน" + +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "รหัสยืนยัน" + +#: src/screens/Login/LoginForm.tsx:309 +msgid "Connecting..." +msgstr "กำลังเชื่อมต่อ..." + +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 +msgid "Contact support" +msgstr "ติดต่อฝ่ายสนับสนุน" + +#: src/components/moderation/LabelsOnMe.tsx:42 +#~ msgid "content" +#~ msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "เนื้อหาถูกบล็อก" + +#: src/screens/Moderation/index.tsx:295 +msgid "Content filters" +msgstr "ตัวกรองเนื้อหา" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:278 +msgid "Content Languages" +msgstr "ภาษาของเนื้อหา" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 +msgid "Content Not Available" +msgstr "เนื้อหาไม่พร้อมใช้งาน" + +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 +msgid "Content Warning" +msgstr "คำเตือนเนื้อหา" + +#: src/view/com/composer/labels/LabelsBtn.tsx:32 +msgid "Content warnings" +msgstr "คำเตือนเนื้อหา" + +#: src/components/Menu/index.web.tsx:83 +msgid "Context menu backdrop, click to close the menu." +msgstr "แบ็คดรอปเมนูบริบท คลิกเพื่อปิดเมนู" + +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 +msgid "Continue" +msgstr "ดำเนินการต่อ" + +#: src/components/AccountList.tsx:113 +msgid "Continue as {0} (currently signed in)" +msgstr "ดำเนินการต่อในฐานะ {0} (ลงชื่อเข้าใช้แล้ว)" + +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "ดำเนินการต่อเธรด..." + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "ดำเนินการต่อไปยังขั้นตอนถัดไป" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 +#~ msgid "Continue to the next step" +#~ msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 +#~ msgid "Continue to the next step without following any accounts" +#~ msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:164 +msgid "Conversation deleted" +msgstr "การสนทนาถูกลบ" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "การทำอาหาร" + +#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "คัดลอกแล้ว" + +#: src/view/screens/Settings/index.tsx:233 +msgid "Copied build version to clipboard" +msgstr "คัดลอกเวอร์ชันบิลด์ไปยังคลิปบอร์ดแล้ว" + +#: src/components/dms/MessageMenu.tsx:57 +#: src/view/com/modals/AddAppPasswords.tsx:80 +#: src/view/com/modals/ChangeHandle.tsx:313 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +msgid "Copied to clipboard" +msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว" + +#: src/components/dialogs/Embed.tsx:136 +msgid "Copied!" +msgstr "คัดลอกแล้ว!" + +#: src/view/com/modals/AddAppPasswords.tsx:215 +msgid "Copies app password" +msgstr "คัดลอกรหัสผ่านของแอป" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:214 +msgid "Copy" +msgstr "คัดลอก" + +#: src/view/com/modals/ChangeHandle.tsx:467 +msgid "Copy {0}" +msgstr "คัดลอก {0}" + +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 +msgid "Copy code" +msgstr "คัดลอกโค้ด" + +#: src/components/StarterPack/ShareDialog.tsx:124 +msgid "Copy link" +msgstr "คัดลอกลิงก์" + +#: src/components/StarterPack/ShareDialog.tsx:131 +msgid "Copy Link" +msgstr "คัดลอกลิงก์" + +#: src/view/screens/ProfileList.tsx:478 +msgid "Copy link to list" +msgstr "คัดลอกลิงก์ไปยังลิสต์" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +msgid "Copy link to post" +msgstr "คัดลอกลิงก์ไปยังโพสต์" + +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 +msgid "Copy message text" +msgstr "คัดลอกข้อความ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +msgid "Copy post text" +msgstr "คัดลอกข้อความโพสต์" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Copy QR code" +msgstr "คัดลอก QR โค้ด" + +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "Copyright Policy" +msgstr "นโยบายลิขสิทธิ์" + +#: src/view/com/composer/videos/state.ts:31 +#~ msgid "Could not compress video" +#~ msgstr "ไม่สามารถบีบอัดวิดีโอได้" + +#: src/components/dms/LeaveConvoPrompt.tsx:39 +msgid "Could not leave chat" +msgstr "ไม่สามารถออกจากการสนทนาได้" + +#: src/view/screens/ProfileFeed.tsx:102 +msgid "Could not load feed" +msgstr "ไม่สามารถโหลดฟีดได้" + +#: src/view/screens/ProfileList.tsx:1011 +msgid "Could not load list" +msgstr "ไม่สามารถโหลดลิสต์ได้" + +#: src/components/dms/NewChat.tsx:241 +#~ msgid "Could not load profiles. Please try again later." +#~ msgstr "ไม่สามารถโหลดโปรไฟล์ได้ โปรดลองอีกครั้งภายหลัง" + +#: src/components/dms/ConvoMenu.tsx:88 +msgid "Could not mute chat" +msgstr "ไม่สามารถปิดเสียงการสนทนาได้" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:56 +msgid "Could not process your video" +msgstr "ไม่สามารถประมวลผลวิดีโอของคุณได้" + +#: src/components/dms/ConvoMenu.tsx:68 +#~ msgid "Could not unmute chat" +#~ msgstr "ไม่สามารถเปิดเสียงการสนทนาได้" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 +msgid "Create" +msgstr "สร้าง" + +#: src/view/com/auth/SplashScreen.tsx:57 +#: src/view/com/auth/SplashScreen.web.tsx:106 +#~ msgid "Create a new account" +#~ msgstr "สร้างบัญชีใหม่" + +#: src/view/screens/Settings/index.tsx:402 +msgid "Create a new Bluesky account" +msgstr "สร้างบัญชี Bluesky ใหม่" + +#: src/components/StarterPack/QrCodeDialog.tsx:153 +msgid "Create a QR code for a starter pack" +msgstr "สร้าง QR โค้ดสำหรับชุดเริ่มต้น" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 +msgid "Create a starter pack" +msgstr "สร้างชุดเริ่มต้น" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 +msgid "Create a starter pack for me" +msgstr "สร้างชุดเริ่มต้นสำหรับฉัน" + +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "สร้างบัญชี" + +#: src/screens/Signup/index.tsx:93 +msgid "Create Account" +msgstr "สร้างบัญชี" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +msgid "Create an account" +msgstr "สร้างบัญชี" + +#: src/screens/Onboarding/StepProfile/index.tsx:292 +msgid "Create an avatar instead" +msgstr "สร้างอวตารแทน" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 +msgid "Create another" +msgstr "สร้างอันใหม่" + +#: src/view/com/modals/AddAppPasswords.tsx:243 +msgid "Create App Password" +msgstr "สร้างรหัสผ่านแอป" + +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "สร้างบัญชีใหม่" + +#: src/components/StarterPack/ShareDialog.tsx:158 +#~ msgid "Create QR code" +#~ msgstr "สร้างรหัส QR" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:101 +msgid "Create report for {0}" +msgstr "สร้างรายงานสำหรับ {0}" + +#: src/view/screens/AppPasswords.tsx:243 +msgid "Created {0}" +msgstr "สร้างเมื่อ {0}" + +#: src/view/com/composer/Composer.tsx:469 +#~ msgid "Creates a card with a thumbnail. The card links to {url}" +#~ msgstr "" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 +msgid "Culture" +msgstr "วัฒนธรรม" + +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "กำหนดเอง" + +#: src/view/com/modals/ChangeHandle.tsx:375 +msgid "Custom domain" +msgstr "โดเมนแบบกำหนดเอง" + +#: src/view/screens/Feeds.tsx:760 +#: src/view/screens/Search/Explore.tsx:391 +msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." +msgstr "ฟีดแบบกำหนดเองที่สร้างโดยชุมชนจะทำให้คุณได้รับประสบการณ์ใหม่ ๆ และช่วยให้คุณค้นหาเนื้อหาที่คุณชื่นชอบ" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 +msgid "Customize media from external sites." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 +msgid "Customize who can interact with this post." +msgstr "กำหนดผู้ที่สามารถโต้ตอบกับโพสต์นี้ได้" + +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 +msgid "Dark" +msgstr "มืด" + +#: src/view/screens/Debug.tsx:63 +msgid "Dark mode" +msgstr "โหมดมืด" + +#: src/screens/Settings/AppearanceSettings.tsx:122 +msgid "Dark theme" +msgstr "ธีมมืด" + +#: src/view/screens/Settings/index.tsx:473 +#~ msgid "Dark Theme" +#~ msgstr "ธีมมืด" + +#: src/screens/Signup/StepInfo/index.tsx:222 +msgid "Date of birth" +msgstr "วันเกิด" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:772 +msgid "Deactivate account" +msgstr "ปิดการใช้งานบัญชี" + +#: src/view/screens/Settings/index.tsx:784 +msgid "Deactivate my account" +msgstr "ปิดการใช้งานบัญชีของฉัน" + +#: src/view/screens/Settings/index.tsx:839 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:83 +msgid "Debug panel" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "ค่าเริ่มตัน" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/StarterPackScreen.tsx:652 +#: src/screens/StarterPack/StarterPackScreen.tsx:732 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/ProfileList.tsx:717 +msgid "Delete" +msgstr "ลบ" + +#: src/view/screens/Settings/index.tsx:794 +msgid "Delete account" +msgstr "ลบบัญชี" + +#: src/view/com/modals/DeleteAccount.tsx:87 +#~ msgid "Delete Account" +#~ msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:105 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "ลบบัญชี <0>\"<1>{0}<2>\"" + +#: src/view/screens/AppPasswords.tsx:236 +msgid "Delete app password" +msgstr "ลบรหัสผ่านแอป" + +#: src/view/screens/AppPasswords.tsx:272 +msgid "Delete app password?" +msgstr "ลบรหัสผ่านแอปหรือไม่?" + +#: src/view/screens/Settings/index.tsx:856 +#: src/view/screens/Settings/index.tsx:859 +msgid "Delete chat declaration record" +msgstr "ลบบันทึกการประกาศแชท" + +#: src/components/dms/MessageMenu.tsx:124 +msgid "Delete for me" +msgstr "ลบสำหรับฉัน" + +#: src/view/screens/ProfileList.tsx:521 +msgid "Delete List" +msgstr "ลบลิสต์" + +#: src/components/dms/MessageMenu.tsx:147 +msgid "Delete message" +msgstr "ลบข้อความ" + +#: src/components/dms/MessageMenu.tsx:122 +msgid "Delete message for me" +msgstr "ลบข้อความสำหรับฉัน" + +#: src/view/com/modals/DeleteAccount.tsx:285 +msgid "Delete my account" +msgstr "ลบบัญชีของฉัน" + +#: src/view/screens/Settings/index.tsx:806 +msgid "Delete My Account…" +msgstr "ลบบัญชีของฉัน…" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +msgid "Delete post" +msgstr "ลบโพสต์" + +#: src/screens/StarterPack/StarterPackScreen.tsx:567 +#: src/screens/StarterPack/StarterPackScreen.tsx:723 +msgid "Delete starter pack" +msgstr "ลบชุดเริ่มต้น" + +#: src/screens/StarterPack/StarterPackScreen.tsx:618 +msgid "Delete starter pack?" +msgstr "ลบชุดเริ่มต้นหรือไม่?" + +#: src/view/screens/ProfileList.tsx:712 +msgid "Delete this list?" +msgstr "ลบลิสต์นี้หรือไม่?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +msgid "Delete this post?" +msgstr "ลบโพสต์นี้หรือไม่?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 +msgid "Deleted" +msgstr "ถูกลบ" + +#: src/view/com/post-thread/PostThread.tsx:398 +msgid "Deleted post." +msgstr "โพสต์ถูกลบ." + +#: src/view/screens/Settings/index.tsx:857 +msgid "Deletes the chat declaration record" +msgstr "ลบบันทึกการประกาศแชท" + +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/EditProfile.tsx:193 +#: src/view/com/modals/EditProfile.tsx:205 +msgid "Description" +msgstr "คำอธิบาย" + +#: src/view/com/composer/GifAltText.tsx:151 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:115 +msgid "Descriptive alt text" +msgstr "ข้อความคำอธิบายภาพ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +msgid "Detach quote" +msgstr "แยกการอ้างอิง" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +msgid "Detach quote post?" +msgstr "แยกการอ้างอิงโพสต์หรือไม่?" + +#: src/components/WhoCanReply.tsx:175 +msgid "Dialog: adjust who can interact with this post" +msgstr "กล่องโต้ตอบ: ปรับว่าใครสามารถโต้ตอบกับโพสต์นี้ได้" + +#: src/view/com/composer/Composer.tsx:367 +msgid "Did you want to say anything?" +msgstr "คุณต้องการพูดอะไรไหม?" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Dim" +msgstr "สว่าง" + +#: src/components/dms/MessagesNUX.tsx:88 +#~ msgid "Direct messages are here!" +#~ msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:111 +#~ msgid "Disable autoplay for GIFs" +#~ msgstr "" + +#: src/view/screens/AccessibilitySettings.tsx:108 +msgid "Disable autoplay for videos and GIFs" +msgstr "ปิดการเล่นอัตโนมัติสำหรับวิดีโอและ GIF" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "ปิดการยืนยันตัวตนสองชั้นผ่านอีเมล (2FA)" + +#: src/view/screens/AccessibilitySettings.tsx:122 +msgid "Disable haptic feedback" +msgstr "ปิดการตอบสนองแบบสั่น" + +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable haptics" +#~ msgstr "ปิดการตอบสนองแบบสั่น" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 +msgid "Disable subtitles" +msgstr "ปิดคำบรรยาย" + +#: src/view/screens/Settings/index.tsx:697 +#~ msgid "Disable vibrations" +#~ msgstr "ปิดการสั่น" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:140 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Moderation/index.tsx:353 +msgid "Disabled" +msgstr "ปิดใช้งาน" + +#: src/view/com/composer/Composer.tsx:842 +msgid "Discard" +msgstr "ละทิ้ง" + +#: src/view/com/composer/Composer.tsx:839 +msgid "Discard draft?" +msgstr "ละทิ้งร่างข้อความหรือไม่?" + +#: src/screens/Moderation/index.tsx:553 +#: src/screens/Moderation/index.tsx:557 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "ไม่สนับสนุนแอปให้แสดงบัญชีของฉันต่อผู้ใช้ที่ไม่ได้เข้าสู่ระบบ" + +#: src/tours/HomeTour.tsx:70 +#~ msgid "Discover learns which posts you like as you browse." +#~ msgstr "การค้นพบจะเรียนรู้โพสต์ที่คุณชอบขณะที่คุณเรียกดู" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "ค้นพบฟีดที่กำหนดเองใหม่ๆ" + +#: src/view/screens/Search/Explore.tsx:389 +msgid "Discover new feeds" +msgstr "ค้นพบฟีดใหม่ๆ" + +#: src/view/screens/Feeds.tsx:757 +msgid "Discover New Feeds" +msgstr "ค้นพบฟีดใหม่" + +#: src/components/Dialog/index.tsx:265 +msgid "Dismiss" +msgstr "ปิด" + +#: src/view/com/composer/Composer.tsx:1101 +msgid "Dismiss error" +msgstr "ปิดข้อผิดพลาด" + +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "ปิดคู่มือเริ่มต้นใช้งาน" + +#: src/view/screens/AccessibilitySettings.tsx:96 +msgid "Display larger alt text badges" +msgstr "แสดงป้ายข้อความคำอธิบายภาพที่ใหญ่ขึ้น" + +#: src/view/com/modals/EditProfile.tsx:187 +msgid "Display name" +msgstr "ชื่อที่แสดง" + +#: src/view/com/modals/EditProfile.tsx:175 +msgid "Display Name" +msgstr "ชื่อที่แสดง" + +#: src/view/com/modals/ChangeHandle.tsx:384 +msgid "DNS Panel" +msgstr "แผง DNS" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "ไม่ใช้คำปิดเสียงนี้กับผู้ใช้ที่คุณติดตาม" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "ไม่มีเนื้อหาที่เปิดเผย" + +#: src/screens/Signup/StepHandle.tsx:159 +msgid "Doesn't begin or end with a hyphen" +msgstr "ไม่เริ่มหรือจบด้วยขีดกลาง" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "Domain Value" +msgstr "ค่าโดเมน" + +#: src/view/com/modals/ChangeHandle.tsx:475 +msgid "Domain verified!" +msgstr "ยืนยันโดเมนแล้ว!" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 +#: src/view/com/auth/server-input/index.tsx:170 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 +msgid "Done" +msgstr "เสร็จสิ้น" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 +#: src/view/com/modals/SelfLabel.tsx:158 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "เสร็จสิ้น" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 +msgid "Done{extraText}" +msgstr "เสร็จสิ้น{extraText}" + +#: src/components/Dialog/index.tsx:266 +msgid "Double tap to close the dialog" +msgstr "แตะสองครั้งเพื่อปิดหน้าต่าง" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "ดาวน์โหลด Bluesky" + +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 +msgid "Download CAR file" +msgstr "ดาวน์โหลดไฟล์ CAR" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:622 +#~ msgid "Download image" +#~ msgstr "ดาวน์โหลดภาพ" + +#: src/view/com/composer/text-input/TextInput.web.tsx:291 +msgid "Drop to add images" +msgstr "ลากเพื่อเพิ่มรูปภาพ" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 +#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "ระยะเวลา:" + +#: src/view/com/modals/ChangeHandle.tsx:245 +msgid "e.g. alice" +msgstr "เช่น alice" + +#: src/view/com/modals/EditProfile.tsx:180 +msgid "e.g. Alice Roberts" +msgstr "เช่น Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 +msgid "e.g. alice.com" +msgstr "เช่น alice.com" + +#: src/view/com/modals/EditProfile.tsx:198 +msgid "e.g. Artist, dog-lover, and avid reader." +msgstr "เช่น ศิลปิน คนรักสุนัข และนักอ่านตัวยง" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "เช่น การเปลือยกายที่เป็นศิลปะ" + +#: src/view/com/modals/CreateOrEditList.tsx:263 +msgid "e.g. Great Posters" +msgstr "เช่น โปสเตอร์ที่ยอดเยี่ยม" + +#: src/view/com/modals/CreateOrEditList.tsx:264 +msgid "e.g. Spammers" +msgstr "เช่น ผู้ส่งสแปม" + +#: src/view/com/modals/CreateOrEditList.tsx:292 +msgid "e.g. The posters who never miss." +msgstr "เช่น โปสเตอร์ที่ไม่เคยพลาด" + +#: src/view/com/modals/CreateOrEditList.tsx:293 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "เช่น ผู้ใช้ที่ตอบกลับด้วยโฆษณาอย่างต่อเนื่อง" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "แต่ละรหัสใช้งานได้เพียงครั้งเดียว คุณจะได้รับรหัสเชิญเพิ่มเติมเป็นระยะ" + + +#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 +#: src/view/screens/Feeds.tsx:385 +#: src/view/screens/Feeds.tsx:453 +msgid "Edit" +msgstr "แก้ไข" + +#: src/view/com/lists/ListMembers.tsx:146 +msgctxt "action" +msgid "Edit" +msgstr "แก้ไข" + +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 +msgid "Edit avatar" +msgstr "แก้ไขรูปประจำตัว" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "แก้ไขฟีด" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 +msgid "Edit image" +msgstr "แก้ไขรูปภาพ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +msgid "Edit interaction settings" +msgstr "แก้ไขการตั้งค่าการโต้ตอบ" + +#: src/view/screens/ProfileList.tsx:509 +msgid "Edit list details" +msgstr "แก้ไขรายละเอียดลิสต์" + + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "Edit Moderation List" +msgstr "แก้ไขลิสต์การกลั่นกรอง" + +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:383 +#: src/view/screens/Feeds.tsx:451 +#: src/view/screens/SavedFeeds.tsx:116 +msgid "Edit My Feeds" +msgstr "แก้ไขฟีดของฉัน" + +#: src/view/com/modals/EditProfile.tsx:147 +msgid "Edit my profile" +msgstr "แก้ไขโปรไฟล์ของฉัน" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "แก้ไขบุคคล" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +msgid "Edit post interaction settings" +msgstr "แก้ไขการตั้งค่าการโต้ตอบกับโพสต์" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:170 +msgid "Edit profile" +msgstr "แก้ไขโปรไฟล์" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:173 +msgid "Edit Profile" +msgstr "แก้ไขโปรไฟล์" + + +#: src/view/com/home/HomeHeaderLayout.web.tsx:76 +#: src/view/screens/Feeds.tsx:416 +#~ msgid "Edit Saved Feeds" +#~ msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:554 +msgid "Edit starter pack" +msgstr "แก้ไขชุดเริ่มต้น" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "Edit User List" +msgstr "แก้ไขลิสต์ผู้ใช้" + +#: src/components/WhoCanReply.tsx:87 +msgid "Edit who can reply" +msgstr "แก้ไขผู้ที่สามารถตอบกลับได้" + +#: src/view/com/modals/EditProfile.tsx:188 +msgid "Edit your display name" +msgstr "แก้ไขชื่อที่แสดงของคุณ" + +#: src/view/com/modals/EditProfile.tsx:206 +msgid "Edit your profile description" +msgstr "แก้ไขคำอธิบายโปรไฟล์ของคุณ" + +#: src/Navigation.tsx:372 +msgid "Edit your starter pack" +msgstr "แก้ไขชุดเริ่มต้นของคุณ" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 +msgid "Education" +msgstr "การศึกษา" + +#: src/components/dialogs/ThreadgateEditor.tsx:98 +#~ msgid "Either choose \"Everybody\" or \"Nobody\"" +#~ msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 +msgid "Email" +msgstr "อีเมล" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 +msgid "Email 2FA disabled" +msgstr "ยกเลิกการยืนยันสองชั้นผ่านอีเมล" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "ที่อยู่อีเมล" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "ส่งข้อความอีเมลอีกรอบ" + +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 +msgid "Email updated" +msgstr "อัพเดตอีเมลเรียบร้อยแล้ว" + +#: src/view/com/modals/ChangeEmail.tsx:106 +msgid "Email Updated" +msgstr "อัพเดตอีเมลเรียบร้อยแล้ว" + +#: src/view/com/modals/VerifyEmail.tsx:85 +msgid "Email verified" +msgstr "ยืนยันอีเมลเรียบร้อยแล้ว" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "ยืนยันอีเมลเรียบร้อยแล้ว" + +#: src/view/screens/Settings/index.tsx:319 +msgid "Email:" +msgstr "อีเมล :" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed HTML code" +msgstr "ฝัง HTML" + +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +msgid "Embed post" +msgstr "ฝังโพสต์" + +#: src/components/dialogs/Embed.tsx:101 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "ฝังโพสต์เว็บไซต์ของคุณ แค่กรอกโค้ดด้านล่างแล้ววางบนเว็บไซต์" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "อนุญาตเฉพาะ {0}" + +#: src/screens/Moderation/index.tsx:340 +msgid "Enable adult content" +msgstr "อนุญาตให้เข้าถึงเนื้อหาผู้ใหญ่ (18+)" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 +#~ msgid "Enable Adult Content" +#~ msgstr "" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 +#~ msgid "Enable adult content in your feeds" +#~ msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "อนุญาตให้นำไฟล์ด้านนอกเข้ามา" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 +msgid "Enable media players for" +msgstr "อนุญาตตัวเล่นสื่อสำหรับ" + +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "อนุญาตการแจ้งเตือนแบบสำคัญ" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 +msgid "Enable subtitles" +msgstr "อนุญาตซับไตเติ้ล" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 +#~ msgid "Enable this setting to only see replies between people you follow." +#~ msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "อนุญาตแหล่งที่มานี้เท่านั้น" + +#: src/screens/Messages/Settings.tsx:131 +#: src/screens/Messages/Settings.tsx:134 +#: src/screens/Moderation/index.tsx:351 +msgid "Enabled" +msgstr "อนุญาตแล้ว" + +#: src/screens/Profile/Sections/Feed.tsx:114 +msgid "End of feed" +msgstr "จบฟีต" + +#: src/components/Lists.tsx:52 +#~ msgid "End of list" +#~ msgstr "" + +#: src/tours/Tooltip.tsx:159 +#~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." +#~ msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "โปรดตรวจสอบว่าคุณได้เลือกภาษาสำหรับไฟล์ซับไตเติลแต่ละไฟล์แล้ว" + +#: src/view/com/modals/AddAppPasswords.tsx:161 +msgid "Enter a name for this App Password" +msgstr "ป้อนชื่อสำหรับรหัสผ่านแอปนี้" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Enter a password" +msgstr "ป้อนรหัสผ่าน" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "ป้อนคำหรือแท็ก" + +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "ป้อนรหัส" + +#: src/view/com/modals/VerifyEmail.tsx:113 +msgid "Enter Confirmation Code" +msgstr "ป้อนรหัสยืนยัน" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Enter the code you received to change your password." +msgstr "ป้อนรหัสที่คุณได้รับเพื่อเปลี่ยนรหัสผ่าน" + +#: src/view/com/modals/ChangeHandle.tsx:357 +msgid "Enter the domain you want to use" +msgstr "ใส่โดเมนที่คุณต้องการใช้" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "ใส่อีเมลที่คุณต้องการสร้างบัญชีนี้ เราจะส่ง \"รหัสยืนยันใหม่\" ดังนั้นคุณสามารถสร้างรหัสผ่านใหม่ได้" + +#: src/components/dialogs/BirthDateSettings.tsx:107 +msgid "Enter your birth date" +msgstr "ใส่วันเกิดของคุณ" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 +msgid "Enter your email address" +msgstr "ใส่อีเมลของคุณ" + +#: src/view/com/modals/ChangeEmail.tsx:42 +msgid "Enter your new email above" +msgstr "ใส่อีเมลใหม่ของคุณด้านบน" + +#: src/view/com/modals/ChangeEmail.tsx:112 +msgid "Enter your new email address below." +msgstr "ใส่อีเมลใหม่ของคุณที่นี่" + +#: src/screens/Login/index.tsx:98 +msgid "Enter your username and password" +msgstr "ใส่ชื่อผู้ใช้ของคุณและรหัสผ่าน" + +#: src/view/screens/Settings/ExportCarDialog.tsx:46 +msgid "Error occurred while saving file" +msgstr "เกิดข้อผิดพลาดในขณะที่บันทึกไฟล์" + +#: src/screens/Signup/StepCaptcha/index.tsx:56 +msgid "Error receiving captcha response." +msgstr "เกิดข้อผิดพลาดการตอบสนองของ Captcha" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:121 +msgid "Error:" +msgstr "ข้อผิดพลาด :" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 +msgid "Everybody" +msgstr "ทุกคน" + +#: src/components/WhoCanReply.tsx:67 +msgid "Everybody can reply" +msgstr "คนที่สามารถตอบกลับได้" + +#: src/components/WhoCanReply.tsx:213 +msgid "Everybody can reply to this post." +msgstr "คนที่สามารถตอบกลับได้ในโพสค์นี้" + +#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:78 +msgid "Everyone" +msgstr "ทุกคน" + +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "เมนชั่นหรือตอบกลับที่เกินความจำเป็น" + +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "ข้อความที่เกินความจำเป็น" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 +msgid "Exit fullscreen" +msgstr "ออกจากโหมดเต็มหน้าจอ" + +#: src/view/com/modals/DeleteAccount.tsx:293 +msgid "Exits account deletion process" +msgstr "ออกจากกระบวนการลบบัญชี" + +#: src/view/com/modals/ChangeHandle.tsx:138 +msgid "Exits handle change process" +msgstr "ออกจากกระบวนการเปลี่ยนแฮนเดิล" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "ออกจากกระบวนการครอบตัดรูปภาพ" + +#: src/view/com/lightbox/Lightbox.web.tsx:130 +msgid "Exits image view" +msgstr "ออกจากการดูรูปภาพ" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +msgid "Exits inputting search query" +msgstr "ออกจากการป้อนคำค้นหา" + +#: src/view/com/lightbox/Lightbox.web.tsx:183 +msgid "Expand alt text" +msgstr "ขยายข้อความอธิบายภาพ" + +#: src/view/com/notifications/FeedItem.tsx:266 +msgid "Expand list of users" +msgstr "ขยายรายชื่อผู้ใช้" + +#: src/view/com/composer/ComposerReplyTo.tsx:82 +#: src/view/com/composer/ComposerReplyTo.tsx:85 +msgid "Expand or collapse the full post you are replying to" +msgstr "ขยายหรือลดขนาดโพสต์ทั้งหมดที่คุณตอบกลับ" + +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "ทดลองใช้: เมื่อเปิดใช้งานการตั้งค่านี้ คุณจะได้รับการแจ้งเตือนการตอบกลับและการอ้างอิงจากผู้ใช้ที่คุณติดตามเท่านั้น เราจะเพิ่มการควบคุมเพิ่มเติมที่นี่เมื่อเวลาผ่านไป" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "หมดอายุ" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "หมดอายุ {0}" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +msgid "Explicit or potentially disturbing media." +msgstr "สื่อที่ชัดเจนหรืออาจทำให้รำคาญ" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "ภาพเปลือยชัดเจน" + +#: src/view/screens/Settings/index.tsx:752 +msgid "Export my data" +msgstr "ส่งออกข้อมูลของฉัน" + +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:763 +msgid "Export My Data" +msgstr "ส่งออกข้อมูลของฉัน" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "สื่อภายนอก" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "สื่อภายนอกอาจอนุญาตให้เว็บไซต์รวบรวมข้อมูลเกี่ยวกับคุณและอุปกรณ์ของคุณ ไม่มีข้อมูลใดถูกส่งหรือร้องขอก่อนที่คุณจะกดปุ่ม \"เล่น\"" + +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:645 +msgid "External Media Preferences" +msgstr "การตั้งค่าสื่อภายนอก" + +#: src/view/screens/Settings/index.tsx:636 +msgid "External media settings" +msgstr "การตั้งค่าสื่อภายนอก" + +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 +msgid "Failed to create app password." +msgstr "สร้างรหัสผ่านแอปไม่สำเร็จ" + +#: src/screens/StarterPack/Wizard/index.tsx:229 +#: src/screens/StarterPack/Wizard/index.tsx:237 +msgid "Failed to create starter pack" +msgstr "สร้างชุดเริ่มต้นไม่สำเร็จ" + +#: src/view/com/modals/CreateOrEditList.tsx:186 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "ไม่สามารถสร้างลิสต์ได้ ตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + +#: src/components/dms/MessageMenu.tsx:73 +msgid "Failed to delete message" +msgstr "การลบข้อความล้มเหลว" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Failed to delete post, please try again" +msgstr "การลบโพสต์ล้มเหลว โปรดลองใหม่อีกครั้ง" + +#: src/screens/StarterPack/StarterPackScreen.tsx:686 +msgid "Failed to delete starter pack" +msgstr "การลบตัวเริ่มต้นล้มเหลว" + +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 +msgid "Failed to load feeds preferences" +msgstr "การโหลดฟีตที่ตั้งค่าล้มเหลว" + +#: src/components/dialogs/GifSelect.tsx:224 +msgid "Failed to load GIFs" +msgstr "การโหลด GIF ล้มเหลว" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "การโหลดข้อความเก่าล้มเหลว" + +#: src/screens/Messages/Conversation/MessageListError.tsx:28 +#~ msgid "Failed to load past messages." +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 +#~ msgid "Failed to load recommended feeds" +#~ msgstr "" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 +msgid "Failed to load suggested feeds" +msgstr "การแนะนำฟีตล้มเหลว" + +#: src/view/screens/Search/Explore.tsx:378 +msgid "Failed to load suggested follows" +msgstr "การแนะนำคนที่คุณควรติดตามล้มเหลว" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "การปักหมุดโพสต์ล้มเหลว" + +#: src/view/com/lightbox/Lightbox.tsx:97 +msgid "Failed to save image: {0}" +msgstr "การบันทึกรูปภาพ {0} ล้มเหลว" + +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "บันทึกการตั้งค่าการแจ้งเตือนล้มเหลว โปรดลองอีกครั้ง" + +#: src/components/dms/MessageItem.tsx:233 +msgid "Failed to send" +msgstr "การส่งล้มเหลว" + +#: src/screens/Messages/Conversation/MessageListError.tsx:29 +#~ msgid "Failed to send message(s)." +#~ msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "การยื่นคำอุทธรณ์ล้มเหลว โปรดลองอีกครั้ง" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +msgid "Failed to toggle thread mute, please try again" +msgstr "การเปลี่ยนสถานะด้วยการปิดเธรดล้มเหลว โปรดลองอีกครั้ง" + +#: src/components/FeedCard.tsx:276 +msgid "Failed to update feeds" +msgstr "การอัปเดตฟีตล้มเหลว" + +#: src/screens/Messages/Settings.tsx:35 +msgid "Failed to update settings" +msgstr "การอัปเดตการตั้งค่าล้มเหลว" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "การอัปโหลดวีดีโอล้มเหลว" + +#: src/Navigation.tsx:225 +msgid "Feed" +msgstr "ฟีด" + +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:250 +msgid "Feed by {0}" +msgstr "ฟีดโดย {0}" + +#: src/view/screens/Feeds.tsx:709 +#~ msgid "Feed offline" +#~ msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "สลับฟีต" + +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:338 +msgid "Feedback" +msgstr "ข้อเสนอแนะ" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:172 +#: src/view/screens/Feeds.tsx:445 +#: src/view/screens/Feeds.tsx:551 +#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Search/Search.tsx:535 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:489 +#: src/view/shell/Drawer.tsx:490 +msgid "Feeds" +msgstr "ฟีด" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:58 +#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." +#~ msgstr "" + +#: src/view/screens/SavedFeeds.tsx:207 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "ฟีต คืออัลกอริทึ่มที่ผู้ใชสามารถสามารถเปลี่ยนแปลงโดยใช้ความชำนาญในการเขียนโค้ตได้ หากต้องการข้อมูลเพิ่มเติมสามารถถาม <0/> ได้เลย" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 +#~ msgid "Feeds can be topical as well!" +#~ msgstr "" + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:82 +msgid "Feeds updated!" +msgstr "อัปเดตฟีดแล้ว!" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "File Contents" +msgstr "เนื้อหาของไฟล์" + +#: src/view/screens/Settings/ExportCarDialog.tsx:42 +msgid "File saved successfully!" +msgstr "บันทึกไฟล์เรียบร้อยแล้ว!" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "กรองจากฟีด" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Finalizing" +msgstr "กำลังสรุปผล" + + +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "ค้นหาบัญชีเพื่อคิดตาม" + +#: src/tours/HomeTour.tsx:88 +#~ msgid "Find more feeds and accounts to follow in the Explore page." +#~ msgstr "" + +#: src/view/screens/Search/Search.tsx:607 +msgid "Find posts and users on Bluesky" +msgstr "ค้นหาโพสต์และบัญชีใน Bluesky" + +#: src/view/screens/Search/Search.tsx:589 +#~ msgid "Find users on Bluesky" +#~ msgstr "" + +#: src/view/screens/Search/Search.tsx:587 +#~ msgid "Find users with the search tool on the right" +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 +#~ msgid "Finding similar accounts..." +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:51 +msgid "Fine-tune the content you see on your Following feed." +msgstr "ปรับแต่งเนื้อหาที่ฟีตของคุณให้เหมาะสม" + +#: src/view/screens/PreferencesThreads.tsx:54 +msgid "Fine-tune the discussion threads." +msgstr "ปรับแต่งหัวข้อเธรต" + +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Finish" +msgstr "เสร็จสิ้น" + +#: src/tours/Tooltip.tsx:149 +#~ msgid "Finish tour and begin using the application" +#~ msgstr "เสร็จสิ้นทัวร์และเริ่มใช้งานแอปพลิเคชัน" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "ฟิตเนส" + +#: src/screens/Onboarding/StepFinished.tsx:267 +msgid "Flexible" +msgstr "ยืดหยุ่น" + +#: src/view/com/modals/EditImage.tsx:116 +#~ msgid "Flip horizontal" +#~ msgstr "" + +#: src/view/com/modals/EditImage.tsx:121 +#: src/view/com/modals/EditImage.tsx:288 +#~ msgid "Flip vertically" +#~ msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 +msgid "Follow" +msgstr "ติดตาม" + +#: src/view/com/profile/FollowButton.tsx:70 +msgctxt "action" +msgid "Follow" +msgstr "ติดตาม" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 +msgid "Follow {0}" +msgstr "ติดตาม {0}" + +#: src/view/com/posts/AviFollowButton.tsx:68 +msgid "Follow {name}" +msgstr "ติดตาม {name}" + +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "ติดตาม 7 บัญชี" + +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 +msgid "Follow Account" +msgstr "ติดตามบัญชี" + +#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 +msgid "Follow all" +msgstr "ติดตามทั้งหมด" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#~ msgid "Follow All" +#~ msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "ติดตามคุณกลับ" + +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" +msgid "Follow Back" +msgstr "ติดตามกลับ" + +#: src/view/screens/Search/Explore.tsx:334 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "ติดตามบัญชีเพิ่มเติมเพื่อเชื่อมต่อกับความสนใจและสร้างเครือข่ายของคุณ" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +#~ msgid "Follow selected accounts and continue to the next step" +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 +#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." +#~ msgstr "" + +#: src/components/KnownFollowers.tsx:169 +#~ msgid "Followed by" +#~ msgstr "" + +#: src/view/com/profile/ProfileCard.tsx:190 +#~ msgid "Followed by {0}" +#~ msgstr "" + +#: src/components/KnownFollowers.tsx:231 +msgid "Followed by <0>{0}" +msgstr "ติดตามโดย <0>{0}" + +#: src/components/KnownFollowers.tsx:217 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "ติดตามโดย <0>{0} และ {1, plural, one {# other} other {# others}}" + +#: src/components/KnownFollowers.tsx:204 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "ติดตามโดย <0>{0} และ <1>{1}" + +#: src/components/KnownFollowers.tsx:186 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "ติดตามโดย <0>{0}, <1>{1} และ {2, plural, one {# other} other {# others}}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 +msgid "Followed users" +msgstr "บัญชีที่ติดตาม" + +#: src/view/screens/PreferencesFollowingFeed.tsx:152 +#~ msgid "Followed users only" +#~ msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:207 +msgid "followed you" +msgstr "ติดตามคุณแล้ว" + +#: src/view/com/notifications/FeedItem.tsx:205 +msgid "followed you back" +msgstr "ติดตามคุณกลับแล้ว" + +#: src/view/screens/ProfileFollowers.tsx:29 +#: src/view/screens/ProfileFollowers.tsx:30 +msgid "Followers" +msgstr "ผู้ติดตาม" + +#: src/Navigation.tsx:186 +msgid "Followers of @{0} that you know" +msgstr "ผู้ติดตามของ @{0} ที่คุณรู้จัก" + +#: src/screens/Profile/KnownFollowers.tsx:108 +#: src/screens/Profile/KnownFollowers.tsx:118 +msgid "Followers you know" +msgstr "ผู้ติดตามที่คุณรู้จัก" + + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:216 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:631 +#: src/view/screens/ProfileFollows.tsx:29 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/SavedFeeds.tsx:429 +msgid "Following" +msgstr "ติดตาม" + +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 +msgid "Following {0}" +msgstr "ติดตาม {0}" + +#: src/view/com/posts/AviFollowButton.tsx:50 +msgid "Following {name}" +msgstr "ติดตาม {name}" + +#: src/view/screens/Settings/index.tsx:539 +msgid "Following feed preferences" +msgstr "การตั้งค่าฟีดการติดตาม" + +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:48 +#: src/view/screens/Settings/index.tsx:548 +msgid "Following Feed Preferences" +msgstr "การตั้งค่าฟีดการติดตาม" + +#: src/tours/HomeTour.tsx:59 +#~ msgid "Following shows the latest posts from people you follow." +#~ msgstr "การติดตามจะแสดงโพสต์ล่าสุดจากผู้ที่คุณติดตาม" + +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "ติดตามคุณ" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "ติดตามคุณ" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "แบบอักษร" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "ขนาดแบบอักษร" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 +msgid "Food" +msgstr "อาหาร" + +#: src/view/com/modals/DeleteAccount.tsx:129 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "เพื่อความปลอดภัย เราจำเป็นต้องส่งรหัสยืนยันไปยังที่อยู่อีเมลของคุณ" + + +#: src/view/com/modals/AddAppPasswords.tsx:233 +msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." +msgstr "ถ้าทำแล้ว คุณจะไม่สามารถดูข้อมูลนี้ได้อีก เพื่อความปลอดภัยของคุณ ถ้าคุณลืมรหัสผ่านคุณต้องสร้างใหม่โดยไม่ใช้รหัสเดิม" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "เพื่อประสบการที่ดีของคุณ เราแนะนำให้ใช้ฟอนต์ธีม" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "ตลอด" + +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 +msgid "Forgot Password" +msgstr "ลืมรหัสผ่าน" + +#: src/screens/Login/LoginForm.tsx:230 +msgid "Forgot password?" +msgstr "ลืมรหัสผ่านใช่ไหม?" + +#: src/screens/Login/LoginForm.tsx:241 +msgid "Forgot?" +msgstr "ลืมเหรอ?" + +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "โพสต์เนื้อหาที่ไม่ต้องการบ่อยครั้ง" + +#: src/screens/Hashtag.tsx:116 +msgid "From @{sanitizedAuthor}" +msgstr "จาก @{sanitizedAuthor}" + +#: src/view/com/posts/FeedItem.tsx:273 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "จาก <0/>" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 +msgid "Fullscreen" +msgstr "เต็มหน้าจอ" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "แกลลอรี่" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +msgid "Generate a starter pack" +msgstr "สร้างชุดเริ่มต้น" + +#: src/view/shell/Drawer.tsx:342 +msgid "Get help" +msgstr "รับความช่วยเหลือ" + +#: src/components/dms/MessagesNUX.tsx:168 +#~ msgid "Get started" +#~ msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 +msgid "Get Started" +msgstr "เริ่มต้น" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "เริ่มต้น" + +#: src/components/MediaPreview.tsx:122 +msgid "GIF" +msgstr "GIF" + +#: src/screens/Onboarding/StepProfile/index.tsx:234 +msgid "Give your profile a face" +msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น" + +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "การละเมิดกฎหมายหรือข้อกำหนดในการให้บริการ" + +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:64 +#: src/view/com/auth/LoggedOut.tsx:65 +#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileList.tsx:1020 +#: src/view/shell/desktop/LeftNav.tsx:134 +msgid "Go back" +msgstr "กลับ" + +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:745 +#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileList.tsx:1025 +msgid "Go Back" +msgstr "กลับ" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 +#~ msgid "Go back to previous screen" +#~ msgstr "" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "กลับไปยังก่อนหน้า" + +#: src/screens/StarterPack/Wizard/index.tsx:299 +msgid "Go back to the previous step" +msgstr "กลับไปยังก่อนหน้า" + +#: src/view/screens/NotFound.tsx:55 +msgid "Go home" +msgstr "กลับเข้าสู่หน้าหลัก" + +#: src/view/screens/NotFound.tsx:54 +msgid "Go Home" +msgstr "กลับเข้าสู่หน้าหลัก" + +#: src/view/screens/Search/Search.tsx:827 +#: src/view/shell/desktop/Search.tsx:263 +#~ msgid "Go to @{queryMaybeHandle}" +#~ msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:264 +msgid "Go to conversation with {0}" +msgstr "ไปที่การสนทนา {0}" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Go to next" +msgstr "ถัดไป" + +#: src/components/dms/ConvoMenu.tsx:167 +msgid "Go to profile" +msgstr "ไปที่หน้าโปรไฟล์" + +#: src/tours/Tooltip.tsx:138 +#~ msgid "Go to the next step of the tour" +#~ msgstr "" + +#: src/components/dms/ConvoMenu.tsx:164 +msgid "Go to user's profile" +msgstr "ไปที่หน้าโปรไฟล์ผู้ใช้" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +msgid "Graphic Media" +msgstr "กราฟฟิคมีเดีย" + +#: src/state/shell/progress-guide.tsx:161 +msgid "Half way there!" +msgstr "ครึ่งทางแล้ว!" + +#: src/view/com/modals/ChangeHandle.tsx:253 +msgid "Handle" +msgstr "แฮนด์เดิ้ล" + +#: src/view/screens/AccessibilitySettings.tsx:117 +msgid "Haptics" +msgstr "การสัมผัส" + +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "การล่วงละเมิด การกลั่นแกล้ง หรือการไม่ยอมรับการอยู่ร่วมกันในสังคม" + +#: src/Navigation.tsx:332 +msgid "Hashtag" +msgstr "แฮชแท็ก" + +#: src/components/RichText.tsx:225 +msgid "Hashtag: #{tag}" +msgstr "แฮชแท็ก : #{tag}" + +#: src/screens/Signup/index.tsx:173 +msgid "Having trouble?" +msgstr "มีปัญหาใช่ไหม?" + +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:351 +msgid "Help" +msgstr "การช่วยเหลือ" + +#: src/screens/Onboarding/StepProfile/index.tsx:237 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "ทำให้คนทราบว่าคุณไม่ใช่หุ่นยนต์โดยการอัพโหลตรูปภาพหรือการสร้างอวาตาร์" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 +#~ msgid "Here are some accounts for you to follow" +#~ msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:89 +#~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." +#~ msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:84 +#~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." +#~ msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:204 +msgid "Here is your app password." +msgstr "นี่คือรหัสผ่านของแอปของคุณ" + +#: src/components/ListCard.tsx:130 +msgid "Hidden list" +msgstr "ลิสต์ที่ซ่อนไว้" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:122 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 +msgid "Hide" +msgstr "ซ่อน" + +#: src/view/com/notifications/FeedItem.tsx:477 +msgctxt "action" +msgid "Hide" +msgstr "ซ่อน" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 +#~ msgid "Hide post" +#~ msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +msgid "Hide post for me" +msgstr "ซ่อนโพสต์สำหรับฉัน" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +msgid "Hide reply for everyone" +msgstr "ซ่อนการตอบกลับสำหรับทุกคน" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +msgid "Hide reply for me" +msgstr "ซ่อนการสำหรับฉัน" + +#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/PostHider.tsx:79 +msgid "Hide the content" +msgstr "ซ่อนเนื้อหา" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +msgid "Hide this post?" +msgstr "ซ่อนโพสต์นี้ใช่ไหม?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +msgid "Hide this reply?" +msgstr "ซ่อนการตอบกลับใช่ไหม" + +#: src/view/com/notifications/FeedItem.tsx:468 +msgid "Hide user list" +msgstr "ซ่อนลิสต์ผู้ใช้" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "อืม... ดูเหมือนว่าจะเจอปัญหาเมื่อคุณจะพยายามติดต่อกับเซิร์ฟเวอร์ฟีด โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ฟีดถูกตั้งค่าไม่ถูกต้อง โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ออฟไลน์อยู่ โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "อืม... ดูเหมือนว่าเซิร์ฟเวอร์ฟีดส่งคำตอบไม่ถูก โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "อืม... ดูเหมือนว่าเรามีปัญหาในการค้นหาฟีตนี้ โปรดแจ้งเจ้าของฟีดเกี่ยวกับปัญหานี้ด้วย" + +#: src/screens/Moderation/index.tsx:60 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "อื้มมมม... ดูเหมือนว่าเรามีปัญหาในการโหลดข้อมูลนี้ งั้นดูรายละเอียดด้านล่างนี้เลย หากปัญหาเกิดขึ้นอีกสามารถติดต่อทางเราได้เลย" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "อื้มมมม... ดูเหมือนว่าเราไม่สามารถโหลดเซอร์วิสการตรวจสอบได้" + +#: src/view/com/composer/state/video.ts:427 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "รอสักครู่! เรากำลังเปิดให้เข้าถึงวิดีโออย่างค่อยเป็นค่อยไป และคุณยังอยู่ในคิว แล้วกลับมาอีกครั้งจ้า" + +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:421 +#: src/view/shell/Drawer.tsx:422 +msgid "Home" +msgstr "หน้าหลัก" + +#: src/view/com/modals/ChangeHandle.tsx:407 +msgid "Host:" +msgstr "โฮสต์:" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 +msgid "Hosting provider" +msgstr "ผู้ให้บริการโฮสติ้ง" + +#: src/view/com/modals/InAppBrowserConsent.tsx:41 +msgid "How should we open this link?" +msgstr "แล้วเราจะเปิดลิงก์นี้ได้อย่างไรล่ะ?" + +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 +msgid "I have a code" +msgstr "ฉันมีโค้ด" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "ฉันมีโค้ด" + +#: src/view/com/modals/VerifyEmail.tsx:224 +msgid "I have a confirmation code" +msgstr "ฉันมีรหัสยืนยัน" + +#: src/view/com/modals/ChangeHandle.tsx:271 +msgid "I have my own domain" +msgstr "ฉันมีโดเมนของตัวเอง" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 +msgid "I understand" +msgstr "ฉันเข้าใจแล้ว" + +#: src/view/com/lightbox/Lightbox.web.tsx:185 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "หากข้อความแทนภาพยาว จะทำการเปลี่ยนสถานะการขยายข้อความแทนภาพ" + +#: src/view/com/modals/SelfLabel.tsx:128 +msgid "If none are selected, suitable for all ages." +msgstr "หากไม่มีการเลือกอะไรเลย ข้อมูลที่แสดงเหมาะสมกับทุกวัย" + +#: src/screens/Signup/StepInfo/Policies.tsx:110 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "หากคุณยังไม่บรรลุนิติภาวะตามกฎหมายของประเทศคุณ ควรให้ผู้ปกครองหรือผู้ดูแลตามกฎหมายรับทราบแทน" + +#: src/view/screens/ProfileList.tsx:714 +msgid "If you delete this list, you won't be able to recover it." +msgstr "หากคุณลบลิสต์นี้ คุณจะไม่สามารถนำกลับคืนมาได้" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +msgid "If you remove this post, you won't be able to recover it." +msgstr "หากคุณลบโพสค์นี้ คุณจะไม่สามารถนำกลับคืนมาได้" + +#: src/view/com/modals/ChangePassword.tsx:149 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "หากคุณต้องการเปลี่ยนรหัสผ่าน เราจะส่งรหัสยืนยันเพื่อยืนยันบัญชีของคุณ" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "หากคุณพยายามเปลี่ยนแฮนด์เดิ้ลของคุณ ให้ทำการเปลี่ยนก่อนที่คุณจะหยุดใช้งานบัญชีนี้" + +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "ผิดกฏหมายและเร่งด่วน" + +#: src/view/com/util/images/Gallery.tsx:57 +msgid "Image" +msgstr "รูปภาพ" + +#: src/view/com/modals/AltImage.tsx:122 +#~ msgid "Image alt text" +#~ msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Image saved to your camera roll!" +msgstr "ภาพถูกบันทึกไปที่คลังของคุณแล้ว!" + +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "การแอบอ้างหรือการกล่าวอ้างที่ผิดเกี่ยวกับตัวตนหรือความสัมพันธ์" + +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "การแอบอ้าง, ข้อมูลที่ผิดพลาด, หรือการกล่าวอ้างที่ผิด" + +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "ข้อความที่ไม่เหมาะสมหรือการเชื่อมโยงที่ชัดเจน" + +#: src/screens/Login/SetNewPasswordForm.tsx:121 +msgid "Input code sent to your email for password reset" +msgstr "กรอกรหัสที่ส่งไปยังอีเมลของคุณเพื่อรีเซ็ตรหัสผ่าน" + +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Input confirmation code for account deletion" +msgstr "กรอกรหัสยืนยันสำหรับการลบบัญชี" + +#: src/view/com/modals/AddAppPasswords.tsx:175 +msgid "Input name for app password" +msgstr "กรอกชื่อสำหรับรหัสผ่านแอป" + +#: src/screens/Login/SetNewPasswordForm.tsx:145 +msgid "Input new password" +msgstr "กรอกรหัสผ่านใหม่" + +#: src/view/com/modals/DeleteAccount.tsx:265 +msgid "Input password for account deletion" +msgstr "กรอกรหัสผ่านสำหรับการลบบัญชี" + +#: src/screens/Login/LoginForm.tsx:270 +msgid "Input the code which has been emailed to you" +msgstr "กรอกรหัสที่ถูกส่งไปยังอีเมลของคุณ" + +#: src/screens/Login/LoginForm.tsx:221 +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Input the username or email address you used at signup" +msgstr "กรอกชื่อผู้ใช้หรือที่อยู่อีเมลที่คุณใช้ในการลงทะเบียน" + +#: src/screens/Login/LoginForm.tsx:225 +msgid "Input your password" +msgstr "ป้อนรหัสผ่านของคุณ" + +#: src/view/com/modals/ChangeHandle.tsx:376 +msgid "Input your preferred hosting provider" +msgstr "กรอกผู้ให้บริการโฮสติ้งที่คุณต้องการ" + +#: src/screens/Signup/StepHandle.tsx:114 +msgid "Input your user handle" +msgstr "กรอกชื่อผู้ใช้ของคุณ" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:52 +msgid "Interaction limited" +msgstr "การโต้ตอบถูกจำกัด" + +#: src/components/dms/MessagesNUX.tsx:82 +#~ msgid "Introducing Direct Messages" +#~ msgstr "แนะนำการส่งข้อความโดยตรง" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "แนะนำการตั้งค่าฟอนต์ใหม่" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "รหัสยืนยัน 2FA ไม่ถูกต้อง" + +#: src/view/com/post-thread/PostThreadItem.tsx:264 +msgid "Invalid or unsupported post record" +msgstr "ระเบียนโพสต์ไม่ถูกต้องหรือไม่รองรับ" + +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 +msgid "Invalid username or password" +msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "รหัสยืนยันนี้ไม่ถูกต้อง" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "เชิญเพื่อน" + +#: src/screens/Signup/StepInfo/index.tsx:151 +msgid "Invite code" +msgstr "โค้ดคำเชิญ" + +#: src/screens/Signup/state.ts:258 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "โค้ดคำเชิญไม่ถูกต้อง โปรดตรวจสอบว่าคุณกรอกถูกต้องหรือยัง แล้วลองอีกครั้ง" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "โค้ดคำเชิญ : ใช้ได้ {0}" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "โค้ดคำเชิญ : ใช้ได้ 1" + +#: src/components/StarterPack/ShareDialog.tsx:97 +msgid "Invite people to this starter pack!" +msgstr "เชิญผู้คนมาชุดเริ่มต้นนี้" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:35 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "เชิญเพื่อนของคุณเพื่อติดตามฟีตและผู้คนที่คุณชื่นชอบ" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:32 +msgid "Invites, but personal" +msgstr "ยืนยันแต่เป็นส่วนตัว" + +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "ดูเหมือนว่าอีเมลคุณจะกรอกไม่ถูกนะ คุณแน่ใจแล้วเหรอ?" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:65 +#~ msgid "It shows posts from the people you follow as they happen." +#~ msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "ถูกต้อง" + +#: src/screens/StarterPack/Wizard/index.tsx:452 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "ตอนนี้มีแค่คุณแล้ว! เพิ่มผู้คนในชุดเริ่มต้นของคุณโดยการค้นหาด้านบนนี้" + +#: src/view/com/composer/Composer.tsx:1120 +msgid "Job ID: {0}" +msgstr "Job ID: {0}" + +#: src/view/com/auth/SplashScreen.web.tsx:177 +msgid "Jobs" +msgstr "งาน" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackScreen.tsx:454 +msgid "Join Bluesky" +msgstr "เข้าร่วม Bluesky" + +#: src/components/StarterPack/QrCode.tsx:61 +msgid "Join the conversation" +msgstr "เข้าร่วมการสนทนา" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:492 +#~ msgid "Joined {0}" +#~ msgstr "" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 +msgid "Journalism" +msgstr "วารสาร" + +#: src/components/moderation/LabelsOnMe.tsx:59 +#~ msgid "label has been placed on this {labelTarget}" +#~ msgstr "" + +#: src/components/moderation/ContentHider.tsx:147 +msgid "Labeled by {0}." +msgstr "มาร์คโดย {0}" + +#: src/components/moderation/ContentHider.tsx:145 +msgid "Labeled by the author." +msgstr "มาร์คโดยผู้สร้าง" + +#: src/view/screens/Profile.tsx:217 +msgid "Labels" +msgstr "มาร์คไว้" + +#: src/screens/Profile/Sections/Labels.tsx:163 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "การมาร์ค คือ การแสดงข้อความประกอบบนผู้ใช้และเนื้อหา สามารถใช้ในการซ่อน เตือน หรือจัดหมวดหมู่ในเครือข่ายได้" + +#: src/components/moderation/LabelsOnMe.tsx:61 +#~ msgid "labels have been placed on this {labelTarget}" +#~ msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:71 +msgid "Labels on your account" +msgstr "มาร์คในบัญชีของคุณ" + +#: src/components/moderation/LabelsOnMeDialog.tsx:73 +msgid "Labels on your content" +msgstr "มาร์คในเนื้อหาของคุณ" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:105 +msgid "Language selection" +msgstr "เลือกภาษา" + +#: src/view/screens/Settings/index.tsx:496 +msgid "Language settings" +msgstr "ตั้งค่าภาษา" + +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:86 +msgid "Language Settings" +msgstr "ตั้งค่าภาษา" + +#: src/view/screens/Settings/index.tsx:505 +msgid "Languages" +msgstr "ภาษา" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "ใหญ่" + +#: src/screens/Hashtag.tsx:97 +#: src/view/screens/Search/Search.tsx:519 +msgid "Latest" +msgstr "ล่าสุด" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "เรียนรู้เพิ่มเติม" + +#: src/view/com/auth/SplashScreen.web.tsx:165 +msgid "Learn more about Bluesky" +msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับ Bluesky" + +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการโฮสต์ข้อมูลด้วยตัวเอง (PDS)" + +#: src/components/moderation/ContentHider.tsx:66 +#: src/components/moderation/ContentHider.tsx:131 +msgid "Learn more about the moderation applied to this content." +msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการตรวจสอบที่ใช้กับเนื้อหานี้" + +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง" + +#: src/screens/Moderation/index.tsx:584 +#: src/screens/Moderation/index.tsx:586 +msgid "Learn more about what is public on Bluesky." +msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับสิ่งที่เป็นสาธารณะบน Bluesky" + +#: src/components/moderation/ContentHider.tsx:155 +#: src/view/com/auth/server-input/index.tsx:158 +msgid "Learn more." +msgstr "เรียนรู้เพิ่มเติม" + +#: src/components/dms/LeaveConvoPrompt.tsx:50 +msgid "Leave" +msgstr "ออก" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 +msgid "Leave chat" +msgstr "ออกจากแชท" + +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Leave conversation" +msgstr "ออกจากการสนทนา" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 +msgid "Leave them all unchecked to see any language." +msgstr "ออกจากการตรวจสอบตัวเลือกเพื่อดูทุกภาษาได้" + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Leaving Bluesky" +msgstr "ออก Bluesky" + +#: src/screens/SignupQueued.tsx:134 +msgid "left to go." +msgstr "ปล่อยไปเถอะ" + +#: src/view/screens/Settings/index.tsx:310 +#~ msgid "Legacy storage cleared, you need to restart the app now." +#~ msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 +msgid "Let me choose" +msgstr "ให้ฉันเลือกเถอะ" + +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 +msgid "Let's get your password reset!" +msgstr "ให้รหัสผ่านของคุณถูกรีเซ็ต" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Let's go!" +msgstr "ไปกันเล้ยยยยย!" + +#: src/screens/Settings/AppearanceSettings.tsx:105 +msgid "Light" +msgstr "แสง" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Like" +#~ msgstr "" + +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "ชอบ 10 โพสต์" + +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 +msgid "Like 10 posts to train the Discover feed" +msgstr "ชอบ 10 โพสต์" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:262 +#: src/view/screens/ProfileFeed.tsx:569 +msgid "Like this feed" +msgstr "ชอบฟีตนี้" + +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 +msgid "Liked by" +msgstr "ชอบโดย" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:28 +msgid "Liked By" +msgstr "ชอบโดย" + +#: src/view/com/feeds/FeedSourceCard.tsx:268 +msgid "Liked by {0} {1}" +msgstr "ชอบโดย {0} {1}" + +#: src/components/LabelingServiceCard/index.tsx:72 +msgid "Liked by {count} {0}" +msgstr "ชอบโดย {count} {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 +#: src/view/screens/ProfileFeed.tsx:600 +msgid "Liked by {likeCount} {0}" +msgstr "ชอบโดย {likeCount} {0}" + +#: src/view/com/notifications/FeedItem.tsx:211 +msgid "liked your custom feed" +msgstr "ชอบฟีตที่คุณกำหนดเอง" + +#: src/view/com/notifications/FeedItem.tsx:178 +msgid "liked your post" +msgstr "ได้ถูกใจโพสต์ของคุณ" + +#: src/view/screens/Profile.tsx:222 +msgid "Likes" +msgstr "ถูกใจ" + +#: src/view/com/post-thread/PostThreadItem.tsx:204 +msgid "Likes on this post" +msgstr "ชอบในโพสต์นี้" + +#: src/Navigation.tsx:192 +msgid "List" +msgstr "ลิสต์" + +#: src/view/com/modals/CreateOrEditList.tsx:241 +msgid "List Avatar" +msgstr "อวาตาร์ลิสต์" + +#: src/view/screens/ProfileList.tsx:413 +msgid "List blocked" +msgstr "ลิสต์ถูกบล็อก" + +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:252 +msgid "List by {0}" +msgstr "ลิสต์โดย {0}" + +#: src/view/screens/ProfileList.tsx:450 +msgid "List deleted" +msgstr "ลิสต์ถูกลบ" + +#: src/screens/List/ListHiddenScreen.tsx:126 +msgid "List has been hidden" +msgstr "ลิสต์ถูกซ่อน" + +#: src/view/screens/ProfileList.tsx:161 +msgid "List Hidden" +msgstr "ลิสต์ถูกซ่อน" + +#: src/view/screens/ProfileList.tsx:387 +msgid "List muted" +msgstr "ลิสต์ถูกปิดเสียง" + +#: src/view/com/modals/CreateOrEditList.tsx:255 +msgid "List Name" +msgstr "ชื่อลิสต์" + +#: src/view/screens/ProfileList.tsx:426 +msgid "List unblocked" +msgstr "ลิสต์ถูกปลดบล็อก" + +#: src/view/screens/ProfileList.tsx:400 +msgid "List unmuted" +msgstr "ลิสต์เปิดเสียง" + +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:225 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:505 +#: src/view/shell/Drawer.tsx:506 +msgid "Lists" +msgstr "ลิสต์" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "" + +#: src/view/screens/Search/Explore.tsx:131 +msgid "Load more" +msgstr "โหลดเพิ่มเติม" + +#: src/view/screens/Search/Explore.tsx:219 +msgid "Load more suggested feeds" +msgstr "โหลดฟีดที่แนะนำเพิ่มเติม" + +#: src/view/screens/Search/Explore.tsx:217 +msgid "Load more suggested follows" +msgstr "โหลดการติดตามที่แนะนำเพิ่มเติม" + +#: src/view/screens/Notifications.tsx:216 +msgid "Load new notifications" +msgstr "โหลดการแจ้งเตือนใหม่" + +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:492 +#: src/view/screens/ProfileList.tsx:799 +msgid "Load new posts" +msgstr "โหลดโพสต์ใหม่" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +msgid "Loading..." +msgstr "กำลังโหลด..." + +#: src/Navigation.tsx:255 +msgid "Log" +msgstr "บันทึก" + +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 +msgid "Log in or sign up" +msgstr "เข้าสู่ระบบหรือสมัครสมาชิก" + +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 +msgid "Log out" +msgstr "ออกจากระบบ" + +#: src/screens/Moderation/index.tsx:477 +msgid "Logged-out visibility" +msgstr "การมองเห็นเมื่อออกจากระบบ" + +#: src/components/AccountList.tsx:58 +msgid "Login to account that is not listed" +msgstr "เข้าสู่ระบบด้วยบัญชีที่ไม่อยู่ในลิสต์" + +#: src/components/RichText.tsx:226 +msgid "Long press to open tag menu for #{tag}" +msgstr "กดค้างเพื่อเปิดเมนูแท็กสำหรับ #{tag}" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "รูปแบบ XXXXX-XXXXX" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "ดูเหมือนว่าคุณยังไม่ได้บันทึกฟีดใดๆ! ใช้การแนะนำของเราหรือดูเพิ่มเติมด้านล่าง" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "ดูเหมือนว่าคุณได้ยกเลิกการปักหมุดฟีดทั้งหมดแล้ว แต่ไม่ต้องกังวล คุณสามารถเพิ่มได้ด้านล่าง 😄" + +#: src/screens/Feeds/NoFollowingFeed.tsx:38 +#~ msgid "Looks like you're missing a following feed." +#~ msgstr "ดูเหมือนว่าคุณยังไม่มีฟีดที่กำลังติดตาม" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "ดูเหมือนว่าคุณจะพลาดฟีตที่คุณติดตาม <0> คลิกที่นี่เพื่อเพิ่ม " + +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 +msgid "Make one for me" +msgstr "สร้างสักหนึ่งอันสำหรับฉัน" + +#: src/view/com/modals/LinkWarning.tsx:79 +msgid "Make sure this is where you intend to go!" +msgstr "โปรดตรวจสอบให้แน่ใจว่านี่คือจุดหมายที่คุณต้องการไป" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 +msgid "Mark as read" +msgstr "ทำเครื่องหมายว่าอ่านแล้ว" + +#: src/view/screens/AccessibilitySettings.tsx:103 +#: src/view/screens/Profile.tsx:221 +msgid "Media" +msgstr "สื่อ" + +#: src/components/WhoCanReply.tsx:254 +msgid "mentioned users" +msgstr "ผู้ใช้ที่ถูกกล่าวถึง" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +msgid "Mentioned users" +msgstr "ผู้ใช้ที่ถูกกล่าวถึง" + +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:876 +msgid "Menu" +msgstr "เมนู" + +#: src/components/dms/MessageProfileButton.tsx:62 +msgid "Message {0}" +msgstr "ส่งข้อความถึง {0}" + +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 +msgid "Message deleted" +msgstr "ข้อความถูกลบ" + +#: src/view/com/posts/FeedErrorMessage.tsx:201 +msgid "Message from server: {0}" +msgstr "ข้อความจากเซิร์ฟเวอร์: {0}" + +#: src/screens/Messages/components/MessageInput.tsx:140 +msgid "Message input field" +msgstr "ช่องกรอกข้อความ" + +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 +msgid "Message is too long" +msgstr "ข้อความยาวเกินไป" + +#: src/screens/Messages/ChatList.tsx:317 +msgid "Message settings" +msgstr "การตั้งค่าข้อความ" + +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:161 +#: src/screens/Messages/ChatList.tsx:242 +#: src/screens/Messages/ChatList.tsx:313 +msgid "Messages" +msgstr "ข้อความ" + +#: src/Navigation.tsx:307 +#~ msgid "Messaging settings" +#~ msgstr "" + +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "บัญชีที่ทำให้เข้าใจผิด" + +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "โพสต์ที่ทำให้เข้าใจผิด" + +#: src/screens/Settings/AppearanceSettings.tsx:78 +#~ msgid "Mode" +#~ msgstr "" + +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:105 +#: src/view/screens/Settings/index.tsx:527 +msgid "Moderation" +msgstr "การกรอง" + +#: src/components/moderation/ModerationDetailsDialog.tsx:133 +msgid "Moderation details" +msgstr "รายละเอียดการกรอง" + +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "กรองโดย {0}" + +#: src/view/screens/ProfileList.tsx:893 +msgid "Moderation list by <0/>" +msgstr "กรองโดย {0}" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:891 +msgid "Moderation list by you" +msgstr "กรองโดยคุณ" + +#: src/view/com/modals/CreateOrEditList.tsx:177 +msgid "Moderation list created" +msgstr "การกรองได้ถูกสร้างขึ้น" + +#: src/view/com/modals/CreateOrEditList.tsx:163 +msgid "Moderation list updated" +msgstr "การกรองถูกอัพเดต" + +#: src/screens/Moderation/index.tsx:247 +msgid "Moderation lists" +msgstr "ลิสต์ที่กรอง" + +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:59 +msgid "Moderation Lists" +msgstr "ลิสต์ที่กรอง" + +#: src/components/moderation/LabelPreference.tsx:246 +msgid "moderation settings" +msgstr "การตั้งค่าการกรอง" + +#: src/view/screens/Settings/index.tsx:521 +msgid "Moderation settings" +msgstr "การตั้งค่าการกรอง" + +#: src/Navigation.tsx:245 +msgid "Moderation states" +msgstr "สถานะการกรอง" + +#: src/screens/Moderation/index.tsx:216 +msgid "Moderation tools" +msgstr "เครื่องมือการกรอง" + +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "ผู้ดูแลระบบเลือกที่จะตั้งคำเตือนทั่วไปบนเนื้อหา" + +#: src/view/com/post-thread/PostThreadItem.tsx:619 +msgid "More" +msgstr "เพิ่มเติม" + +#: src/view/shell/desktop/Feeds.tsx:55 +msgid "More feeds" +msgstr "ฟีตเพิ่มเติม" + +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:703 +msgid "More options" +msgstr "การตั้งค่าเพิ่มเติม" + +#: src/view/screens/PreferencesThreads.tsx:76 +msgid "Most-liked replies first" +msgstr "แสดงการตอบกลับที่ชอบมากที่สุดก่อน" + +#: src/screens/Onboarding/state.ts:92 +msgid "Movies" +msgstr "วีดีโอ" + +#: src/screens/Onboarding/state.ts:93 +msgid "Music" +msgstr "เพลง" + +#: src/components/TagMenu/index.tsx:262 +msgid "Mute" +msgstr "ปิดการมองเห็น" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "ปิดการมองเห็น" + +#: src/components/TagMenu/index.web.tsx:116 +msgid "Mute {truncatedTag}" +msgstr "ปิดการมองเห็น {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Mute Account" +msgstr "ปิดการมองเห็นการฟีดโพสต์และเรื่องราว" + +#: src/view/screens/ProfileList.tsx:622 +msgid "Mute accounts" +msgstr "ปิดการมองเห็นการฟีดโพสต์และเรื่องราวของบัญชีต่าง ๆ" + +#: src/components/TagMenu/index.tsx:219 +msgid "Mute all {displayTag} posts" +msgstr "ปิดการมองเห็นโพสต์ {displayTag} ทั้งหมด" + +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 +msgid "Mute conversation" +msgstr "ปิดการมองเห็นการสนทนา" + +#: src/components/dialogs/MutedWords.tsx:148 +#~ msgid "Mute in tags only" +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:133 +#~ msgid "Mute in text & tags" +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "ปิดการมองเห็นคำ" + +#: src/view/screens/ProfileList.tsx:728 +msgid "Mute list" +msgstr "รายชื่อที่ปิดการมองเห็น" + +#: src/components/dms/ConvoMenu.tsx:136 +#: src/components/dms/ConvoMenu.tsx:142 +#~ msgid "Mute notifications" +#~ msgstr "" + +#: src/view/screens/ProfileList.tsx:723 +msgid "Mute these accounts?" +msgstr "ต้องการปิดการมองเห็นบัญชีนี้หรือไม่?" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "ปิดการมองเห็นคำนี้เป็นเวลา 24 ชั่วโมง" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "ปิดการมองเห็นคำนี้เป็นเวลา 30 วัน" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "ปิดการมองเห็นคำนี้เป็นเวลา 7 วัน" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "ปิดการมองเห็นคำนี้ในข้อความและแท็ก" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "ปิดการมองเห็นคำนี้ในแท็กเท่านั้น" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "ปิดการมองเห็นคำนี้จนกว่าคุณจะปลด" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +msgid "Mute thread" +msgstr "ปิดการมองเห็นเธรต" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +msgid "Mute words & tags" +msgstr "ปิดการมองเห็นคำและแท็ก" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#~ msgid "Muted" +#~ msgstr "" + +#: src/screens/Moderation/index.tsx:262 +msgid "Muted accounts" +msgstr "ปิดการมองเห็นบัญชี" + +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:106 +msgid "Muted Accounts" +msgstr "ปิดการมองเห็นบัญชี" + +#: src/view/screens/ModerationMutedAccounts.tsx:114 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "บัญชีที่ถูกปิดการมองเห็น จะถูกลบโพสต์ออกจากฟีดและการแจ้งเตือนของคุณ และการปิดนี้จะเป็นส่วนตัว" + +#: src/lib/moderation/useModerationCauseDescription.ts:90 +msgid "Muted by \"{0}\"" +msgstr "ปิดการมองเห็นโดย \"{0}\"" + +#: src/screens/Moderation/index.tsx:232 +msgid "Muted words & tags" +msgstr "ปิดการมองเห็นคำและแท็ก" + +#: src/view/screens/ProfileList.tsx:725 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "การปิดเสียงเป็นเรื่องส่วนตัว บัญชีที่ถูกปิดเสียงสามารถโต้ตอบกับคุณได้ แต่คุณจะไม่เห็นโพสต์หรือได้รับการแจ้งเตือนจากเขา" + +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 +msgid "My Birthday" +msgstr "วันเกิดของฉัน" + +#: src/view/screens/Feeds.tsx:731 +msgid "My Feeds" +msgstr "ฟีตของฉัน" + +#: src/view/shell/desktop/LeftNav.tsx:85 +msgid "My Profile" +msgstr "โปรไฟล์ของฉัน" + +#: src/view/screens/Settings/index.tsx:582 +msgid "My saved feeds" +msgstr "ฟีตของฉันที่บันทึกไว้" + +#: src/view/screens/Settings/index.tsx:588 +msgid "My Saved Feeds" +msgstr "ฟีตของฉันที่บันทึกไว้" + +#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/CreateOrEditList.tsx:270 +msgid "Name" +msgstr "ชื่อ" + +#: src/view/com/modals/CreateOrEditList.tsx:135 +msgid "Name is required" +msgstr "ต้องมีชื่อ" + +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "ชื่อหรือคำอธิบายได้ละเมิดมาตรฐานชุมชน" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 +msgid "Nature" +msgstr "Nature" + +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "สำรวจ {0}" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +msgid "Navigate to starter pack" +msgstr "สำรวจชุดเริ่มต้น" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Navigates to the next screen" +msgstr "ไปยังหน้าถัดไป" + +#: src/view/shell/Drawer.tsx:78 +msgid "Navigates to your profile" +msgstr "สำรวจโปรไฟล์ของคุฯ" + +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "ต้องการเปลี่ยนไหม?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:130 +msgid "Need to report a copyright violation?" +msgstr "ต้องการรายงานการละเมิดด้านลิขสิทธิ์ใช้ไหม?" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:74 +#~ msgid "Never lose access to your followers and data." +#~ msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:255 +msgid "Never lose access to your followers or data." +msgstr "ไม่สูญเสียการเข้าถึงผู้ติดตามหรือข้อมูลของคุณ" + +#: src/view/com/modals/ChangeHandle.tsx:508 +msgid "Nevermind, create a handle for me" +msgstr "ไม่ต้องห่วง สร้างแฮนเดิ้ลสำหรับฉันได้เลย" + +#: src/view/screens/Lists.tsx:83 +msgctxt "action" +msgid "New" +msgstr "ใหม่" + +#: src/view/screens/ModerationModlists.tsx:79 +msgid "New" +msgstr "ใหม่" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/screens/Messages/ChatList.tsx:327 +#: src/screens/Messages/ChatList.tsx:334 +msgid "New chat" +msgstr "แชทใหม่" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "ตั้งค่าฟ้อนต์ใหม่ ✨" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "ข้อความใหม่" + +#: src/view/com/modals/CreateOrEditList.tsx:232 +msgid "New Moderation List" +msgstr "ตัวกรองใหม่" + +#: src/view/com/modals/ChangePassword.tsx:213 +msgid "New password" +msgstr "รหัสผ่านใหม่" + +#: src/view/com/modals/ChangePassword.tsx:218 +msgid "New Password" +msgstr "รหัสผ่านใหม่" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgctxt "action" +msgid "New post" +msgstr "โพสต์ใหม่" + +#: src/view/screens/Feeds.tsx:581 +#: src/view/screens/Notifications.tsx:225 +#: src/view/screens/Profile.tsx:487 +#: src/view/screens/ProfileFeed.tsx:426 +#: src/view/screens/ProfileList.tsx:239 +#: src/view/screens/ProfileList.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:303 +msgid "New post" +msgstr "โพสต์ใหม่" + +#: src/view/shell/desktop/LeftNav.tsx:311 +msgctxt "action" +msgid "New Post" +msgstr "โพสต์ใหม่" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "กล่องข้อความข้อมูลบัญชีใหม่" + +#: src/view/com/modals/CreateOrEditList.tsx:227 +msgid "New User List" +msgstr "ลิสต์บัญชีใหม่" + +#: src/view/screens/PreferencesThreads.tsx:73 +msgid "Newest replies first" +msgstr "เห็นการตอบกลับที่ใหม่ก่อน" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 +msgid "News" +msgstr "ข่าวสาร" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:183 +#: src/screens/StarterPack/Wizard/index.tsx:187 +#: src/screens/StarterPack/Wizard/index.tsx:358 +#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 +msgid "Next" +msgstr "ถัดไป" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +#~ msgctxt "action" +#~ msgid "Next" +#~ msgstr "" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "ภาพถัดไป" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:96 +#: src/view/screens/PreferencesFollowingFeed.tsx:131 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 +msgid "No" +msgstr "ไม่" + +#: src/view/screens/ProfileFeed.tsx:558 +#: src/view/screens/ProfileList.tsx:873 +msgid "No description" +msgstr "ไม่มีคำอธิบาย" + +#: src/view/com/modals/ChangeHandle.tsx:392 +msgid "No DNS Panel" +msgstr "ไม่มีระบบชื่อโดเมน" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "ไม่พบ GIF ที่แนะนำ อาจมีปัญหากับ Tenor" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 +msgid "No feeds found. Try searching for something else." +msgstr "ไม่พบฟีต ลองค้นหาอย่างอื่นใหม่ดู" + +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "ยังไม่มีสิ่งที่ชอบ" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:111 +msgid "No longer following {0}" +msgstr "ไม่ติดตาม {0} อีกต่อไป" + +#: src/screens/Signup/StepHandle.tsx:169 +msgid "No longer than 253 characters" +msgstr "ไม่เกิน 253 ตัวอักษร" + +#: src/screens/Messages/components/ChatListItem.tsx:116 +msgid "No messages yet" +msgstr "ยังไม่มีข้อความ" + +#: src/screens/Messages/ChatList.tsx:270 +msgid "No more conversations to show" +msgstr "ไม่มีการสนทนาเพิ่มเติมให้แสดง" + +#: src/view/com/notifications/Feed.tsx:121 +msgid "No notifications yet!" +msgstr "ยังไม่มีการแจ้งเตือน!" + +#: src/screens/Messages/Settings.tsx:93 +#: src/screens/Messages/Settings.tsx:96 +msgid "No one" +msgstr "ไม่มีใคร" + +#: src/components/WhoCanReply.tsx:237 +msgid "No one but the author can quote this post." +msgstr "ไม่มีใครนอกจากผู้เขียนที่สามารถอ้างอิงโพสต์นี้ได้" + + +#: src/screens/Profile/Sections/Feed.tsx:65 +msgid "No posts yet." +msgstr "ยังไม่มีโพสต์" + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "ยังไม่มีโควท" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "ยังไม่มียอดรีโพสต์" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 +msgid "No result" +msgstr "ไม่มีผลลัพธ์" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 +msgid "No results" +msgstr "ไม่มีผลลัพธ์" + +#: src/components/Lists.tsx:215 +msgid "No results found" +msgstr "ไม่พบผลลัพธ์" + +#: src/view/screens/Feeds.tsx:512 +msgid "No results found for \"{query}\"" +msgstr "ไม่พบผลลัพธ์สำหรับ \"{query}\"" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:238 +#: src/view/screens/Search/Search.tsx:277 +#: src/view/screens/Search/Search.tsx:323 +msgid "No results found for {query}" +msgstr "ไม่พบผลลัพธ์สำหรับ {query}" + +#: src/components/dialogs/GifSelect.tsx:228 +msgid "No search results found for \"{search}\"." +msgstr "ไม่พบผลลัพธ์สำหรับ \"{search}\"" + +#: src/components/dms/NewChat.tsx:240 +#~ msgid "No search results found for \"{searchText}\"." +#~ msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "ไม่เป็นไร ขอบคุณ" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 +msgid "Nobody" +msgstr "ไม่มีใคร" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 +#~ msgid "Nobody can reply" +#~ msgstr "" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "ยังไม่มีใครคนไลค์โพสต์นี้ คุณอาจได้เป็นคนแรก" + +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "ยังไม่มีใครคนโควท์โพสต์นี้ คุณอาจได้เป็นคนแรก" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "ยังไม่มีใครคนรีโพสต์โพสต์นี้ คุณอาจได้เป็นคนแรก" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 +msgid "Nobody was found. Try searching for someone else." +msgstr "ไม่พบใครเลย ลองคนหาคนอื่นสิ" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "การเปลือยกายที่ไม่เกี่ยวข้องกับเพศ" + +#: src/view/com/modals/SelfLabel.tsx:135 +#~ msgid "Not Applicable." +#~ msgstr "" + +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:119 +msgid "Not Found" +msgstr "ไม่พบ" + +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 +msgid "Not right now" +msgstr "ไม่ใช่ตอนนี้" + +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +msgid "Note about sharing" +msgstr "โน้ตเกี่ยวกับการแชร์" + +#: src/screens/Moderation/index.tsx:575 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "หมายเหตุ : Bluesky เป็นเครือข่ายแบบเปิดและสาธารณะ การตั้งค่านี้จำกัดเพียงการมองเห็นเนื้อหาของคุณในแอปและเว็บไซต์ของ Bluesky เท่านั้น และแอปอื่นอาจไม่เคารพการตั้งค่านี้ เนื้อหาของคุณอาจยังถูกแสดงให้ผู้ใช้ที่ไม่ได้เข้าสู่ระบบโดยแอปและเว็บไซต์อื่นๆ" + +#: src/screens/Messages/ChatList.tsx:212 +msgid "Nothing here" +msgstr "ไม่มีอะไรที่นี่" + +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "ตัวกรองการแจ้งเตือน" + +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:116 +msgid "Notification settings" +msgstr "การตั้งค่าการแจ้งเตือน" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "การตั้งค่าการแจ้งเตือน" + +#: src/screens/Messages/Settings.tsx:124 +msgid "Notification sounds" +msgstr "เสียงการแจ้งเตือน" + + +#: src/screens/Messages/Settings.tsx:121 +msgid "Notification Sounds" +msgstr "เสียงการแจ้งเตือน" + +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:142 +#: src/view/screens/Notifications.tsx:152 +#: src/view/screens/Notifications.tsx:200 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:453 +#: src/view/shell/Drawer.tsx:454 +msgid "Notifications" +msgstr "การแจ้งเตือน" + +#: src/lib/hooks/useTimeAgo.ts:122 +msgid "now" +msgstr "ตอนนี้" + +#: src/components/dms/MessageItem.tsx:197 +msgid "Now" +msgstr "ตอนนี้" + +#: src/view/com/modals/SelfLabel.tsx:104 +msgid "Nudity" +msgstr "การโป๊เปลือย" + +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "การโป๊เปลือยหรือเนื้อหาผู้ใหญ่ที่ไม่ระบุไว้" + +#: src/screens/Signup/index.tsx:145 +#~ msgid "of" +#~ msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +msgid "Off" +msgstr "ปิด" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:55 +msgid "Oh no!" +msgstr "ไม่น้าาา!" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "ไม่น้าา~! เกิดข้อผิดพลาดขึ้น" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:334 +msgid "OK" +msgstr "ตกลง" + +#: src/screens/Login/PasswordUpdatedForm.tsx:38 +msgid "Okay" +msgstr "ตกลง" + +#: src/view/screens/PreferencesThreads.tsx:72 +msgid "Oldest replies first" +msgstr "การตอบกลับเก่าก่อน" + +#: src/components/StarterPack/QrCode.tsx:69 +#~ msgid "on" +#~ msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:81 +#~ msgid "on {str}" +#~ msgstr "" + +#: src/components/StarterPack/QrCode.tsx:75 +msgid "on<0><1/><2><3/>" +msgstr "เปิด<0><1/><2><3/>" + +#: src/view/screens/Settings/index.tsx:226 +msgid "Onboarding reset" +msgstr "รีเซ็ตออนบอร์ด" + +#: src/tours/Tooltip.tsx:118 +#~ msgid "Onboarding tour step {0}: {1}" +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:619 +msgid "One or more images is missing alt text." +msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "สามารถลงได้แค่ไฟล์นามสกุล .jpg และ .png" + +#: src/components/WhoCanReply.tsx:245 +#~ msgid "Only {0} can reply" +#~ msgstr "" + +#: src/components/WhoCanReply.tsx:217 +msgid "Only {0} can reply." +msgstr "{0} สามารถตอบกลับได้เท่านั้น" + +#: src/screens/Signup/StepHandle.tsx:152 +msgid "Only contains letters, numbers, and hyphens" +msgstr "อนุญาตใช้ตัวอักษร ตัวเลข และเครื่องหมายขีดกลางเท่านั้น" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เท่านั้น" + +#: src/components/Lists.tsx:88 +msgid "Oops, something went wrong!" +msgstr "อุ้ย~ เกิดข้อผิดพลาดจ้า" + +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:45 +#: src/view/screens/Profile.tsx:119 +msgid "Oops!" +msgstr "อ๊ะ!" + +#: src/screens/Onboarding/StepFinished.tsx:251 +msgid "Open" +msgstr "เปิด" + +#: src/view/com/posts/AviFollowButton.tsx:86 +msgid "Open {name} profile shortcut menu" +msgstr "เปิดเมนูทางลัดบัญชีของ {name}" + +#: src/screens/Onboarding/StepProfile/index.tsx:286 +msgid "Open avatar creator" +msgstr "เปิดการสร้างอวาตาร์" + +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 +msgid "Open conversation options" +msgstr "เปิดการตั้งค่าการสนทนา" + +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:820 +#: src/view/com/composer/Composer.tsx:821 +msgid "Open emoji picker" +msgstr "เปิดการเลือกอีโมจิ" + +#: src/view/screens/ProfileFeed.tsx:294 +msgid "Open feed options menu" +msgstr "เปิดการตั้งค่าฟีต" + +#: src/view/screens/Settings/index.tsx:702 +msgid "Open links with in-app browser" +msgstr "เปิดลิงก์ในแอปบราวเซอร์" + +#: src/components/dms/ActionsWrapper.tsx:87 +msgid "Open message options" +msgstr "เปิดการตั้งค่าข้อความ" + +#: src/screens/Moderation/index.tsx:228 +msgid "Open muted words and tags settings" +msgstr "เปิดการปิดการมองเห็นคำและแท็ก" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +msgid "Open navigation" +msgstr "เปิดการสำรวจ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +msgid "Open post options menu" +msgstr "เปิดเมนูการตั้งค่าโพสต์" + +#: src/screens/StarterPack/StarterPackScreen.tsx:540 +msgid "Open starter pack menu" +msgstr "เปิดเมนูชุดเริ่มต้น" + +#: src/view/screens/Settings/index.tsx:826 +#: src/view/screens/Settings/index.tsx:836 +msgid "Open storybook page" +msgstr "เปิดหน้าสตอรี่บุ๊ค" + +#: src/view/screens/Settings/index.tsx:814 +msgid "Open system log" +msgstr "เปิด system log" + +#: src/view/com/util/forms/DropdownButton.tsx:159 +msgid "Opens {numItems} options" +msgstr "เปิดการตั้งค่า {numItems}" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:65 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "เปิดข้อความเพื่อเลือกว่าใครสามารถตอบกลับเธรตนี้ได้" + +#: src/view/screens/Settings/index.tsx:455 +msgid "Opens accessibility settings" +msgstr "เปิดตั้งค่าการเข้าถึง" + +#: src/view/screens/Log.tsx:58 +msgid "Opens additional details for a debug entry" +msgstr "เปิดรายละเอียดเพิ่มเติมสำหรับลิสต์แก้จุดบกพร่องทางคอมพิวเตอร์" + +#: src/view/com/notifications/FeedItem.tsx:349 +#~ msgid "Opens an expanded list of users in this notification" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:476 +msgid "Opens appearance settings" +msgstr "เปิดการตั้งค่าการแสดงผล" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +msgid "Opens camera on device" +msgstr "เปิดกล้องในอุปกรณ์" + +#: src/view/screens/Settings/index.tsx:605 +msgid "Opens chat settings" +msgstr "เปิดการตั้งค่าแชท" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:48 +msgid "Opens composer" +msgstr "เปิด composer" + +#: src/view/screens/Settings/index.tsx:497 +msgid "Opens configurable language settings" +msgstr "เปิดการตั้งค่าภาษาที่ปรับแต่งได้" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "เปิดรูปแกลลอรี่ในอุปกรณ์" + +#: src/view/screens/Settings/index.tsx:637 +msgid "Opens external embeds settings" +msgstr "เปิดการตั้งค่าการฝังข้อมูลจากภายนอก" + +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "เปิดขั้นตอนเพื่อสร้างบัญชี Bluesky ใหม่" + +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign into your existing Bluesky account" +msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที่มีอยู่แล้ว" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "เปิดข้อความเลือก GIF" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "เปิดลิสต์ของโค้ดเชิญ" + +#: src/view/screens/Settings/index.tsx:774 +msgid "Opens modal for account deactivation confirmation" +msgstr "เปิดการยืนยันการใช้บัญชี" + +#: src/view/screens/Settings/index.tsx:796 +msgid "Opens modal for account deletion confirmation. Requires email code" +msgstr "เปิดการยืนยันการลบบัญชี ต้องมีโค้ดจากอีเมบ" + +#: src/view/screens/Settings/index.tsx:731 +msgid "Opens modal for changing your Bluesky password" +msgstr "เปิดการเปลี่ยนรหัส Bluesky ของคุณ" + +#: src/view/screens/Settings/index.tsx:686 +msgid "Opens modal for choosing a new Bluesky handle" +msgstr "เปิดการเปลี่ยนแฮนด์เดิ้ล Bluesky ของคุณ" + +#: src/view/screens/Settings/index.tsx:754 +msgid "Opens modal for downloading your Bluesky account data (repository)" +msgstr "เปิดการดาวน์โหลดข้อมูล Bluesky (ดาวน์โหลดคลังข้อมูล)" + +#: src/view/screens/Settings/index.tsx:962 +msgid "Opens modal for email verification" +msgstr "เปิดการส่งการยืนยันอีเมล" + +#: src/view/com/modals/ChangeHandle.tsx:269 +msgid "Opens modal for using custom domain" +msgstr "เปิดการกำหนดโดเมน" + +#: src/view/screens/Settings/index.tsx:522 +msgid "Opens moderation settings" +msgstr "เปิดการตั้งค่าการกรอง" + +#: src/screens/Login/LoginForm.tsx:231 +msgid "Opens password reset form" +msgstr "เปิดการรีเซ็ตรหัสผ่าน" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:77 +#: src/view/screens/Feeds.tsx:417 +#~ msgid "Opens screen to edit Saved Feeds" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:583 +msgid "Opens screen with all saved feeds" +msgstr "เปิดหน้าต่างที่มีฟีดที่บันทึกไว้ทั้งหมด" + +#: src/view/screens/Settings/index.tsx:664 +msgid "Opens the app password settings" +msgstr "เปิดการตั้งค่ารหัสผ่านแอป" + +#: src/view/screens/Settings/index.tsx:540 +msgid "Opens the Following feed preferences" +msgstr "เปิดการตั้งค่าฟีดที่ติดตาม" + +#: src/view/com/modals/LinkWarning.tsx:93 +msgid "Opens the linked website" +msgstr "เปิดเว็บไซต์ที่เชื่อมโยง" + +#: src/screens/Messages/List/index.tsx:86 +#~ msgid "Opens the message settings page" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 +msgid "Opens the storybook page" +msgstr "เปิดหน้าสตอรี่บุ๊ค" + +#: src/view/screens/Settings/index.tsx:815 +msgid "Opens the system log page" +msgstr "เปิดหน้าต่างการบันทึกระบบ" + +#: src/view/screens/Settings/index.tsx:561 +msgid "Opens the threads preferences" +msgstr "เปิดการตั้งค่าเธรต" + +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 +msgid "Opens this profile" +msgstr "เปิดโปรไฟล์นี้" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 +msgid "Opens video picker" +msgstr "เปิดคลิปวีดีโอที่เลือด" + +#: src/view/com/util/forms/DropdownButton.tsx:293 +msgid "Option {0} of {numItems}" +msgstr "ตัวเลือก {0} ของ {numItems}" + +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 +msgid "Optionally provide additional information below:" +msgstr "สามารถให้ข้อมูลเพิ่มเติมด้านล่างนี้ได้ :" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "ตัวเลือก :" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Or combine these options:" +msgstr "หรือรวมตัวเลือกนี้ :" + +#: src/screens/Deactivated.tsx:211 +msgid "Or, continue with another account." +msgstr "หรือทำต่อด้วยบัญชีอื่น" + +#: src/screens/Deactivated.tsx:194 +msgid "Or, log into one of your other accounts." +msgstr "หรือเข้าสู่ระบบด้วยบัญชีอื่นของคุณ" + +#: src/lib/moderation/useReportOptions.ts:27 +msgid "Other" +msgstr "อื่น ๆ" + +#: src/components/AccountList.tsx:76 +msgid "Other account" +msgstr "บัญชีอื่น ๆ" + +#: src/view/screens/Settings/index.tsx:379 +msgid "Other accounts" +msgstr "บัญชีอื่น ๆ" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:92 +msgid "Other..." +msgstr "อื่น ๆ..." + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "ผู้ดูแลระบบของเราได้ตรวจสอบรายงานและตัดสินใจที่จะปิดการเข้าถึงแชทของคุณบน Bluesky" + +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:45 +msgid "Page not found" +msgstr "ไม่พบหน้านี้" + +#: src/view/screens/NotFound.tsx:42 +msgid "Page Not Found" +msgstr "ไม่พบหน้านี้" + +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Password" +msgstr "รหัสผ่าน" + +#: src/view/com/modals/ChangePassword.tsx:143 +msgid "Password Changed" +msgstr "รหัสผ่านถูกเปลี่ยน" + +#: src/screens/Login/index.tsx:154 +msgid "Password updated" +msgstr "อัพเดตรหัสผ่าน" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "อัพเดตรหัสผ่านแล้ว!" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 +msgid "Pause" +msgstr "พัก" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 +msgid "Pause video" +msgstr "พักวีดีโอ" + +#: src/screens/StarterPack/StarterPackScreen.tsx:171 +#: src/view/screens/Search/Search.tsx:529 +msgid "People" +msgstr "ผู้คน" + +#: src/Navigation.tsx:179 +msgid "People followed by @{0}" +msgstr "ผู้คนที่ติดตามโดย @{0}" + +#: src/Navigation.tsx:172 +msgid "People following @{0}" +msgstr "ผู้คนที่ติดตาม @{0}" + +#: src/view/com/lightbox/Lightbox.tsx:77 +msgid "Permission to access camera roll is required." +msgstr "ต้องการสิทธิ์ในการเข้าถึงแกลลอรี่" + +#: src/view/com/lightbox/Lightbox.tsx:85 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "การสิทธิ์ในการเข้าถึงแกลลอรี่ถูกปฏิเสธ กรุณาเปิดใช้งานในการตั้งค่าระบบของคุณ" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "สลับบุคคล" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 +msgid "Pets" +msgstr "เพ็ทซ์" + +#: src/screens/Onboarding/state.ts:97 +msgid "Photography" +msgstr "การถ่ายภาพ" + +#: src/view/com/modals/SelfLabel.tsx:122 +msgid "Pictures meant for adults." +msgstr "ภาพที่เหมาะสำหรับเนื้อหาผู้ใหญ่ (18+)" + +#: src/view/screens/ProfileFeed.tsx:286 +#: src/view/screens/ProfileList.tsx:667 +msgid "Pin to home" +msgstr "ปักหมุดไปที่หน้าแรก" + +#: src/view/screens/ProfileFeed.tsx:289 +msgid "Pin to Home" +msgstr "ปักหมุดไปที่หน้าแรก" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "ปักหมุดไปที่โปรไฟล์" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "ปักหมุดแล้ว" + +#: src/view/screens/SavedFeeds.tsx:131 +msgid "Pinned Feeds" +msgstr "ฟีตที่ปักหมุด" + +#: src/view/screens/ProfileList.tsx:346 +msgid "Pinned to your feeds" +msgstr "ปักหมุดไปที่ฟีต" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 +msgid "Play" +msgstr "เล่น" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +msgid "Play {0}" +msgstr "เล่น {0}" + +#: src/screens/Messages/Settings.tsx:97 +#: src/screens/Messages/Settings.tsx:104 +#~ msgid "Play notification sounds" +#~ msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +msgid "Play or pause the GIF" +msgstr "เล่นหรือหยุดพัก GIF" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 +msgid "Play video" +msgstr "เล่นวิดีโอ" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 +msgid "Play Video" +msgstr "เล่นวิดีโอ" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +msgid "Plays the GIF" +msgstr "เล่น GIF" + +#: src/screens/Signup/state.ts:217 +msgid "Please choose your handle." +msgstr "กรุณาเลือกแฮนเดิลของคุณ" + +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 +msgid "Please choose your password." +msgstr "โปรดเลือกรหัสผ่านของคุณ" + +#: src/screens/Signup/state.ts:231 +msgid "Please complete the verification captcha." +msgstr "โปรดทำการยืนยัน Captcha ให้เสร็จ" + +#: src/view/com/modals/ChangeEmail.tsx:65 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "กรุณายืนยันอีเมลของคุณก่อนที่จะเปลี่ยน นี่เป็นข้อกำหนดชั่วคราวในขณะที่มีการเพิ่มเครื่องมือในการอัปเดตอีเมล และจะถูกลบออกในเร็วๆ นี้" + +#: src/view/com/modals/AddAppPasswords.tsx:94 +msgid "Please enter a name for your app password. All spaces is not allowed." +msgstr "กรุณาใส่ชื่อของคุณ ไม่อนุญาตให้มีพื้นที่ว่าง" + +#: src/view/com/modals/AddAppPasswords.tsx:151 +msgid "Please enter a unique name for this App Password or use our randomly generated one." +msgstr "กรุณากรอกชื่อที่ไม่ซ้ำกันสำหรับรหัสผ่านแอปนี้ หรือใช้ชื่อที่เราสุ่มให้" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "กรุณากรอกคำ แท็ก หรือวลี ที่ต้องการปิดการมองเห็น" + +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 +msgid "Please enter your email." +msgstr "กรุณากรอกอีเมลของคุณ" + +#: src/screens/Signup/StepInfo/index.tsx:96 +msgid "Please enter your invite code." +msgstr "กรุณาใส่โค้ดเชิญ" + +#: src/view/com/modals/DeleteAccount.tsx:253 +msgid "Please enter your password as well:" +msgstr "กรุณาใส่รหัสผ่าน" + +#: src/components/moderation/LabelsOnMeDialog.tsx:265 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "กรุณาอธิบายว่าทำไมการตั้งชื่อไม่ถูกต้องโดย {0}" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "กรุณาอธิบายว่าทำไมคุณคิดว่าแชทของคุณถูกปิดใช้งานแบบไม่ถูกต้อง" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "กรุณาลงชื่อเข้าใช้ @{0}" + +#: src/view/com/modals/VerifyEmail.tsx:109 +msgid "Please Verify Your Email" +msgstr "กรุณายืนยันอีเมลของคุณ" + +#: src/view/com/composer/Composer.tsx:359 +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 +msgid "Politics" +msgstr "การเมือง" + +#: src/view/com/modals/SelfLabel.tsx:112 +msgid "Porn" +msgstr "สื่ออนาจาร" + +#: src/view/com/composer/Composer.tsx:594 +#: src/view/com/composer/Composer.tsx:601 +msgctxt "action" +msgid "Post" +msgstr "โพสต์" + +#: src/view/com/post-thread/PostThread.tsx:481 +msgctxt "description" +msgid "Post" +msgstr "โพสต์" + +#: src/view/com/post-thread/PostThreadItem.tsx:196 +msgid "Post by {0}" +msgstr "โพสต์โดย {0}" + +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 +msgid "Post by @{0}" +msgstr "โพสต์โดย {0}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Post deleted" +msgstr "โพสต์ถูกลบแล้ว" + +#: src/view/com/post-thread/PostThread.tsx:212 +msgid "Post hidden" +msgstr "โพสต์ถูกซ่อนแล้ว" + +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 +msgid "Post Hidden by Muted Word" +msgstr "โพสต์ถูกซ่อนโดยคำที่ถูกปิดเสียง" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 +msgid "Post Hidden by You" +msgstr "โพสต์ถูกซ่อนโดยคุณ" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 +msgid "Post interaction settings" +msgstr "การตั้งค่าการโต้ตอบโพสต์" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:88 +msgid "Post language" +msgstr "โพสต์ด้วยภาษา" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 +msgid "Post Languages" +msgstr "โพสต์ด้วยภาษา" + +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 +msgid "Post not found" +msgstr "ไม่พบโพสต์" + +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "ปักหมุดโพสต์แล้ว" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "ถอนหมุดโพสต์แล้ว" + +#: src/components/TagMenu/index.tsx:266 +msgid "posts" +msgstr "โพสต์" + +#: src/screens/StarterPack/StarterPackScreen.tsx:173 +#: src/view/screens/Profile.tsx:219 +msgid "Posts" +msgstr "โพสต์" + +#: src/components/dialogs/MutedWords.tsx:89 +#~ msgid "Posts can be muted based on their text, their tags, or both." +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "โพสต์สามารถถูกปิดเสียงตามข้อความ แท็ก หรือทั้งสองอย่าง เราขอแนะนำให้หลีกเลี่ยงคำทั่วไปที่ปรากฏในโพสต์หลายๆ โพสต์ เพราะอาจส่งผลให้ไม่มีโพสต์ใดแสดงขึ้นมา" + +#: src/view/com/posts/FeedErrorMessage.tsx:68 +msgid "Posts hidden" +msgstr "โพสต์ที่ซ่อนอยู่" + +#: src/view/com/modals/LinkWarning.tsx:60 +msgid "Potentially Misleading Link" +msgstr "ลิงก์ที่อาจทำให้เข้าใจผิด" + +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "บันทึกการตั้งค่าเรียบร้อย" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "คลิกเพื่อพยายามเชื่อมต่อใหม่" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "Press to change hosting provider" +msgstr "คลิกเพื่อเปลี่ยนผู้ให้บริการโฮสต์ติ้ง" + +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "กดเพื่อลองใหม่" + +#: src/screens/Messages/Conversation/MessagesList.tsx:47 +#: src/screens/Messages/Conversation/MessagesList.tsx:53 +#~ msgid "Press to Retry" +#~ msgstr "" + +#: src/components/KnownFollowers.tsx:124 +msgid "Press to view followers of this account that you also follow" +msgstr "กดเพื่อดูผู้ติดตามในบัญชีนี้ที่คุณติดตามเหมือนกัน" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "ภาพก่อนหน้า" + +#: src/view/screens/LanguageSettings.tsx:186 +msgid "Primary Language" +msgstr "ภาษาหลัก" + +#: src/view/screens/PreferencesThreads.tsx:91 +msgid "Prioritize Your Follows" +msgstr "จัดลำดับความสำคัญการติดตามของคุณ" + +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "จัดลำดับความสำคัญการแจ้งเตือน" + +#: src/view/screens/Settings/index.tsx:620 +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Privacy" +msgstr "ความเป็นส่วนตัว" + +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:29 +#: src/view/screens/Settings/index.tsx:911 +#: src/view/shell/Drawer.tsx:290 +msgid "Privacy Policy" +msgstr "นโยบายความเป็นส่วนตัว" + +#: src/components/dms/MessagesNUX.tsx:91 +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "ดำเนินการ..." + +#: src/view/screens/DebugMod.tsx:896 +#: src/view/screens/Profile.tsx:354 +msgid "profile" +msgstr "ข้อมูลส่วนตัว" + +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:538 +#: src/view/shell/Drawer.tsx:539 +msgid "Profile" +msgstr "ข้อมูลส่วนตัว" + +#: src/view/com/modals/EditProfile.tsx:124 +msgid "Profile updated" +msgstr "โปรไฟล์ได้รับการอัปเดต" + +#: src/view/screens/Settings/index.tsx:975 +msgid "Protect your account by verifying your email." +msgstr "ปกป้องบัญชีของคุณโดยการตรวจสอบอีเมลของคุณ." + +#: src/screens/Onboarding/StepFinished.tsx:237 +msgid "Public" +msgstr "สาธารณะ" + +#: src/view/screens/ModerationModlists.tsx:62 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "ลิสต์ผู้ใช้สาธารณะที่สามารถแบ่งปันได้เพื่อปิดเสียงหรือบล็อกเป็นกลุ่ม." + +#: src/view/screens/Lists.tsx:68 +msgid "Public, shareable lists which can drive feeds." +msgstr "ลิสต์สาธารณะที่สามารถแบ่งปันได้ซึ่งสามารถควบคุมฟีด." + +#: src/view/com/composer/Composer.tsx:579 +msgid "Publish post" +msgstr "เผยแพร่โพสต์" + +#: src/view/com/composer/Composer.tsx:579 +msgid "Publish reply" +msgstr "เผยแพร่การตอบกลับ" + +#: src/components/StarterPack/QrCodeDialog.tsx:128 +msgid "QR code copied to your clipboard!" +msgstr "คัดลอก QR โค้ดไปยังคลิปบอร์ดของคุณแล้ว!" + +#: src/components/StarterPack/QrCodeDialog.tsx:106 +msgid "QR code has been downloaded!" +msgstr "ดาวน์โหลด QR โค้ดเรียบร้อยแล้ว!" + +#: src/components/StarterPack/QrCodeDialog.tsx:107 +msgid "QR code saved to your camera roll!" +msgstr "บันทึก QR โค้ดลงในคลังภาพของคุณแล้ว!" + +#: src/tours/Tooltip.tsx:111 +#~ msgid "Quick tip" +#~ msgstr "" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:127 +#: src/view/com/util/post-ctrls/RepostButton.tsx:154 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +msgid "Quote post" +msgstr "โควทโพสต์นี้" + +#: src/view/com/modals/Repost.tsx:66 +#~ msgctxt "action" +#~ msgid "Quote post" +#~ msgstr "" + +#: src/view/com/modals/Repost.tsx:71 +#~ msgctxt "action" +#~ msgid "Quote Post" +#~ msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +msgid "Quote post was re-attached" +msgstr "โพสต์ที่อ้างอิงถูกแนบใหม่" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +msgid "Quote post was successfully detached" +msgstr "โพสต์ที่อ้างอิงถูกแยกออกเรียบร้อยแล้ว" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:126 +#: src/view/com/util/post-ctrls/RepostButton.tsx:153 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +msgid "Quote posts disabled" +msgstr "ยกเลิกการโควท" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 +msgid "Quote posts enabled" +msgstr "เปิดใช้การโควท" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 +msgid "Quote settings" +msgstr "การตั้งค่าการโควท" + +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Post/PostQuotes.tsx:32 +msgid "Quotes" +msgstr "โควท" + +#: src/view/com/post-thread/PostThreadItem.tsx:230 +msgid "Quotes of this post" +msgstr "โควทโพสต์นี้" + +#: src/view/screens/PreferencesThreads.tsx:80 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "สุ่ม (หรือ \"Poster's Roulette\")" + +#: src/view/com/modals/EditImage.tsx:237 +#~ msgid "Ratios" +#~ msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +msgid "Re-attach quote" +msgstr "แนบโพสต์ที่โควทอีกครั้ง" + +#: src/screens/Deactivated.tsx:144 +msgid "Reactivate your account" +msgstr "ปิดใช้งานบัญชีของคุณอีกครั้ง" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Read the Bluesky blog" +msgstr "อ่าน Bluesky blog" + +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 +msgid "Read the Bluesky Privacy Policy" +msgstr "อ่านนโยบายความเป็นส่วนตัวของ Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 +msgid "Read the Bluesky Terms of Service" +msgstr "อ่านนโยบาย เงื่อนไข และ ข้อตกลง ในการให้บริการของ Bluesky" + +#: src/components/dms/ReportDialog.tsx:169 +msgid "Reason:" +msgstr "เหตุผล:" + +#: src/components/dms/MessageReportDialog.tsx:149 +#~ msgid "Reason: {0}" +#~ msgstr "" + +#: src/view/screens/Search/Search.tsx:1051 +msgid "Recent Searches" +msgstr "ประวัติการค้นหา" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117 +#~ msgid "Recommended Feeds" +#~ msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 +#~ msgid "Recommended Users" +#~ msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "เชื่อมต่อใหม่" + +#: src/view/screens/Notifications.tsx:143 +msgid "Refresh notifications" +msgstr "รีเฟรชการแจ้งเตือน" + +#: src/screens/Messages/ChatList.tsx:197 +msgid "Reload conversations" +msgstr "โหลดการสนทนาใหม่" + +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/view/com/feeds/FeedSourceCard.tsx:316 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/SelfLabel.tsx:84 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/util/AccountDropdownBtn.tsx:61 +msgid "Remove" +msgstr "ลบ" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "ลบ {displayName} จากชุดเริ่มต้นของคุณ" + +#: src/view/com/util/AccountDropdownBtn.tsx:26 +msgid "Remove account" +msgstr "ลบบัญชี" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +msgid "Remove attachment" +msgstr "ลบไฟล์แนบ" + +#: src/view/com/util/UserAvatar.tsx:403 +msgid "Remove Avatar" +msgstr "ลบอวาตาร์" + +#: src/view/com/util/UserBanner.tsx:155 +msgid "Remove Banner" +msgstr "ลบแบนด์เนอร์" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 +msgid "Remove embed" +msgstr "ลบการฝังข้อมูล" + +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +msgid "Remove feed" +msgstr "ลบฟีต" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 +msgid "Remove feed?" +msgstr "ลบฟีตหรือไม่?" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +#: src/view/com/feeds/FeedSourceCard.tsx:265 +#: src/view/screens/ProfileFeed.tsx:330 +#: src/view/screens/ProfileFeed.tsx:336 +#: src/view/screens/ProfileList.tsx:493 +#: src/view/screens/SavedFeeds.tsx:350 +msgid "Remove from my feeds" +msgstr "ลบจากฟีตของฉัน" + +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:311 +msgid "Remove from my feeds?" +msgstr "ลบจากฟีตของฉันหรือไม่?" + +#: src/view/com/util/AccountDropdownBtn.tsx:53 +msgid "Remove from quick access?" +msgstr "ลบการเข้าถึงด่วนใช่ไหม" + +#: src/screens/List/ListHiddenScreen.tsx:156 +msgid "Remove from saved feeds" +msgstr "ลบจากฟีตที่เซฟไว้" + +#: src/view/com/composer/photos/Gallery.tsx:200 +msgid "Remove image" +msgstr "ลบรูปภาพ" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#~ msgid "Remove image preview" +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "ลบคำที่ปิดการมองเห็นจากลิสต์ของคุณ" + +#: src/view/screens/Search/Search.tsx:1095 +msgid "Remove profile" +msgstr "ลบโปรไฟล์" + +#: src/view/screens/Search/Search.tsx:1097 +msgid "Remove profile from search history" +msgstr "ลบโปรไฟล์จากการประวัติการค้นหา" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:281 +msgid "Remove quote" +msgstr "ลบโควท" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:100 +#: src/view/com/util/post-ctrls/RepostButton.tsx:116 +msgid "Remove repost" +msgstr "ลบรีโพสต์" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 +msgid "Remove subtitle file" +msgstr "ลบไฟล์ซับไตเติ้ล" + +#: src/view/com/posts/FeedErrorMessage.tsx:211 +msgid "Remove this feed from your saved feeds" +msgstr "ลบฟีตนี้จากฟีตที่คุณเซฟ" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 +msgid "Removed by author" +msgstr "ลบโดยผู้สร้าง" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +msgid "Removed by you" +msgstr "ลบโดยคุณ" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "ลบจากลิสต์" + +#: src/view/com/feeds/FeedSourceCard.tsx:138 +msgid "Removed from my feeds" +msgstr "ลบจากฟิตของฉัน" + +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 +msgid "Removed from saved feeds" +msgstr "ลบจากฟีตที่เซฟ" + +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:190 +#: src/view/screens/ProfileList.tsx:377 +msgid "Removed from your feeds" +msgstr "ลบจากฟีตของคุณ" + +#: src/view/com/composer/ExternalEmbed.tsx:88 +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:282 +msgid "Removes quoted post" +msgstr "ลบโพสต์ของโควท" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the attachment" +msgstr "ลบไฟล์แนบ" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +#~ msgid "Removes the image preview" +#~ msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "แทนที่ด้วยสิ่งที่น่าสนใจ" + +#: src/view/screens/Profile.tsx:220 +msgid "Replies" +msgstr "การตอบกลับ" + +#: src/components/WhoCanReply.tsx:69 +msgid "Replies disabled" +msgstr "ปิดการตอบกลับแล้ว" + +#: src/view/com/threadgate/WhoCanReply.tsx:123 +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" + +#: src/components/WhoCanReply.tsx:215 +msgid "Replies to this post are disabled." +msgstr "การตอบกลับโพสต์นี้ถูกปิด" + +#: src/components/WhoCanReply.tsx:243 +#~ msgid "Replies to this thread are disabled" +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:592 +msgctxt "action" +msgid "Reply" +msgstr "การตอบกลับ" + +#: src/view/screens/PreferencesFollowingFeed.tsx:142 +#~ msgid "Reply Filters" +#~ msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 +msgid "Reply Hidden by Thread Author" +msgstr "การตอบกลับถูกซ่อนโดยผู้สร้างเธรต" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 +msgid "Reply Hidden by You" +msgstr "การตอบกลับถูกซ่อนโดยคุณ" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 +msgid "Reply settings" +msgstr "การตั้งค่าการตอบกลับ" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Reply settings are chosen by the author of the thread" +msgstr "การตั้งค่าการตอบกลับถูกเลือกโดยผู้เขียนกระทู้" + +#: src/view/com/post/Post.tsx:177 +#: src/view/com/posts/FeedItem.tsx:285 +#~ msgctxt "description" +#~ msgid "Reply to <0/>" +#~ msgstr "" + +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "ตอบกลับไปยัง <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:535 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "ตอบกลับไปยังโพสต์ที่ถูกบล็อก" + +#: src/view/com/posts/FeedItem.tsx:537 +msgctxt "description" +msgid "Reply to a post" +msgstr "ตอบกลับไปยังโพสต์" + +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 +msgctxt "description" +msgid "Reply to you" +msgstr "ตอบกลับคุณ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +msgid "Reply visibility updated" +msgstr "การมองเห็นการตอบกลับได้รับการปรับปรุง" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +msgid "Reply was successfully hidden" +msgstr "การตอบกลับถูกซ่อนเรียบร้อยแล้ว" + +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "Report" +msgstr "รายงาน" + +#: src/components/dms/ConvoMenu.tsx:146 +#: src/components/dms/ConvoMenu.tsx:150 +#~ msgid "Report account" +#~ msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 +msgid "Report Account" +msgstr "รายงานบัญชี" + +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 +msgid "Report conversation" +msgstr "รายงานการสนทนา" + +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "รายงานการสนทนา" + +#: src/view/screens/ProfileFeed.tsx:347 +#: src/view/screens/ProfileFeed.tsx:349 +msgid "Report feed" +msgstr "รายงานฟีด" + +#: src/view/screens/ProfileList.tsx:535 +msgid "Report List" +msgstr "รายงานลิสต์" + +#: src/components/dms/MessageMenu.tsx:130 +msgid "Report message" +msgstr "รายงานข้อความ" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +msgid "Report post" +msgstr "รายงานโพสต์" + +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Report starter pack" +msgstr "รายงานชุดเริ่มต้น" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:43 +msgid "Report this content" +msgstr "รายงานเนื้อหานี้" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:56 +msgid "Report this feed" +msgstr "รายงานฟีดนี้" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:53 +msgid "Report this list" +msgstr "รายงานลิสต์นี้" + +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 +msgid "Report this message" +msgstr "รายงานข้อความนี้" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:50 +msgid "Report this post" +msgstr "รายงานโพสต์นี้" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +msgid "Report this starter pack" +msgstr "รายงานชุดเริ่มต้นนี้" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:47 +msgid "Report this user" +msgstr "รายงานผู้ใช้คนนี้" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:70 +#: src/view/com/util/post-ctrls/RepostButton.tsx:101 +#: src/view/com/util/post-ctrls/RepostButton.tsx:117 +msgctxt "action" +msgid "Repost" +msgstr "รีโพสต์" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Repost" +msgstr "รีโพสต์" + +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/view/com/util/post-ctrls/RepostButton.tsx:93 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +#: src/screens/Post/PostRepostedBy.tsx:32 +msgid "Reposted By" +msgstr "รีโพสต์โดย" + +#: src/view/com/posts/FeedItem.tsx:294 +msgid "Reposted by {0}" +msgstr "รีโพสต์โดย {0}" + +#: src/view/com/posts/FeedItem.tsx:214 +#~ msgid "Reposted by <0/>" +#~ msgstr "" + +#: src/view/com/posts/FeedItem.tsx:313 +msgid "Reposted by <0><1/>" +msgstr "รีโพสต์โดย <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 +msgid "Reposted by you" +msgstr "รีโพสต์โดยคุณ" + +#: src/view/com/notifications/FeedItem.tsx:180 +msgid "reposted your post" +msgstr "ได้รีโพสต์ของคุณแล้ว" + +#: src/view/com/post-thread/PostThreadItem.tsx:209 +msgid "Reposts of this post" +msgstr "รีโพสต์ของโพสต์นี้" + +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 +msgid "Request Change" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 +msgid "Request Code" +msgstr "ขอรหัส" + +#: src/view/screens/AccessibilitySettings.tsx:89 +msgid "Require alt text before posting" +msgstr "ต้องมีข้อความแทนภาพก่อนโพสต์" + +#: src/view/screens/Settings/Email2FAToggle.tsx:51 +msgid "Require email code to log into your account" +msgstr "ต้องใช้รหัสอีเมลเพื่อเข้าสู่บัญชีของคุณ" + +#: src/screens/Signup/StepInfo/index.tsx:159 +msgid "Required for this provider" +msgstr "จำเป็นสำหรับผู้ให้บริการนี้" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "จำเป็นในภูมิภาคของคุณ" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 +msgid "Resend email" +msgstr "ส่งอีเมลอีกครั้ง" + +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "ส่งอีเมลอีกครั้ง" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "ส่งอีเมลยืนยันอีกครั้ง" + +#: src/view/com/modals/ChangePassword.tsx:186 +msgid "Reset code" +msgstr "รีเซ็ตรหัส" + +#: src/view/com/modals/ChangePassword.tsx:193 +msgid "Reset Code" +msgstr "รีเซ็ตรหัส" + +#: src/view/screens/Settings/index.tsx:866 +#: src/view/screens/Settings/index.tsx:869 +msgid "Reset onboarding state" +msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งาน" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "รีเซ็ตรหัสผ่าน" + +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:849 +msgid "Reset preferences state" +msgstr "รีเซ็ตสถานะการตั้งค่าความชอบ" + +#: src/view/screens/Settings/index.tsx:867 +msgid "Resets the onboarding state" +msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งาน" + +#: src/view/screens/Settings/index.tsx:847 +msgid "Resets the preferences state" +msgstr "รีเซ็ตสถานะการตั้งค่าความชอบ" + +#: src/screens/Login/LoginForm.tsx:296 +msgid "Retries login" +msgstr "ลองเข้าสู่ระบบอีกครั้ง" + +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 +msgid "Retries the last action, which errored out" +msgstr "ลองทำกิจกรรมล่าสุดซึ่งเกิดข้อผิดพลาดอีกครั้ง" + + +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +msgid "Retry" +msgstr "ลองใหม่อีกครั้ง" + +#: src/screens/Messages/Conversation/MessageListError.tsx:54 +#~ msgid "Retry." +#~ msgstr "" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:739 +#: src/view/screens/ProfileList.tsx:1021 +msgid "Return to previous page" +msgstr "กลับไปยังหน้าก่อนหน้า" + +#: src/view/screens/NotFound.tsx:59 +msgid "Returns to home page" +msgstr "กลับไปยังหน้าแรก" + +#: src/view/screens/NotFound.tsx:58 +#: src/view/screens/ProfileFeed.tsx:112 +msgid "Returns to previous page" +msgstr "กลับไปยังหน้าก่อนหน้า" + + +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/view/com/composer/GifAltText.tsx:191 +#: src/view/com/composer/GifAltText.tsx:200 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:161 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/com/modals/EditProfile.tsx:219 +#: src/view/screens/SavedFeeds.tsx:101 +msgid "Save" +msgstr "บันทึก" + +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 +msgctxt "action" +msgid "Save" +msgstr "บันทึก" + +#: src/view/com/modals/AltImage.tsx:132 +#~ msgid "Save alt text" +#~ msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +msgid "Save birthday" +msgstr "บันทึกวันเกิด" + +#: src/view/screens/SavedFeeds.tsx:97 +#: src/view/screens/SavedFeeds.tsx:101 +msgid "Save changes" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: src/view/com/modals/EditProfile.tsx:227 +msgid "Save Changes" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: src/view/com/modals/ChangeHandle.tsx:158 +msgid "Save handle change" +msgstr "บันทึกการเปลี่ยนแฮนด์เดิ้ล" + +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 +msgid "Save image" +msgstr "บันทึกรูปภาพ" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "บันทึกการครอปรูปภาพ" + +#: src/components/StarterPack/QrCodeDialog.tsx:179 +msgid "Save QR code" +msgstr "บันทึกคิวอาร์โค้ด" + +#: src/view/screens/ProfileFeed.tsx:331 +#: src/view/screens/ProfileFeed.tsx:337 +msgid "Save to my feeds" +msgstr "บันทึกที่ฟีตของฉัน" + +#: src/view/screens/SavedFeeds.tsx:173 +msgid "Saved Feeds" +msgstr "บันทึกฟีต" + +#: src/view/com/lightbox/Lightbox.tsx:95 +msgid "Saved to your camera roll" +msgstr "บันทึกไปที่แกลลอรี่" + +#: src/view/com/lightbox/Lightbox.tsx:81 +#~ msgid "Saved to your camera roll." +#~ msgstr "" + +#: src/view/screens/ProfileFeed.tsx:199 +#: src/view/screens/ProfileList.tsx:357 +msgid "Saved to your feeds" +msgstr "บันทึกไปที่ฟีตของคุณ" + +#: src/view/com/modals/EditProfile.tsx:220 +msgid "Saves any changes to your profile" +msgstr "บันทึกการเปลี่ยนแปลงโปรไฟล์ของคุณ" + +#: src/view/com/modals/ChangeHandle.tsx:159 +msgid "Saves handle change to {handle}" +msgstr "บันทึกการเปลี่ยนแปลงแฮนเดิ้ล {handle}" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "บันทึกการครอปรูปภาพ" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 +msgid "Say hello!" +msgstr "ทักทายสิ!" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 +msgid "Science" +msgstr "วิทยาศาสตร์" + +#: src/view/screens/ProfileList.tsx:977 +msgid "Scroll to top" +msgstr "เลื่อนไปข้างบนสุด" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:589 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:390 +#: src/view/shell/Drawer.tsx:391 +msgid "Search" +msgstr "ค้นหา" + +#: src/view/shell/desktop/Search.tsx:201 +msgid "Search for \"{query}\"" +msgstr "ค้นหาจาก \"{query}\"" + +#: src/view/screens/Search/Search.tsx:994 +msgid "Search for \"{searchText}\"" +msgstr "การค้นหาสำหรับ \"{query}\"" + +#: src/components/TagMenu/index.tsx:155 +msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +msgstr "การค้นหาโพสต์ทั้งหมดโดย @{authorHandle} กับแท็ก {displayTag}" + +#: src/components/TagMenu/index.tsx:104 +msgid "Search for all posts with tag {displayTag}" +msgstr "การค้นหาโพสต์ทั้งหมดกับแท็ก {displayTag}" + +#: src/screens/StarterPack/Wizard/index.tsx:491 +msgid "Search for feeds that you want to suggest to others." +msgstr "ค้นหาสำหรับฟีตที่คุณต้องการแนะนำให้คนอื่น" + +#: src/components/dms/NewChat.tsx:226 +#~ msgid "Search for someone to start a conversation with." +#~ msgstr "" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 +msgid "Search for users" +msgstr "ค้นหาสำหรับผู้ใช้" + +#: src/components/dialogs/GifSelect.tsx:177 +msgid "Search GIFs" +msgstr "ค้นหา GIF" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +msgid "Search profiles" +msgstr "ค้นหาโปรไฟล์" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search Tenor" +msgstr "ค้นหา Tenor" + +#: src/view/com/modals/ChangeEmail.tsx:105 +msgid "Security Step Required" +msgstr "ต้องการขั้นตอนด้านความปลอดภัย" + +#: src/components/TagMenu/index.web.tsx:77 +msgid "See {truncatedTag} posts" +msgstr "ดูโพสต์ {truncatedTag}" + +#: src/components/TagMenu/index.web.tsx:94 +msgid "See {truncatedTag} posts by user" +msgstr "ดูโพสต์ {truncatedTag} โดยผู้ใช้" + +#: src/components/TagMenu/index.tsx:138 +msgid "See <0>{displayTag} posts" +msgstr "ดูโพสต์ <0>{displayTag}" + +#: src/components/TagMenu/index.tsx:197 +msgid "See <0>{displayTag} posts by this user" +msgstr "ดูโพสต์ <0>{displayTag} โดยผู้ใช้" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "See jobs at Bluesky" +msgstr "มองหางานใน Bluesky" + +#: src/view/com/notifications/FeedItem.tsx:411 +#: src/view/com/util/UserAvatar.tsx:402 +#~ msgid "See profile" +#~ msgstr "" + +#: src/view/screens/SavedFeeds.tsx:214 +msgid "See this guide" +msgstr "ดูคู่มือนี้" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:40 +#~ msgid "See what's next" +#~ msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 +msgid "Seek slider" +msgstr "จัดการมุมมอง" + +#: src/view/com/util/Selector.tsx:106 +msgid "Select {item}" +msgstr "เลือก {item}" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "เลือกสี" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "เลือกบัญชี" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "เลือกอวาตาร์" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "เลือกอีโมจิ" + +#: src/screens/Login/index.tsx:117 +msgid "Select from an existing account" +msgstr "เลือกจากบัญชีที่มีอยู่แล้ว" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "เลือก GIF" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "เลือก GIF \"{0}\"" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "เลือกว่าจะปิดการมองเห็นคำนี้นานแค่ไหน" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 +msgid "Select language..." +msgstr "กำลังเลือกภาษา..." + +#: src/view/screens/LanguageSettings.tsx:299 +msgid "Select languages" +msgstr "เลือกภาษา" + +#: src/components/ReportDialog/SelectLabelerView.tsx:29 +msgid "Select moderator" +msgstr "เลือกผู้ดูแลระบบ" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select option {i} of {numItems}" +msgstr "เลือกตัวเลือก {i} จาก {numItems}" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 +#~ msgid "Select some accounts below to follow" +#~ msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "เลือกไฟล์ซับไตเติ้ล (.vtt)" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "เลือกอีโมจิ {emojiName} เป็นอวาตาร์ของคุณ" + +#: src/components/ReportDialog/SubmitView.tsx:140 +msgid "Select the moderation service(s) to report to" +msgstr "เลือกบริการผู้ดูแลระบบเพื่อรายงาน" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Select the service that hosts your data." +msgstr "เลือกบริการโฮสต์ข้อมูลของคุณ" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:100 +#~ msgid "Select topical feeds to follow from the list below" +#~ msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 +msgid "Select video" +msgstr "เลือกวีดีโอ" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "เลือกสิ่งที่เนื้อหาสามารถปิดการมองเห็นคำนี้ที่ควรจะทำงาน" + +#: src/screens/Onboarding/StepModeration/index.tsx:63 +#~ msgid "Select what you want to see (or not see), and we’ll handle the rest." +#~ msgstr "" + +#: src/view/screens/LanguageSettings.tsx:281 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "เลือกภาษาที่คุณต้องการให้ฟีดที่คุณติดตามรวมอยู่ หากไม่เลือกภาษาใดๆ จะมีการแสดงภาษาทั้งหมด" + +#: src/view/screens/LanguageSettings.tsx:95 +msgid "Select your app language for the default text to display in the app." +msgstr "เลือกภาษาของแอปเพื่อให้มองเห็นตอนเปิดแอป" + +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Select your date of birth" +msgstr "เลือกเดือนที่เกิด" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +msgid "Select your interests from the options below" +msgstr "เลือกสิ่งที่สนใจจากตัวเลือกด้านบน" + +#: src/view/screens/LanguageSettings.tsx:189 +msgid "Select your preferred language for translations in your feed." +msgstr "เลือกภาษาที่คุณต้องการสำหรับการแปลในฟีดของคุณ" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 +#~ msgid "Select your primary algorithmic feeds" +#~ msgstr "" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 +#~ msgid "Select your secondary algorithmic feeds" +#~ msgstr "" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "ส่งเว็บไซต์ที่น่าสนใจมาให้หน่อย!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "ส่งการยืนยัน" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "ส่งการยืนยันผ่านอีเมล" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 +msgid "Send Confirmation Email" +msgstr "ส่งการยืนยันผ่านอีเมล" + +#: src/view/com/modals/DeleteAccount.tsx:149 +msgid "Send email" +msgstr "ส่งอีเมล" + +#: src/view/com/modals/DeleteAccount.tsx:162 +msgctxt "action" +msgid "Send Email" +msgstr "ส่งอีเมล" + +#: src/view/shell/Drawer.tsx:331 +msgid "Send feedback" +msgstr "ส่งข้อเสนอแนะ" + +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 +msgid "Send message" +msgstr "ส่งข้อความ" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "ส่งโพสต์ถึง..." + +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 +msgid "Send report" +msgstr "ส่งรายงาน" + +#: src/components/ReportDialog/SelectLabelerView.tsx:43 +msgid "Send report to {0}" +msgstr "ส่งรายงานให้ {0}" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 +msgid "Send verification email" +msgstr "ส่งการยืนยันผ่านอีเมล" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +msgid "Send via direct message" +msgstr "ส่งในข้อความส่วนตัว" + +#: src/view/com/modals/DeleteAccount.tsx:151 +msgid "Sends email with confirmation code for account deletion" +msgstr "ส่งโค้ตการยืนยันให้ทางอีเมลเพื่อยืนยันการลบบัญชร" + +#: src/view/com/auth/server-input/index.tsx:111 +msgid "Server address" +msgstr "ที่อยู่เซิร์ฟเวอร์" + +#: src/screens/Moderation/index.tsx:314 +msgid "Set birthdate" +msgstr "ตั้งเดือนเกิด" + +#: src/screens/Login/SetNewPasswordForm.tsx:96 +msgid "Set new password" +msgstr "ตั้งรหัสผ่านใหม่" + +#: src/view/screens/PreferencesFollowingFeed.tsx:121 +msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." +msgstr "ตั้งค่านี้เป็น \"No\" เพื่อซ่อนโพสต์ที่โควททั้งหมดจากฟีดของคุณ ข้อความที่ถูกรีโพสต์จะยังคงแสดงอยู่" + +#: src/view/screens/PreferencesFollowingFeed.tsx:63 +msgid "Set this setting to \"No\" to hide all replies from your feed." +msgstr "ตั้งค่านี้เป็น \"No\" เพื่อซ่อนการตอบกลับทั้งหมดจากฟีตของคุณ" + +#: src/view/screens/PreferencesFollowingFeed.tsx:87 +msgid "Set this setting to \"No\" to hide all reposts from your feed." +msgstr "ตั้งค่านี้เป็น \"No\" เพื่อซ่อนการตอบกลับทั้งหมดจากฟีตของคุณ" + +#: src/view/screens/PreferencesThreads.tsx:116 +msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." +msgstr "ตั้งค่านี้เป็น \"Yes\" เพื่อแสดงคำตอบในรูปแบบเธรด นี่เป็นฟีเจอร์ที่อยู่ในระหว่างทดลองใช้งาน" + +#: src/view/screens/PreferencesFollowingFeed.tsx:157 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "ตั้งค่านี้เป็น \"Yes\" เพื่อแสดงตัวอย่างของฟีดที่คุณบันทึกไว้ในฟีดที่คุณติดตาม นี่เป็นฟีเจอร์ที่อยู่ในระหว่างทดลองใช้งาน" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "ตั้งค่าบัญชีของคุณ" + +#: src/view/com/modals/ChangeHandle.tsx:254 +msgid "Sets Bluesky username" +msgstr "ตั้ง username ของ Bluesky" + +#: src/view/screens/Settings/index.tsx:463 +#~ msgid "Sets color theme to dark" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:456 +#~ msgid "Sets color theme to light" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:450 +#~ msgid "Sets color theme to system setting" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:489 +#~ msgid "Sets dark theme to the dark theme" +#~ msgstr "" + +#: src/view/screens/Settings/index.tsx:482 +#~ msgid "Sets dark theme to the dim theme" +#~ msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "ตั้งอีเมลเพื่อการรีเซตรหัสผ่าน" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:146 +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:136 +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:126 +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" + +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:302 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:555 +#: src/view/shell/Drawer.tsx:556 +msgid "Settings" +msgstr "การตั้งค่า" + +#: src/view/com/modals/SelfLabel.tsx:126 +msgid "Sexual activity or erotic nudity." +msgstr "กิจกรรมทางเพศ หรือการเปลือยที่มีลักษณะทางเพศ" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "การชักชวนทางเพศ" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 +#: src/view/screens/ProfileList.tsx:478 +msgid "Share" +msgstr "แชร์" + +#: src/view/com/lightbox/Lightbox.tsx:176 +msgctxt "action" +msgid "Share" +msgstr "แชร์" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "แชร์สตอรี่สุดเจ๋ง!" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "แชร์เรื่องจริงสนุก ๆ!" + +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +msgid "Share anyway" +msgstr "แชร์ตลอด" + +#: src/view/screens/ProfileFeed.tsx:357 +#: src/view/screens/ProfileFeed.tsx:359 +msgid "Share feed" +msgstr "แชร์ฟีต" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 +#~ msgid "Share image externally" +#~ msgstr "" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:639 +#~ msgid "Share image in post" +#~ msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 +msgid "Share link" +msgstr "แชร์ลิงก์" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Share Link" +msgstr "แชร์ลิงก์" + +#: src/components/StarterPack/ShareDialog.tsx:88 +msgid "Share link dialog" +msgstr "กล่องโต้ตอบแชร์ลิงก์" + +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 +msgid "Share QR code" +msgstr "แชร์รหัส QR" + +#: src/screens/StarterPack/StarterPackScreen.tsx:404 +msgid "Share this starter pack" +msgstr "แชร์สตาร์ทแพ็กนี้" + +#: src/components/StarterPack/ShareDialog.tsx:100 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "แชร์ชุดเริ่มต้นนี้และช่วยให้ผู้คนเข้าร่วมชุมชนของคุณบน Bluesky" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "แชร์ฟีดที่คุณชื่นชอบ!" + +#: src/Navigation.tsx:250 +msgid "Shared Preferences Tester" +msgstr "โปรแกรมทดสอบการตั้งค่าแชร์" + +#: src/view/com/modals/LinkWarning.tsx:92 +msgid "Shares the linked website" +msgstr "แชร์เว็บไซต์ที่เชื่อมโยง" + +#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:122 +#: src/view/screens/Settings/index.tsx:351 +msgid "Show" +msgstr "แสดง" + +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:68 +#~ msgid "Show all replies" +#~ msgstr "" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +msgid "Show alt text" +msgstr "แสดงข้อความแทน" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 +msgid "Show anyway" +msgstr "แสดงอยู่ดี" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "แสดงสัญลักษณ์" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "แสดงสัญลักษณ์และกรองจากฟีด" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:215 +#~ msgid "Show follows similar to {0}" +#~ msgstr "" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show hidden replies" +msgstr "แสดงคำตอบที่ซ่อนอยู่" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +msgid "Show less like this" +msgstr "แสดงน้อยกว่านี้" + +#: src/screens/List/ListHiddenScreen.tsx:172 +msgid "Show list anyway" +msgstr "แสดงลิสต์อยู่ดี" + +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 +msgid "Show More" +msgstr "แสดงเพิ่มเติม" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +msgid "Show more like this" +msgstr "แสดงมากกว่านี้" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show muted replies" +msgstr "แสดงคำตอบที่เงียบไว้" + +#: src/view/screens/PreferencesFollowingFeed.tsx:154 +msgid "Show Posts from My Feeds" +msgstr "แสดงโพสต์จากฟีดของฉัน" + +#: src/view/screens/PreferencesFollowingFeed.tsx:118 +msgid "Show Quote Posts" +msgstr "แสดงโพสต์ที่อ้างอิง" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:119 +#~ msgid "Show quote-posts in Following feed" +#~ msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:135 +#~ msgid "Show quotes in Following" +#~ msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:95 +#~ msgid "Show re-posts in Following feed" +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:60 +msgid "Show Replies" +msgstr "แสดงการตอบกลับ" + +#: src/view/screens/PreferencesThreads.tsx:94 +msgid "Show replies by people you follow before all other replies." +msgstr "แสดงการตอบกลับจากผู้ที่คุณติดตามก่อนการตอบกลับอื่น ๆ" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:87 +#~ msgid "Show replies in Following" +#~ msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:71 +#~ msgid "Show replies in Following feed" +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#~ msgid "Show replies with at least {value} {0}" +#~ msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +msgid "Show reply for everyone" +msgstr "แสดงการตอบกลับสำหรับทุกคน" + +#: src/view/screens/PreferencesFollowingFeed.tsx:84 +msgid "Show Reposts" +msgstr "แสดงการรีโพสต์" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:111 +#~ msgid "Show reposts in Following" +#~ msgstr "" + +#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/PostHider.tsx:79 +msgid "Show the content" +msgstr "แสดงเนื้อหา" + +#: src/view/com/notifications/FeedItem.tsx:347 +#~ msgid "Show users" +#~ msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "แสดงคำเตือน" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "แสดงคำเตือนและกรองจากฟีด" + +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:69 +#: src/view/shell/NavSignupCard.tsx:70 +#: src/view/shell/NavSignupCard.tsx:72 +msgid "Sign in" +msgstr "เข้าสู่ระบบ" + +#: src/components/AccountList.tsx:114 +msgid "Sign in as {0}" +msgstr "เข้าสู่ระบบในชื่อ {0}" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "เข้าสู่ระบบในชื่อ..." + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "เข้าสู่ระบบหรือสร้างบัญชีของคุณเพื่อเข้าร่วมการสนทนา!" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign into Bluesky or create a new account" +msgstr "เข้าสู่ระบบ Bluesky หรือสร้างบัญชีใหม่" + +#: src/view/screens/Settings/index.tsx:432 +msgid "Sign out" +msgstr "ออกจากระบบ" + +#: src/view/screens/Settings/index.tsx:420 +#: src/view/screens/Settings/index.tsx:430 +msgid "Sign out of all accounts" +msgstr "ออกจากระบบทุกบัญชี" + +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:60 +#: src/view/shell/NavSignupCard.tsx:61 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign up" +msgstr "สมัครสมาชิก" + +#: src/view/shell/NavSignupCard.tsx:47 +msgid "Sign up or sign in to join the conversation" +msgstr "สมัครสมาชิกหรือเข้าสู่ระบบเพื่อเข้าร่วมการสนทนา" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "ต้องเข้าสู่ระบบ" + +#: src/view/screens/Settings/index.tsx:361 +msgid "Signed in as" +msgstr "เข้าสู่ระบบในชื่อ" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "เข้าสู่ระบบในชื่อ @{0}" + +#: src/view/com/notifications/FeedItem.tsx:218 +msgid "signed up with your starter pack" +msgstr "สมัครสมาชิกด้วยชุดเริ่มต้นของคุณ" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 +msgid "Signup without a starter pack" +msgstr "สมัครสมาชิกโดยไม่ใช้ชุดเริ่มต้น" + +#: src/components/FeedInterstitials.tsx:316 +msgid "Similar accounts" +msgstr "บัญชีที่คล้ายกัน" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Skip" +msgstr "ข้าม" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "ข้ามขั้นตอนนี้" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "เล็ก" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 +msgid "Software Dev" +msgstr "นักพัฒนาซอฟต์แวร์" + +#: src/components/FeedInterstitials.tsx:447 +msgid "Some other feeds you might like" +msgstr "ฟีดอื่น ๆ ที่คุณอาจชอบ" + +#: src/components/WhoCanReply.tsx:70 +msgid "Some people can reply" +msgstr "บางคนสามารถตอบได้" + +#: src/screens/StarterPack/Wizard/index.tsx:203 +#~ msgid "Some subtitle" +#~ msgstr "" + +#: src/screens/Messages/Conversation.tsx:106 +msgid "Something went wrong" +msgstr "เกิดข้อผิดพลาดบางอย่าง" + +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:115 +#: src/screens/Profile/Sections/Labels.tsx:87 +msgid "Something went wrong, please try again." +msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง." + +#: src/components/Lists.tsx:200 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "เกิดข้อผิดพลาดบางอย่าง!" + +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 +msgid "Sorry! Your session expired. Please log in again." +msgstr "ขออภัย! เซสชันของคุณหมดอายุ กรุณาเข้าสู่ระบบอีกครั้ง." + +#: src/view/screens/PreferencesThreads.tsx:63 +msgid "Sort Replies" +msgstr "จัดเรียงการตอบกลับ" + +#: src/view/screens/PreferencesThreads.tsx:66 +msgid "Sort replies to the same post by:" +msgstr "จัดเรียงการตอบกลับต่อโพสต์เดียวกันตาม :" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "แหล่งที่มา :" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#~ msgid "Source: <0>{0}" +#~ msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "สแปม" + +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "สแปม; การกล่าวถึงหรือการตอบกลับที่มากเกินไป" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 +msgid "Sports" +msgstr "กีฬา" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:145 +#~ msgid "Square" +#~ msgstr "สี่เหลี่ยม" + +#: src/components/dms/dialogs/NewChatDialog.tsx:61 +msgid "Start a new chat" +msgstr "เริ่มแชทใหม่" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 +msgid "Start chat with {displayName}" +msgstr "เริ่มแชทกับ {displayName}" + +#: src/components/dms/MessagesNUX.tsx:161 +#~ msgid "Start chatting" +#~ msgstr "" + +#: src/tours/Tooltip.tsx:99 +#~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +#~ msgstr "" + +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:182 +msgid "Starter Pack" +msgstr "ชุดเริ่มต้น" + +#: src/components/StarterPack/StarterPackCard.tsx:75 +msgid "Starter pack by {0}" +msgstr "ชุดเริ่มต้นโดย {0}" + +#: src/components/StarterPack/StarterPackCard.tsx:74 +msgid "Starter pack by you" +msgstr "ชุดเริ่มต้นโดยคุณ" + +#: src/screens/StarterPack/StarterPackScreen.tsx:703 +msgid "Starter pack is invalid" +msgstr "ชุดเริ่มต้นไม่ถูกต้อง" + +#: src/view/screens/Profile.tsx:224 +msgid "Starter Packs" +msgstr "ชุดเริ่มต้น" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "ชุดเริ่มต้นช่วยให้คุณแชร์ฟีดและผู้คนที่คุณชื่นชอบกับเพื่อนๆ ได้อย่างง่ายดาย" + +#: src/view/screens/Settings/index.tsx:862 +#~ msgid "Status page" +#~ msgstr "หน้าสถานะ" + +#: src/view/screens/Settings/index.tsx:917 +msgid "Status Page" +msgstr "หน้าสถานะ" + +#: src/screens/Signup/index.tsx:145 +#~ msgid "Step" +#~ msgstr "ขั้นตอน" + +#: src/screens/Signup/index.tsx:130 +msgid "Step {0} of {1}" +msgstr "ขั้นตอนที่ {0} จาก {1}" + +#: src/view/screens/Settings/index.tsx:278 +msgid "Storage cleared, you need to restart the app now." +msgstr "ล้างพื้นที่เก็บข้อมูลแล้ว คุณต้องเริ่มแอปใหม่ตอนนี้" + +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:829 +msgid "Storybook" +msgstr "Storybook" + +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "ส่ง" + +#: src/view/screens/ProfileList.tsx:694 +msgid "Subscribe" +msgstr "สมัครสมาชิก" + +#: src/screens/Profile/Sections/Labels.tsx:201 +msgid "Subscribe to @{0} to use these labels:" +msgstr "สมัครสมาชิก @{0} เพื่อใช้ป้ายกำกับเหล่านี้:" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225 +msgid "Subscribe to Labeler" +msgstr "สมัครสมาชิกผู้สร้างป้ายกำกับ" + +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 +#~ msgid "Subscribe to the {0} feed" +#~ msgstr "สมัครสมาชิกฟีด {0}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:191 +msgid "Subscribe to this labeler" +msgstr "สมัครสมาชิกผู้สร้างป้ายกำกับนี้" + +#: src/view/screens/ProfileList.tsx:690 +msgid "Subscribe to this list" +msgstr "สมัครสมาชิกในลิสต์นี้" + +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "สำเร็จ!" + +#: src/view/screens/Search/Explore.tsx:332 +msgid "Suggested accounts" +msgstr "บัญชีที่แนะนำ" + +#: src/view/screens/Search/Search.tsx:425 +#~ msgid "Suggested Follows" +#~ msgstr "" + +#: src/components/FeedInterstitials.tsx:318 +msgid "Suggested for you" +msgstr "แนะนำสำหรับคุณ" + +#: src/view/com/modals/SelfLabel.tsx:96 +msgid "Suggestive" +msgstr "ชี้นำ" + +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:30 +#: src/view/screens/Support.tsx:33 +msgid "Support" +msgstr "สนับสนุน" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "เปลี่ยนบัญชี" + +#: src/tours/HomeTour.tsx:48 +#~ msgid "Switch between feeds to control your experience." +#~ msgstr "สลับระหว่างฟีดเพื่อควบคุมประสบการณ์ของคุณ" + +#: src/view/screens/Settings/index.tsx:130 +msgid "Switch to {0}" +msgstr "เปลี่ยนเป็น {0}" + +#: src/view/screens/Settings/index.tsx:131 +msgid "Switches the account you are logged in to" +msgstr "เปลี่ยนบัญชีที่คุณเข้าสู่ระบบ" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "System" +msgstr "ระบบ" + +#: src/view/screens/Settings/index.tsx:817 +msgid "System log" +msgstr "บันทึกกิจกรรมของระบบ" + +#: src/components/dialogs/MutedWords.tsx:323 +#~ msgid "tag" +#~ msgstr "" + +#: src/components/TagMenu/index.tsx:88 +msgid "Tag menu: {displayTag}" +msgstr "แท็กเมนู : {displayTag}" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "แท็กเท่านั้น" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:135 +#~ msgid "Tall" +#~ msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "กดเพื่อลบ" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 +msgid "Tap to enter full screen" +msgstr "กดเพื่อเต็มหน้าจอ" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 +msgid "Tap to play or pause" +msgstr "กดเพื่อเล่นหรือหยุด" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 +msgid "Tap to toggle sound" +msgstr "กดเพื่อเปิด/ปิดเสียง" + +#: src/view/com/util/images/AutoSizedImage.tsx:219 +#: src/view/com/util/images/AutoSizedImage.tsx:239 +msgid "Tap to view full image" +msgstr "กดเพื่อดูภาพเต็ม" + +#: src/view/com/util/images/AutoSizedImage.tsx:70 +#~ msgid "Tap to view fully" +#~ msgstr "" + +#: src/state/shell/progress-guide.tsx:166 +msgid "Task complete - 10 likes!" +msgstr "ภารกิจสำเร็จ - การกดถูกใจ 10!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "สอนอัลกอริธึมของเราเกี่ยวกับสิ่งที่คุณชอบ" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 +msgid "Tech" +msgstr "เทค" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "เล่าเรื่องตลก" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" +msgstr "เล่าให้เราฟังนิดนึง" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:518 +#~ msgid "Ten Million" +#~ msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:90 +msgid "Terms" +msgstr "เงื่อนไข" + +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:905 +#: src/view/screens/TermsOfService.tsx:29 +#: src/view/shell/Drawer.tsx:284 +msgid "Terms of Service" +msgstr "เงื่อนไขการให้บริการ" + +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "คำที่ใช้ละเมิดมาตรฐานชุมชน" + +#: src/components/dialogs/MutedWords.tsx:323 +#~ msgid "text" +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "ข้อความและแท็ก" + +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "ช่องใส่ข้อความ" + +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "ขอบคุณนะ! อีเมลของคุณได้รับการยืนยันแล้ว" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 +msgid "Thank you. Your report has been sent." +msgstr "เราได้ส่งรายงานของคุณไปแล้ว ขอบคุณ" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:593 +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "ขอบคุณน้า~ คุณได้ยืนยันอีเมลของคุณสำเร็จแล้วจ้า สามารถปิดหน้านี้ได้เลยน้า" + +#: src/view/com/modals/ChangeHandle.tsx:452 +msgid "That contains the following:" +msgstr "ที่มีดังต่อไปนี้ :" + +#: src/screens/Signup/StepHandle.tsx:51 +msgid "That handle is already taken." +msgstr "แฮนเดิ้ลนั้นมีคนใช้ไปแล้ว" + +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:98 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 +#: src/screens/StarterPack/StarterPackScreen.tsx:138 +#: src/screens/StarterPack/Wizard/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:113 +msgid "That starter pack could not be found." +msgstr "หาชุดเริ่มต้นไม่เจอ" + +#: src/view/com/post-thread/PostQuotes.tsx:133 +msgid "That's all, folks!" +msgstr "มีแค่นี้แหละท่านผู้ชม!!" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:265 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "The account will be able to interact with you after unblocking." +msgstr "บัญชีจะสามารถโต้ตอบกับคุณได้หลังจากที่ปลดบล็อกแล้ว" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#~ msgid "the author" +#~ msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "The author of this thread has hidden this reply." +msgstr "ผู้สร้างเธรตได้ซ่อนการตอบกลับนี้" + +#: src/screens/Moderation/index.tsx:366 +msgid "The Bluesky web application" +msgstr "แอป Bluesky" + +#: src/view/screens/CommunityGuidelines.tsx:36 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "แนวทางชุมชนได้ถูกย้ายไปที่ <0/>" + +#: src/view/screens/CopyrightPolicy.tsx:33 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "นโยบายลิขสิทธิ์ได้ถูกย้ายไปที่ <0/>" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "ฟีดที่ค้นพบ" + +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 +msgid "The Discover feed now knows what you like" +msgstr "ฟีดที่ค้นพบตอนนี้รู้ว่าคุณชอบอะไร" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "สัมผัสประสบการณ์ที่ดีกว่าโดยการดาวน์โหลด Bluesky ตอนนี้เลย แล้วเราจะกลับมาในจุดที่คุณค้างไว้" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "ฟีดได้ถูกแทนที่ด้วยสิ่งที่ค้นพบ" + +#: src/components/moderation/LabelsOnMeDialog.tsx:58 +msgid "The following labels were applied to your account." +msgstr "สิ่งที่ตั้งต่อไปนี้ถูกใช้กับบัญชีของคุณ" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your content." +msgstr "สิ่งที่ตั้งต่อไปนี้ถูกใช้กับเนื้อหาของคุณ" + +#: src/screens/Onboarding/Layout.tsx:58 +msgid "The following steps will help customize your Bluesky experience." +msgstr "ขั้นตอนต่อไปนี้จะช่วยปรับแต่งประสบการณ์การใช้งาน Bluesky ของคุณ" + +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 +msgid "The post may have been deleted." +msgstr "โพสต์ถูกลบแล้ว" + +#: src/view/screens/PrivacyPolicy.tsx:33 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "นโยบายความเป็นส่วนตัวได้ถูกย้ายไป <0/>" + +#: src/view/com/composer/state/video.ts:409 +msgid "The selected video is larger than 50MB." +msgstr "วีดีโอที่เลือกมีขนาดใหญ่กว่า 50MB" + +#: src/screens/StarterPack/StarterPackScreen.tsx:713 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "ชุดเริ่มต้นที่คุณพยายามดูไม่ถูกต้อง คุณสามารถลบชุดเริ่มต้นนี้แทนได้" + +#: src/view/screens/Support.tsx:36 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "แบบฟอร์มสนับสนุนได้ถูกย้าย หากคุณต้องการความช่วยเหลือ กรุณา <0/> หรือเยี่ยมชม {HELP_DESK_URL} เพื่อติดต่อเรา" + +#: src/view/screens/TermsOfService.tsx:33 +msgid "The Terms of Service have been moved to" +msgstr "เงื่อนไขการให้บริการได้ถูกย้ายไปยัง" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "รหัสยืนยันที่คุณให้มานั้นไม่ถูกต้อง กรุณาตรวจสอบให้แน่ใจว่าคุณได้ใช้ลิงก์ยืนยันที่ถูกต้องหรือขอรหัสใหม่อีกครั้ง" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "ธีม" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 +#~ msgid "There are many feeds to try:" +#~ msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "ยังไม่มีเวลาจำกัดสำหรับการปิดใช้งานบัญชี คุณสามารถกลับมาได้ตลอดเวลา" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +msgid "There was an an issue contacting the server, please check your internet connection and try again." +msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an an issue removing this feed. Please check your internet connection and try again." +msgstr "เกิดปัญหาในการลบฟีดนี้ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:204 +msgid "There was an an issue updating your feeds, please check your internet connection and try again." +msgstr "เกิดปัญหาในการอัปเดตฟีดของคุณ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + +#: src/components/dialogs/GifSelect.tsx:225 +msgid "There was an issue connecting to Tenor." +msgstr "เกิดปัญหาในการเชื่อมต่อกับ Tenor" + +#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#~ msgid "There was an issue connecting to the chat." +#~ msgstr "" + +#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileList.tsx:360 +#: src/view/screens/ProfileList.tsx:379 +#: src/view/screens/SavedFeeds.tsx:85 +msgid "There was an issue contacting the server" +msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 +msgid "There was an issue contacting your server" +msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" + +#: src/view/com/notifications/Feed.tsx:129 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "เกิดปัญหาในการดึงการแจ้งเตือน คลิกที่นี่เพื่อลองอีกครั้ง" + +#: src/view/com/posts/Feed.tsx:473 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง" + +#: src/view/com/lists/ListMembers.tsx:169 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "เกิดปัญหาในการดึงลิสต์ คลิกที่นี่เพื่อลองอีกครั้ง" + +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "เกิดปัญหาในการดึงลิสต์ของคุณ คลิกที่นี่เพื่อลองอีกครั้ง" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "เกิดปัญหาในการส่งคำรายงานของคุณ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ต" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 +#~ msgid "There was an issue syncing your preferences with the server" +#~ msgstr "" + +#: src/view/screens/AppPasswords.tsx:66 +msgid "There was an issue with fetching your app passwords" +msgstr "เกิดปัญหาในการดึงรหัสผ่านแอปของคุณ" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:133 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 +msgid "There was an issue! {0}" +msgstr "เกิดปัญหาที่ {0}!" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:391 +#: src/view/screens/ProfileList.tsx:404 +#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:430 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "เกิดปัญหาการเชื่อมต่อ กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "เกิดปัญหาไม่คาดคิดในแอปพลิเคชัน กรุณาแจ้งให้เราทราบหากเกิดสิ่งนี้ขึ้นกับคุณ!" + +#: src/screens/SignupQueued.tsx:112 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "มีผู้ใช้ใหม่เข้ามาที่ Bluesky เป็นจำนวนมาก! เราจะรีบเปิดใช้งานบัญชีของคุณอย่างเร็วที่สุด" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 +#~ msgid "These are popular accounts you might like:" +#~ msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "หน้าจอ {screenDescription} นี้ถูกแจ้งเตือน : " + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "บัญชีนี้ได้ร้องขอให้ผู้ใช้ลงชื่อเข้าใช้เพื่อดูโปรไฟล์ของตน" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "บัญชีนี้ถูกบล็อกโดยหนึ่งหรือมากกว่าบัญชีการควบคุมของคุณ เพื่อปลดบล็อก กรุณาเข้าไปที่บัญชีเหล่านั้นโดยตรงและลบผู้ใช้นี้ออก" + +#: src/components/moderation/LabelsOnMeDialog.tsx:260 +#~ msgid "This appeal will be sent to <0>{0}." +#~ msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "คำร้องนี้จะถูกส่งไปยัง <0>{sourceName}" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "คำร้องนี้จะถูกส่งไปยังบริการการควบคุมของ Bluesky" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "แชทนี้ไม่สามารถเชื่อมต่อได้" + +#: src/screens/Messages/Conversation/MessageListError.tsx:26 +#~ msgid "This chat was disconnected due to a network error." +#~ msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "เนื้อหานี้ถูกซ่อนโดยผู้พัฒนา" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:266 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:92 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:120 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:59 +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:729 +#~ msgid "This feed is empty!" +#~ msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:37 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:471 +#: src/view/screens/ProfileList.tsx:779 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:40 +msgid "This information is not shared with other users." +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:127 +msgid "This is important in case you ever need to change your email or reset your password." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#~ msgid "This label was applied by {0}." +#~ msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 +msgid "This label was applied by <0>{0}." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:146 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:165 +#~ msgid "This label was applied by you" +#~ msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:188 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/view/com/modals/LinkWarning.tsx:72 +msgid "This link is taking you to the following website:" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:136 +msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/view/screens/ProfileList.tsx:957 +msgid "This list is empty!" +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:110 +msgid "This name is already in use" +msgstr "" + +#: src/view/com/post-thread/PostThreadItem.tsx:139 +msgid "This post has been deleted." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#~ msgid "This post will be hidden from feeds." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:406 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:37 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:432 +msgid "This should create a domain record at:" +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:96 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:60 +msgid "This user has blocked you" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:58 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:90 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:96 +msgid "This user isn't following anyone." +msgstr "" + +#: src/view/com/modals/SelfLabel.tsx:137 +#~ msgid "This warning is only available for posts with media attached." +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "นี่จะลบ \"{0}\" ออกจากคำที่คุณปิดเสียง คุณสามารถเพิ่มกลับได้เสมอในภายหลัง" + +#: src/components/dialogs/MutedWords.tsx:283 +#~ msgid "This will delete {0} from your muted words. You can always add it back later." +#~ msgstr "นี่จะลบ {0} ออกจากคำที่คุณปิดเสียง คุณสามารถเพิ่มกลับได้เสมอในภายหลัง" + +#: src/view/com/util/AccountDropdownBtn.tsx:55 +msgid "This will remove @{0} from the quick access list." +msgstr "นี่จะลบ @{0} ออกจากลิสต์เข้าถึงด่วน" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "นี่จะลบโพสต์ของคุณออกจากโพสต์อ้างอิงนี้สำหรับผู้ใช้ทุกคน และแทนที่ด้วยข้อความแทน" + +#: src/view/screens/Settings/index.tsx:560 +msgid "Thread preferences" +msgstr "การตั้งค่าเธรด" + +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:570 +msgid "Thread Preferences" +msgstr "การตั้งค่าเธรด" + +#: src/components/WhoCanReply.tsx:109 +#~ msgid "Thread settings updated" +#~ msgstr "" + +#: src/view/screens/PreferencesThreads.tsx:113 +msgid "Threaded Mode" +msgstr "" + +#: src/Navigation.tsx:303 +msgid "Threads Preferences" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#: src/components/dms/ReportConversationPrompt.tsx:20 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 +msgid "To upload videos to Bluesky, you must first verify your email." +msgstr "" + +#: src/components/ReportDialog/SelectLabelerView.tsx:32 +msgid "To whom would you like to send this report?" +msgstr "" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "" + +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + +#: src/components/dialogs/MutedWords.tsx:112 +#~ msgid "Toggle between muted word options." +#~ msgstr "" + +#: src/view/com/util/forms/DropdownButton.tsx:255 +msgid "Toggle dropdown" +msgstr "" + +#: src/screens/Moderation/index.tsx:343 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/view/screens/Search/Search.tsx:509 +msgid "Top" +msgstr "" + +#: src/view/com/modals/EditImage.tsx:272 +#~ msgid "Transformations" +#~ msgstr "" + +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +msgid "Translate" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:82 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/screens/Onboarding/state.ts:102 +msgid "TV" +msgstr "" + +#: src/view/screens/Settings/index.tsx:711 +msgid "Two-factor authentication" +msgstr "การยืนยันด้วยสองขั้นตอน" + +#: src/screens/Messages/components/MessageInput.tsx:141 +msgid "Type your message here" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:415 +msgid "Type:" +msgstr "" + +#: src/view/screens/ProfileList.tsx:585 +msgid "Un-block list" +msgstr "" + +#: src/view/screens/ProfileList.tsx:570 +msgid "Un-mute list" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "ไม่สามารถติดต่อบริการของคุณได้ โปรดตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Unable to delete" +msgstr "ไม่สามารถลบได้" + +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:676 +msgid "Unblock" +msgstr "ปลดบล็อก" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 +msgctxt "action" +msgid "Unblock" +msgstr "ปลดบล็อก" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Unblock account" +msgstr "ปลดบล็อกบัญชี" + +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 +msgid "Unblock Account" +msgstr "ปลดบล็อกบัญชี" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:263 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Unblock Account?" +msgstr "ปลดบล็อกบัญชีหรือไม่?" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Undo repost" +msgstr "ยกเลิกการแชร์ซ้ำ" + +#: src/view/com/profile/FollowButton.tsx:61 +msgctxt "action" +msgid "Unfollow" +msgstr "เลิกติดตาม" + +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 +#~ msgid "Unfollow" +#~ msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 +msgid "Unfollow {0}" +msgstr "เลิกติดตาม {0}" + +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 +msgid "Unfollow Account" +msgstr "เลิกติดตามบัญชี" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:197 +#~ msgid "Unlike" +#~ msgstr "" + +#: src/view/screens/ProfileFeed.tsx:569 +msgid "Unlike this feed" +msgstr "เลิกชอบฟีดนี้" + +#: src/components/TagMenu/index.tsx:262 +#: src/view/screens/ProfileList.tsx:683 +msgid "Unmute" +msgstr "เปิดเสียง" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "เปิดเสียง" + +#: src/components/TagMenu/index.web.tsx:115 +msgid "Unmute {truncatedTag}" +msgstr "เปิดเสียง {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 +msgid "Unmute Account" +msgstr "เปิดเสียงบัญชี" + +#: src/components/TagMenu/index.tsx:218 +msgid "Unmute all {displayTag} posts" +msgstr "เปิดเสียงโพสต์ทั้งหมดของ {displayTag}" + +#: src/components/dms/ConvoMenu.tsx:176 +msgid "Unmute conversation" +msgstr "เปิดเสียงการสนทนา" + +#: src/components/dms/ConvoMenu.tsx:140 +#~ msgid "Unmute notifications" +#~ msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +msgid "Unmute thread" +msgstr "เปิดเสียงกระทู้" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Unmute video" +msgstr "เปิดเสียงวิดีโอ" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#~ msgid "Unmuted" +#~ msgstr "" + +#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileList.tsx:667 +msgid "Unpin" +msgstr "เลิกปักหมุด" + +#: src/view/screens/ProfileFeed.tsx:286 +msgid "Unpin from home" +msgstr "เลิกปักหมุดจากหน้าแรก" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "เลิกปักหมุดจากโปรไฟล์" + +#: src/view/screens/ProfileList.tsx:550 +msgid "Unpin moderation list" +msgstr "เลิกปักหมุดจากลิสต์การModerate" + +#: src/view/screens/ProfileList.tsx:347 +msgid "Unpinned from your feeds" +msgstr "เลิกปักหมุดจากฟีดของคุณ" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223 +msgid "Unsubscribe" +msgstr "เลิกสมัครรับข้อมูล" + +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 +msgid "Unsubscribe from list" +msgstr "เลิกสมัครรับข้อมูลจากลิสต์" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:190 +msgid "Unsubscribe from this labeler" +msgstr "เลิกสมัครรับข้อมูลจากผู้ทำฉลากนี้" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 +msgid "Unsupported video type: {mimeType}" +msgstr "ประเภทวิดีโอที่ไม่รองรับ: {mimeType}" + +#: src/lib/moderation/useReportOptions.ts:85 +#~ msgid "Unwanted sexual content" +#~ msgstr "" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "เนื้อหาทางเพศที่ไม่พึงประสงค์" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +#~ msgid "Update {displayName} in Lists" +#~ msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "อัปเดต <0>{displayName} ในลิสต์" + +#: src/view/com/modals/ChangeHandle.tsx:495 +msgid "Update to {handle}" +msgstr "อัปเดตเป็น {handle}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +msgid "Updating quote attachment failed" +msgstr "การอัปเดตไฟล์แนบคำคมล้มเหลว" + + +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +msgid "Updating reply visibility failed" +msgstr "การอัปเดตการมองเห็นการตอบกลับล้มเหลว" + +#: src/screens/Login/SetNewPasswordForm.tsx:180 +msgid "Updating..." +msgstr "กำลังอัปเดต..." + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Upload a photo instead" +msgstr "อัปโหลดรูปภาพแทน" + +#: src/view/com/modals/ChangeHandle.tsx:441 +msgid "Upload a text file to:" +msgstr "อัปโหลดไฟล์ข้อความไปที่:" + +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 +#: src/view/com/util/UserBanner.tsx:126 +msgid "Upload from Camera" +msgstr "อัปโหลดจากกล้อง" + +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 +msgid "Upload from Files" +msgstr "อัปโหลดจากไฟล์" + +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 +msgid "Upload from Library" +msgstr "อัปโหลดจากไลบรารี" + +#: src/view/com/modals/ChangeHandle.tsx:395 +msgid "Use a file on your server" +msgstr "ใช้ไฟล์บนเซิร์ฟเวอร์ของคุณ" + +#: src/view/screens/AppPasswords.tsx:196 +msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." +msgstr "ใช้รหัสผ่านแอปในการลงชื่อเข้าใช้ลูกค้า Bluesky อื่นโดยไม่ต้องให้การเข้าถึงบัญชีหรือรหัสผ่านของคุณเต็มรูปแบบ" + +#: src/view/com/modals/ChangeHandle.tsx:506 +msgid "Use bsky.social as hosting provider" +msgstr "ใช้ bsky.social เป็นผู้ให้บริการโฮสติ้ง" + +#: src/view/com/modals/ChangeHandle.tsx:505 +msgid "Use default provider" +msgstr "ใช้ผู้ให้บริการเริ่มต้น" + +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 +msgid "Use in-app browser" +msgstr "ใช้เบราว์เซอร์ในแอป" + +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 +msgid "Use my default browser" +msgstr "ใช้เบราว์เซอร์เริ่มต้นของฉัน" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "ใช้ที่แนะนำ" + +#: src/view/com/modals/ChangeHandle.tsx:387 +msgid "Use the DNS panel" +msgstr "ใช้แผง DNS" + +#: src/view/com/modals/AddAppPasswords.tsx:206 +msgid "Use this to sign into the other app along with your handle." +msgstr "ใช้สิ่งนี้ในการลงชื่อเข้าใช้แอปอื่นพร้อมกับแฮนด์ของคุณ" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "ถูกใช้โดย:" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 +msgid "User Blocked" +msgstr "ผู้ใช้ถูกบล็อก" + +#: src/lib/moderation/useModerationCauseDescription.ts:53 +msgid "User Blocked by \"{0}\"" +msgstr "ผู้ใช้ถูกบล็อกโดย \"{0}\"" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "ผู้ใช้ที่ถูกบล็อกโดยลิสต์" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +msgid "User Blocked by List" +msgstr "ผู้ใช้ถูกบล็อกโดยลิสต์" + +#: src/lib/moderation/useModerationCauseDescription.ts:71 +msgid "User Blocking You" +msgstr "ผู้ใช้ที่บล็อกคุณ" + +#: src/components/moderation/ModerationDetailsDialog.tsx:76 +msgid "User Blocks You" +msgstr "ผู้ใช้บล็อกคุณ" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "ลิสต์ผู้ใช้โดย {0}" + +#: src/view/screens/ProfileList.tsx:881 +msgid "User list by <0/>" +msgstr "ลิสต์ผู้ใช้โดย <0/>" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:879 +msgid "User list by you" +msgstr "ลิสต์ผู้ใช้โดยคุณ" + +#: src/view/com/modals/CreateOrEditList.tsx:176 +msgid "User list created" +msgstr "ลิสต์ผู้ใช้ถูกสร้าง" + +#: src/view/com/modals/CreateOrEditList.tsx:162 +msgid "User list updated" +msgstr "ลิสต์ผู้ใช้ถูกปรับปรุง" + +#: src/view/screens/Lists.tsx:65 +msgid "User Lists" +msgstr "ลิสต์ผู้ใช้" + +#: src/screens/Login/LoginForm.tsx:183 +msgid "Username or email address" +msgstr "ชื่อผู้ใช้หรือที่อยู่อีเมล" + +#: src/view/screens/ProfileList.tsx:915 +msgid "Users" +msgstr "ผู้ใช้" + + +#: src/components/WhoCanReply.tsx:280 +#~ msgid "users followed by <0/>" +#~ msgstr "" + +#: src/components/WhoCanReply.tsx:258 +msgid "users followed by <0>@{0}" +msgstr "ผู้ใช้ที่ติดตามโดย <0>@{0}" + +#: src/screens/Messages/Settings.tsx:84 +#: src/screens/Messages/Settings.tsx:87 +msgid "Users I follow" +msgstr "ผู้ใช้ที่ฉันติดตาม" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 +msgid "Users in \"{0}\"" +msgstr "ผู้ใช้ใน \"{0}\"" + +#: src/components/LikesDialog.tsx:83 +msgid "Users that have liked this content or profile" +msgstr "ผู้ใช้ที่ถูกใจเนื้อหาหรือโปรไฟล์นี้" + +#: src/view/com/modals/ChangeHandle.tsx:423 +msgid "Value:" +msgstr "ค่า:" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 +msgid "Verified email required" +msgstr "ต้องใช้ที่อยู่อีเมลที่ตรวจสอบแล้ว" + +#: src/view/com/modals/ChangeHandle.tsx:510 +#~ msgid "Verify {0}" +#~ msgstr "ตรวจสอบ {0}" + +#: src/view/com/modals/ChangeHandle.tsx:497 +msgid "Verify DNS Record" +msgstr "ตรวจสอบระเบียน DNS" + +#: src/view/screens/Settings/index.tsx:936 +msgid "Verify email" +msgstr "ตรวจสอบอีเมล" + +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "กล่องโต้ตอบตรวจสอบอีเมล" + +#: src/view/screens/Settings/index.tsx:961 +msgid "Verify my email" +msgstr "ตรวจสอบอีเมลของฉัน" + +#: src/view/screens/Settings/index.tsx:970 +msgid "Verify My Email" +msgstr "ตรวจสอบอีเมลของฉัน" + +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 +msgid "Verify New Email" +msgstr "ตรวจสอบอีเมลใหม่" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 +msgid "Verify now" +msgstr "ตรวจสอบตอนนี้" + +#: src/view/com/modals/ChangeHandle.tsx:498 +msgid "Verify Text File" +msgstr "ตรวจสอบไฟล์ข้อความ" + +#: src/components/dialogs/VerifyEmailDialog.tsx:71 +#: src/view/com/modals/VerifyEmail.tsx:111 +msgid "Verify Your Email" +msgstr "ตรวจสอบอีเมลของคุณ" + +#: src/view/screens/Settings/index.tsx:852 +#~ msgid "Version {0}" +#~ msgstr "เวอร์ชัน {0}" + +#: src/view/screens/Settings/index.tsx:889 +msgid "Version {appVersion} {bundleInfo}" +msgstr "เวอร์ชัน {appVersion} {bundleInfo}" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +msgid "Video" +msgstr "วิดีโอ" + +#: src/view/com/composer/state/video.ts:372 +msgid "Video failed to process" +msgstr "การประมวลผลวิดีโอไม่สำเร็จ" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 +msgid "Video Games" +msgstr "เกมวิดีโอ" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 +msgid "Video not found." +msgstr "ไม่พบวิดีโอ" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 +msgid "Video settings" +msgstr "การตั้งค่าวิดีโอ" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +msgid "Video: {0}" +msgstr "วิดีโอ: {0}" + +#: src/view/com/composer/videos/state.ts:27 +#~ msgid "Videos cannot be larger than 50MB" +#~ msgstr "วิดีโอไม่สามารถมีขนาดใหญ่กว่า 50MB" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 +msgid "Videos must be less than 60 seconds long" +msgstr "วิดีโอจะต้องมีความยาวไม่เกิน 60 วินาที" + +#: src/screens/Profile/Header/Shell.tsx:128 +msgid "View {0}'s avatar" +msgstr "ดูอวตาร์ของ {0}" + +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:273 +msgid "View {0}'s profile" +msgstr "ดูโปรไฟล์ของ {0}" + +#: src/components/dms/MessagesListHeader.tsx:160 +msgid "View {displayName}'s profile" +msgstr "ดูโปรไฟล์ของ {displayName}" + +#: src/components/ProfileHoverCard/index.web.tsx:433 +msgid "View blocked user's profile" +msgstr "ดูโปรไฟล์ของผู้ใช้ที่ถูกบล็อก" + +#: src/view/screens/Settings/ExportCarDialog.tsx:96 +msgid "View blogpost for more details" +msgstr "ดูบล็อกโพสต์สำหรับรายละเอียดเพิ่มเติม" + +#: src/view/screens/Log.tsx:56 +msgid "View debug entry" +msgstr "ดูลิสต์ดีบัก" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:139 +msgid "View details" +msgstr "ดูรายละเอียด" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:134 +msgid "View details for reporting a copyright violation" +msgstr "ดูรายละเอียดสำหรับการรายงานการละเมิดลิขสิทธิ์" + +#: src/view/com/posts/FeedSlice.tsx:136 +msgid "View full thread" +msgstr "ดูเธรดเต็ม" + +#: src/components/moderation/LabelsOnMe.tsx:47 +msgid "View information about these labels" +msgstr "ดูข้อมูลเกี่ยวกับป้ายกำกับเหล่านี้" + +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 +msgid "View profile" +msgstr "ดูโปรไฟล์" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 +msgid "View the avatar" +msgstr "ดูอวตาร์" + +#: src/components/LabelingServiceCard/index.tsx:162 +msgid "View the labeling service provided by @{0}" +msgstr "ดูบริการติดป้ายกำกับที่จัดทำโดย @{0}" + +#: src/view/screens/ProfileFeed.tsx:581 +msgid "View users who like this feed" +msgstr "ดูผู้ใช้ที่ชอบฟีดนี้" + +#: src/screens/Moderation/index.tsx:272 +msgid "View your blocked accounts" +msgstr "ดูบัญชีที่คุณบล็อก" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "ดูฟีดของคุณและสำรวจเพิ่มเติม" + +#: src/screens/Moderation/index.tsx:242 +msgid "View your moderation lists" +msgstr "ดูลิสต์การModeration ของคุณ" + +#: src/screens/Moderation/index.tsx:257 +msgid "View your muted accounts" +msgstr "ดูบัญชีที่คุณปิดเสียง" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Visit Site" +msgstr "เยี่ยมชมเว็บไซต์" + +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "เตือน" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "เตือนเนื้อหา" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "เตือนเนื้อหาและกรองจากฟีด" + +#: src/screens/Hashtag.tsx:217 +msgid "We couldn't find any results for that hashtag." +msgstr "เราไม่สามารถค้นหาผลลัพธ์ใดๆ สำหรับแฮชแท็กนั้นได้." + +#: src/screens/Messages/Conversation.tsx:107 +msgid "We couldn't load this conversation" +msgstr "เราไม่สามารถโหลดการสนทนานี้ได้" + +#: src/screens/SignupQueued.tsx:139 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "เราประเมินว่าใช้เวลา {estimatedTime} จนกว่าบัญชีของคุณจะพร้อม." + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "เราได้ส่งอีเมลยืนยันอีกฉบับไปยัง <0>{0}." + +#: src/screens/Onboarding/StepFinished.tsx:229 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "เราหวังว่าคุณจะมีช่วงเวลาที่ดีเยี่ยม จำไว้ว่า Bluesky คือ:" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "เราหมดโพสต์จากผู้ติดตามของคุณแล้ว นี่คือโพสต์ล่าสุดจาก <0/>." + +#: src/components/dialogs/MutedWords.tsx:203 +#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +#~ msgstr "เราแนะนำให้หลีกเลี่ยงคำที่พบบ่อยซึ่งปรากฏในหลายโพสต์ เนื่องจากอาจทำให้ไม่มีโพสต์แสดง." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 +#~ msgid "We recommend our \"Discover\" feed:" +#~ msgstr "เราแนะนำฟีด \"ค้นพบ\" ของเรา:" + +#: src/view/com/composer/state/video.ts:431 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "เราไม่สามารถกำหนดได้ว่าคุณได้รับอนุญาตให้อัปโหลดวิดีโอหรือไม่ กรุณาลองอีกครั้ง." + +#: src/components/dialogs/BirthDateSettings.tsx:51 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "เราไม่สามารถโหลดการตั้งค่าวันเกิดของคุณได้ กรุณาลองอีกครั้ง." + +#: src/screens/Moderation/index.tsx:417 +msgid "We were unable to load your configured labelers at this time." +msgstr "เราไม่สามารถโหลดผู้ติดป้ายที่คุณกำหนดไว้ในขณะนี้ได้." + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "เราไม่สามารถเชื่อมต่อได้ กรุณาลองอีกครั้งเพื่อดำเนินการตั้งค่าบัญชีของคุณ หากยังไม่สามารถเชื่อมต่อได้ คุณสามารถข้ามขั้นตอนนี้ได้." + +#: src/screens/SignupQueued.tsx:143 +msgid "We will let you know when your account is ready." +msgstr "เราจะแจ้งให้คุณทราบเมื่อบัญชีของคุณพร้อมใช้งาน" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "เราจะใช้สิ่งนี้เพื่อช่วยปรับแต่งประสบการณ์ของคุณ" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 +msgid "We're having network issues, try again" +msgstr "เรากำลังประสบปัญหาเครือข่าย โปรดลองอีกครั้ง" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "เรากำลังแนะนำฟอนต์ธีมใหม่พร้อมการปรับขนาดฟอนต์ได้" + +#: src/screens/Signup/index.tsx:94 +msgid "We're so excited to have you join us!" +msgstr "เราตื่นเต้นมากที่คุณมาร่วมกับเรา!" + +#: src/view/screens/ProfileList.tsx:104 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "ขออภัย เราไม่สามารถแก้ไขลิสต์นี้ได้ หากปัญหายังคงอยู่ กรุณาติดต่อผู้สร้างลิสต์ @{handleOrDid}" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "ขออภัย เราไม่สามารถโหลดคำที่คุณปิดเสียงในขณะนี้ โปรดลองอีกครั้ง" + +#: src/view/screens/Search/Search.tsx:211 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "ขออภัย การค้นหาของคุณไม่สามารถเสร็จสมบูรณ์ได้ โปรดลองอีกครั้งในไม่กี่นาที" + +#: src/view/com/composer/Composer.tsx:403 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว" + +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:48 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "เราขอโทษ! เราไม่สามารถค้นหาหน้าที่ยังมีอยู่ที่คุณต้องการได้." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." +#~ msgstr "เราขอโทษ! คุณสามารถสมัครสมาชิกได้เพียงสิบผู้ติดป้าย และคุณได้ถึงขีดจำกัดสิบแล้ว." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:328 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "เราขอโทษ! คุณสามารถสมัครสมาชิกได้เพียงยี่สิบผู้ติดป้าย และคุณได้ถึงขีดจำกัดยี่สิบแล้ว." + +#: src/screens/Deactivated.tsx:128 +msgid "Welcome back!" +msgstr "ยินดีต้อนรับกลับ!" + +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 +#~ msgid "Welcome to <0>Bluesky" +#~ msgstr "ยินดีต้อนรับสู่ <0>Bluesky" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "ยินดีต้อนรับเพื่อน!" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "ความสนใจของคุณคืออะไร?" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:42 +msgid "What do you want to call your starter pack?" +msgstr "คุณต้องการตั้งชื่อชุดเริ่มต้นของคุณว่าอะไร?" + +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:490 +msgid "What's up?" +msgstr "มีอะไรใหม่?" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 +msgid "Which languages are used in this post?" +msgstr "โพสต์นี้ใช้ภาษาอะไรบ้าง?" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "คุณต้องการเห็นภาษาอะไรในฟีดอัลกอริธึมของคุณ?" + +#: src/components/WhoCanReply.tsx:179 +msgid "Who can interact with this post?" +msgstr "ใครสามารถมีปฏิสัมพันธ์กับโพสต์นี้ได้บ้าง?" + +#: src/components/dms/MessagesNUX.tsx:110 +#: src/components/dms/MessagesNUX.tsx:124 +#~ msgid "Who can message you?" +#~ msgstr "ใครสามารถส่งข้อความหาคุณได้?" + +#: src/components/WhoCanReply.tsx:87 +msgid "Who can reply" +msgstr "ใครสามารถตอบได้" + +#: src/components/WhoCanReply.tsx:212 +#~ msgid "Who can reply dialog" +#~ msgstr "ใครสามารถตอบได้" + +#: src/components/WhoCanReply.tsx:216 +#~ msgid "Who can reply?" +#~ msgstr "ใครสามารถตอบ?" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:182 +msgid "Whoops!" +msgstr "อุ๊ย!" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:44 +msgid "Why should this content be reviewed?" +msgstr "ทำไมเนื้อหานี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Why should this feed be reviewed?" +msgstr "ทำไมฟีดนี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Why should this list be reviewed?" +msgstr "ทำไมลิสต์นี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:63 +msgid "Why should this message be reviewed?" +msgstr "ทำไมข้อความนี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Why should this post be reviewed?" +msgstr "ทำไมโพสต์นี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Why should this starter pack be reviewed?" +msgstr "ทำไมชุดเริ่มต้นนี้จึงควรได้รับการตรวจสอบ?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Why should this user be reviewed?" +msgstr "ทำไมผู้ใช้คนนี้จึงควรได้รับการตรวจสอบ?" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:125 +#~ msgid "Wide" +#~ msgstr "กว้าง" + +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 +msgid "Write a message" +msgstr "เขียนข้อความ" + +#: src/view/com/composer/Composer.tsx:662 +msgid "Write post" +msgstr "เขียนโพสต์" + +#: src/view/com/composer/Composer.tsx:489 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:75 +msgid "Write your reply" +msgstr "เขียนคำตอบของคุณ" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 +msgid "Writers" +msgstr "นักเขียน" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:167 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 +msgid "Yes" +msgstr "ใช่" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "ใช่, ปิดการใช้งาน" + +#: src/screens/StarterPack/StarterPackScreen.tsx:649 +msgid "Yes, delete this starter pack" +msgstr "ใช่, ลบชุดเริ่มต้นนี้" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +msgid "Yes, detach" +msgstr "ใช่, แยกออก" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +msgid "Yes, hide" +msgstr "ใช่, ซ่อน" + +#: src/screens/Deactivated.tsx:150 +msgid "Yes, reactivate my account" +msgstr "ใช่, เปิดใช้งานบัญชีของฉันอีกครั้ง" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "เมื่อวาน" + +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "เมื่อวาน, {time}" + +#: src/screens/List/ListHiddenScreen.tsx:140 +msgid "you" +msgstr "คุณ" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "คุณ" + +#: src/screens/SignupQueued.tsx:136 +msgid "You are in line." +msgstr "คุณอยู่ในคิว." + +#: src/view/com/composer/state/video.ts:424 +msgid "You are not allowed to upload videos." +msgstr "คุณไม่ได้รับอนุญาตให้อัปโหลดวิดีโอ." + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "You are not following anyone." +msgstr "คุณไม่ได้ติดตามใครเลย." + +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "คุณสามารถปรับเหล่านี้ในการตั้งค่าลักษณะของคุณได้ในภายหลัง." + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "คุณยังสามารถค้นพบฟีดแบบกำหนดเองใหม่ ๆ ที่จะติดตามได้." + +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "คุณยังสามารถปิดการใช้งานบัญชีของคุณชั่วคราวได้แทน และเปิดใช้งานอีกครั้งเมื่อใดก็ได้." + +#: src/screens/Onboarding/StepFollowingFeed.tsx:143 +#~ msgid "You can change these settings later." +#~ msgstr "" + +#: src/components/dms/MessagesNUX.tsx:119 +#~ msgid "You can change this at any time." +#~ msgstr "" + +#: src/screens/Messages/Settings.tsx:111 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "คุณสามารถดำเนินการสนทนาที่กำลังดำเนินอยู่ต่อไปได้ไม่ว่าจะเลือกการตั้งค่าใด" + +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +msgid "You can now sign in with your new password." +msgstr "คุณสามารถลงชื่อเข้าใช้ด้วยรหัสผ่านใหม่ของคุณได้แล้ว" + +#: src/screens/Deactivated.tsx:136 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งเพื่อดำเนินการลงชื่อเข้าใช้ บัญชีและโพสต์ของคุณจะมองเห็นได้โดยผู้ใช้คนอื่น" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "You do not have any followers." +msgstr "คุณไม่มีผู้ติดตาม" + +#: src/screens/Profile/KnownFollowers.tsx:99 +msgid "You don't follow any users who follow @{name}." +msgstr "คุณไม่ได้ติดตามผู้ใช้ที่ติดตาม @{name}." + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "คุณยังไม่มีรหัสเชิญ! เราจะส่งรหัสให้คุณเมื่อคุณอยู่ใน Bluesky นานขึ้นอีกนิด." + +#: src/view/screens/SavedFeeds.tsx:145 +msgid "You don't have any pinned feeds." +msgstr "คุณยังไม่มีฟีดที่ติดหมุด." + +#: src/view/screens/Feeds.tsx:477 +#~ msgid "You don't have any saved feeds!" +#~ msgstr "" + +#: src/view/screens/SavedFeeds.tsx:186 +msgid "You don't have any saved feeds." +msgstr "คุณยังไม่มีฟีดที่บันทึก." + +#: src/view/com/post-thread/PostThread.tsx:214 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "คุณได้บล็อกผู้เขียนหรือคุณถูกผู้เขียนบล็อก." + +#: src/components/dms/MessagesListBlockedFooter.tsx:58 +msgid "You have blocked this user" +msgstr "คุณได้บล็อกผู้ใช้คนนี้" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "You have blocked this user. You cannot view their content." +msgstr "คุณได้บล็อกผู้ใช้คนนี้ คุณไม่สามารถดูเนื้อหาของเขาได้." + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "คุณได้ป้อนรหัสที่ไม่ถูกต้อง มันควรมีลักษณะเป็น XXXXX-XXXXX" + +#: src/lib/moderation/useModerationCauseDescription.ts:114 +msgid "You have hidden this post" +msgstr "คุณได้ซ่อนโพสต์นี้" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +msgid "You have hidden this post." +msgstr "คุณได้ซ่อนโพสต์นี้แล้ว" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 +msgid "You have muted this account." +msgstr "คุณได้ปิดเสียงบัญชีนี้" + +#: src/lib/moderation/useModerationCauseDescription.ts:91 +msgid "You have muted this user" +msgstr "คุณได้ปิดเสียงผู้ใช้คนนี้" + +#: src/screens/Messages/ChatList.tsx:222 +msgid "You have no conversations yet. Start one!" +msgstr "คุณยังไม่มีการสนทนาเริ่มต้น! เริ่มต้นหนึ่งเลย!" + +#: src/view/com/feeds/ProfileFeedgens.tsx:138 +msgid "You have no feeds." +msgstr "คุณไม่มีฟีด" + +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 +msgid "You have no lists." +msgstr "คุณไม่มีลิสต์" + +#: src/screens/Messages/List/index.tsx:200 +#~ msgid "You have no messages yet. Start a conversation with someone!" +#~ msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:131 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "คุณยังไม่ได้บล็อกบัญชีใด ๆ หากต้องการบล็อกบัญชี ให้ไปที่โปรไฟล์ของพวกเขาและเลือก \"บล็อกบัญชี\" จากเมนูในบัญชีของพวกเขา" + +#: src/view/screens/AppPasswords.tsx:87 +msgid "You have not created any app passwords yet. You can create one by pressing the button below." +msgstr "คุณยังไม่ได้สร้างรหัสผ่านแอปใด ๆ คุณสามารถสร้างหนึ่งโดยการกดปุ่มด้านล่าง" + +#: src/view/screens/ModerationMutedAccounts.tsx:130 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "คุณยังไม่ได้ปิดเสียงบัญชีใด ๆ หากต้องการปิดเสียงบัญชี ให้ไปที่โปรไฟล์ของพวกเขาและเลือก \"ปิดเสียงบัญชี\" จากเมนูในบัญชีของพวกเขา" + +#: src/components/Lists.tsx:52 +msgid "You have reached the end" +msgstr "คุณถึงจุดสิ้นสุดแล้ว" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "คุณถึงขีดจำกัดการอัปโหลดวิดีโอชั่วคราวแล้ว กรุณาลองอีกครั้งในภายหลัง" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 +msgid "You haven't created a starter pack yet!" +msgstr "คุณยังไม่ได้สร้างชุดเริ่มต้น!" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "คุณยังไม่ได้ปิดเสียงคำหรือแท็กใด ๆ" + +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "You hid this reply." +msgstr "คุณซ่อนการตอบกลับนี้แล้ว" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "คุณสามารถอุทธรณ์ป้ายที่ไม่ใช่ของตนเองได้หากคุณรู้สึกว่ามันถูกติดตั้งโดยผิดพลาด" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "คุณสามารถอุทธรณ์ป้ายเหล่านี้ได้หากคุณรู้สึกว่ามันถูกติดตั้งโดยผิดพลาด" + +#: src/screens/StarterPack/Wizard/State.tsx:79 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" +msgstr "คุณสามารถเพิ่มได้สูงสุด {STARTER_PACK_MAX_SIZE} โปรไฟล์" + +#: src/screens/StarterPack/Wizard/State.tsx:97 +msgid "You may only add up to 3 feeds" +msgstr "คุณสามารถเพิ่มได้สูงสุด 3 ฟีด" + +#: src/screens/StarterPack/Wizard/State.tsx:95 +#~ msgid "You may only add up to 50 feeds" +#~ msgstr "คุณสามารถเพิ่มได้สูงสุด 50 ฟีด" + +#: src/screens/StarterPack/Wizard/State.tsx:78 +#~ msgid "You may only add up to 50 profiles" +#~ msgstr "คุณสามารถเพิ่มได้สูงสุด 50 โปรไฟล์" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 +msgid "You must be 13 years of age or older to sign up." +msgstr "คุณต้องมีอายุ 13 ปีขึ้นไปจึงจะสามารถสมัครสมาชิกได้" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 +#~ msgid "You must be 18 years or older to enable adult content" +#~ msgstr "คุณต้องมีอายุ 18 ปีขึ้นไปจึงจะสามารถเปิดใช้งานเนื้อหาสำหรับผู้ใหญ่ได้" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "คุณต้องติดตามผู้อื่นอย่างน้อย 7 คนจึงจะสามารถสร้างชุดเริ่มต้นได้" + +#: src/components/StarterPack/QrCodeDialog.tsx:60 +msgid "You must grant access to your photo library to save a QR code" +msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรหัส QR" + +#: src/components/StarterPack/ShareDialog.tsx:69 +msgid "You must grant access to your photo library to save the image." +msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรูปภาพ" + +#: src/components/ReportDialog/SubmitView.tsx:210 +msgid "You must select at least one labeler for a report" +msgstr "คุณต้องเลือกผู้ติดฉลากอย่างน้อยหนึ่งคนสำหรับรายงาน" + +#: src/screens/Deactivated.tsx:131 +msgid "You previously deactivated @{0}." +msgstr "คุณได้ทำการปิดการใช้งาน @{0} ก่อนหน้านี้" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +msgid "You will no longer receive notifications for this thread" +msgstr "คุณจะไม่รับการแจ้งเตือนสำหรับกระทู้นี้อีกต่อไป" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +msgid "You will now receive notifications for this thread" +msgstr "คุณจะเริ่มได้รับการแจ้งเตือนสำหรับกระทู้นี้" + +#: src/screens/Login/SetNewPasswordForm.tsx:98 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "คุณจะได้รับอีเมลที่มี \"รหัสรีเซ็ต\" ใส่รหัสนั้นที่นี่ จากนั้นใส่รหัสผ่านใหม่ของคุณ" + +#: src/screens/Messages/components/ChatListItem.tsx:124 +msgid "You: {0}" +msgstr "คุณ: {0}" + +#: src/screens/Messages/components/ChatListItem.tsx:153 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "คุณ: {defaultEmbeddedContentMessage}" + +#: src/screens/Messages/components/ChatListItem.tsx:146 +msgid "You: {short}" +msgstr "คุณ: {short}" + +#: src/screens/Signup/index.tsx:107 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "คุณจะติดตามผู้ใช้และฟีดที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" + +#: src/screens/Signup/index.tsx:112 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "คุณจะติดตามผู้ใช้ที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 +msgid "You'll follow these people and {0} others" +msgstr "คุณจะติดตามบุคคลเหล่านี้และอีก {0} คน" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "You'll follow these people right away" +msgstr "คุณจะติดตามบุคคลเหล่านี้ทันที" + +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "คุณจะได้รับอีเมลที่ <0>{0} เพื่อยืนยันว่าเป็นคุณ" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "คุณจะได้รับการอัปเดตจากฟีดเหล่านี้" + +#: src/screens/Onboarding/StepModeration/index.tsx:60 +#~ msgid "You're in control" +#~ msgstr "คุณเป็นผู้ควบคุม" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 +msgid "You're in line" +msgstr "คุณอยู่ในคิว" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." +msgstr "คุณเข้าสู่ระบบด้วยรหัสผ่านแอป กรุณาเข้าสู่ระบบด้วยรหัสผ่านหลักของคุณเพื่อดำเนินการยกเลิกการเปิดใช้งานบัญชีของคุณต่อ" + +#: src/screens/Onboarding/StepFinished.tsx:226 +msgid "You're ready to go!" +msgstr "คุณพร้อมแล้ว!" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "You've chosen to hide a word or tag within this post." +msgstr "คุณเลือกที่จะซ่อนคำหรือแท็กในโพสต์นี้" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "คุณมาถึงจุดสิ้นสุดฟีดของคุณแล้ว! ค้นหาบัญชีเพิ่มเติมเพื่อติดตาม" + +#: src/view/com/composer/state/video.ts:435 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (ขนาดไฟล์มากเกินไป)" + +#: src/view/com/composer/state/video.ts:439 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)" + +#: src/screens/Signup/index.tsx:140 +msgid "Your account" +msgstr "บัญชีของคุณ" + +#: src/view/com/modals/DeleteAccount.tsx:88 +msgid "Your account has been deleted" +msgstr "บัญชีของคุณถูกลบแล้ว" + +#: src/view/com/composer/state/video.ts:443 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "บัญชีของคุณยังมีอายุไม่มากพอที่จะอัพโหลดวิดีโอ กรุณาลองใหม่อีกครั้งในภายหลัง" + +#: src/view/screens/Settings/ExportCarDialog.tsx:64 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "คลังข้อมูลบัญชีของคุณ ซึ่งประกอบด้วยบันทึกข้อมูลสาธารณะทั้งหมด สามารถดาวน์โหลดเป็นไฟล์ \"CAR\" ไฟล์นี้ไม่รวมสื่อที่ฝังไว้ เช่น รูปภาพ หรือข้อมูลส่วนตัวของคุณ ซึ่งต้องดึงข้อมูลแยกต่างหาก" + +#: src/screens/Signup/StepInfo/index.tsx:211 +msgid "Your birth date" +msgstr "วันเกิดของคุณ" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "เบราว์เซอร์ของคุณไม่รองรับรูปแบบวิดีโอนี้ กรุณาลองใช้เบราว์เซอร์อื่น" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "การแชทของคุณถูกปิดใช้งาน" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "ตัวเลือกของคุณจะถูกบันทึกไว้ แต่สามารถเปลี่ยนแปลงได้ภายหลังในการตั้งค่า" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:62 +#~ msgid "Your default feed is \"Following\"" +#~ msgstr "ฟีดเริ่มต้นของคุณคือ \"กำลังติดตาม"\" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:108 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "อีเมลของคุณดูเหมือนจะไม่ถูกต้อง" + +#: src/view/com/modals/ChangeEmail.tsx:120 +msgid "Your email has been updated but not verified. As a next step, please verify your new email." +msgstr "อีเมลของคุณได้รับการอัปเดตแล้วแต่ยังไม่ได้รับการยืนยัน ขั้นตอนต่อไป โปรดยืนยันอีเมลใหม่ของคุณ" + +#: src/view/com/modals/VerifyEmail.tsx:122 +msgid "Your email has not yet been verified. This is an important security step which we recommend." +msgstr "อีเมลของคุณยังไม่ได้รับการยืนยัน นี่เป็นขั้นตอนด้านความปลอดภัยที่สำคัญซึ่งเราแนะนำ" + +#: src/state/shell/progress-guide.tsx:156 +msgid "Your first like!" +msgstr "ไลค์แรกของคุณ!" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "ฟีดผู้ติดตามของคุณว่างเปล่า! ติดตามผู้ใช้เพิ่มเติมเพื่อดูความเคลื่อนไหว" + +#: src/screens/Signup/StepHandle.tsx:125 +msgid "Your full handle will be" +msgstr "ชื่อผู้ใช้เต็มของคุณจะเป็น" + +#: src/view/com/modals/ChangeHandle.tsx:258 +msgid "Your full handle will be <0>@{0}" +msgstr "ชื่อผู้ใช้เต็มของคุณจะเป็น <0>@{0}" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "คำที่คุณปิดเสียง" + +#: src/view/com/modals/ChangePassword.tsx:158 +msgid "Your password has been changed successfully!" +msgstr "รหัสผ่านของคุณถูกเปลี่ยนเรียบร้อยแล้ว!" + +#: src/view/com/composer/Composer.tsx:447 +msgid "Your post has been published" +msgstr "โพสต์ของคุณได้รับการเผยแพร่แล้ว" + +#: src/screens/Onboarding/StepFinished.tsx:241 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "โพสต์ การถูกใจ และการบล็อกของคุณเป็นแบบสาธารณะ การปิดเสียงเป็นเรื่องส่วนตัว" + +#: src/view/screens/Settings/index.tsx:118 +msgid "Your profile" +msgstr "โปรไฟล์ของคุณ" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "โปรไฟล์ โพสต์ ฟีด และลิสต์ของคุณจะไม่ปรากฏให้ผู้ใช้ Bluesky คนอื่นเห็นอีกต่อไป คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งได้ตลอดเวลาโดยการเข้าสู่ระบบ" + +#: src/view/com/composer/Composer.tsx:446 +msgid "Your reply has been published" +msgstr "การตอบกลับของคุณได้รับการเผยแพร่แล้ว" + +#: src/components/dms/ReportDialog.tsx:157 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "รายงานของคุณจะถูกส่งไปยัง Bluesky Moderation Service" + +#: src/screens/Signup/index.tsx:142 +msgid "Your user handle" +msgstr "แฮนด์เดิลผู้ใช้ของคุณ" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index b8774b82d9..31e3c8bc13 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -13,7 +13,7 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.4.2\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(e-posta yok)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -62,7 +62,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -101,19 +101,19 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" @@ -143,7 +143,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "" @@ -217,12 +217,12 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} takip ediliyor" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "" @@ -238,13 +238,13 @@ msgstr "" #~ msgid "{invitesAvailable} invite codes available" #~ msgstr "{invitesAvailable} davet kodları mevcut" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} okunmamış" @@ -268,12 +268,12 @@ msgstr "" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -282,15 +282,15 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" @@ -298,7 +298,7 @@ msgstr "" #~ msgid "<0>{0} following" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -306,6 +306,10 @@ msgstr "" msgid "<0>{0} members" msgstr "" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "" @@ -324,18 +328,18 @@ msgstr "" #~ msgstr "<0>Önerilen<1>Kullanıcıları Takip Et<2>Seç" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Bluesky'e<1>Hoşgeldiniz" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Geçersiz Kullanıcı Adı" @@ -343,7 +347,7 @@ msgstr "⚠Geçersiz Kullanıcı Adı" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "" @@ -367,8 +371,8 @@ msgstr "" #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "Uygulamanın yeni bir sürümü mevcut. Devam etmek için güncelleyin." -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Gezinme bağlantılarına ve ayarlara erişin" @@ -376,17 +380,16 @@ msgstr "Gezinme bağlantılarına ve ayarlara erişin" msgid "Access profile and other navigation links" msgstr "Profil ve diğer gezinme bağlantılarına erişin" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "" @@ -394,21 +397,21 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Hesap" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Hesap engellendi" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Hesap susturuldu" @@ -429,27 +432,27 @@ msgstr "Hesap seçenekleri" msgid "Account removed from quick access" msgstr "Hesap hızlı erişimden kaldırıldı" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Hesap engeli kaldırıldı" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Hesap susturulması kaldırıldı" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Ekle" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "" @@ -457,27 +460,29 @@ msgstr "" msgid "Add {displayName} to starter pack" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Bir içerik uyarısı ekleyin" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Bu listeye bir kullanıcı ekleyin" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Hesap ekle" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Alternatif metin ekle" @@ -485,13 +490,13 @@ msgstr "Alternatif metin ekle" #~ msgid "Add ALT text" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Uygulama Şifresi Ekle" @@ -528,7 +533,7 @@ msgstr "" msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" @@ -536,16 +541,16 @@ msgstr "" msgid "Add the default feed of only people you follow" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Alan adınıza aşağıdaki DNS kaydını ekleyin:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Listelere Ekle" @@ -558,7 +563,7 @@ msgstr "Beslemelerime ekle" #~ msgstr "Eklendi" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Listeye eklendi" @@ -570,9 +575,10 @@ msgstr "Beslemelerime eklendi" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Bir yanıtın beslemenizde gösterilmesi için sahip olması gereken beğeni sayısını ayarlayın." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Yetişkin İçerik" @@ -580,16 +586,21 @@ msgstr "Yetişkin İçerik" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "Yetişkin içeriği yalnızca Web üzerinden <0/> etkinleştirilebilir." -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Gelişmiş" @@ -597,11 +608,11 @@ msgstr "Gelişmiş" msgid "Algorithm training complete!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -615,53 +626,58 @@ msgstr "" #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Zaten bir kodunuz mu var?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Zaten @{0} olarak oturum açıldı" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Alternatif metin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için resimleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir onay kodu içerir." @@ -669,7 +685,11 @@ msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir on msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Önceki adresinize, {0} bir e-posta gönderildi. Aşağıda girebileceğiniz bir onay kodu içerir." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -677,15 +697,15 @@ msgstr "" #~ msgid "An error occured" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -698,19 +718,19 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" @@ -718,12 +738,12 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -735,40 +755,40 @@ msgstr "" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Bir sorun oluştu, lütfen tekrar deneyin." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "ve" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Hayvanlar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "" @@ -776,15 +796,20 @@ msgstr "" msgid "Anti-Social Behavior" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Uygulama Dili" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Uygulama şifresi silindi" @@ -796,22 +821,22 @@ msgstr "Uygulama Şifre adları yalnızca harfler, sayılar, boşluklar, tireler msgid "App Password names must be at least 4 characters long." msgstr "Uygulama Şifre adları en az 4 karakter uzunluğunda olmalıdır." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Uygulama şifresi ayarları" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Uygulama Şifreleri" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "" @@ -823,8 +848,8 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "İçerik Uyarısını İtiraz Et" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -832,10 +857,10 @@ msgstr "" #~ msgid "Appeal submitted." #~ msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "Bu karara itiraz et" @@ -843,16 +868,16 @@ msgstr "Bu karara itiraz et" #~ msgid "Appeal this decision." #~ msgstr "Bu karara itiraz et." -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Görünüm" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -865,7 +890,7 @@ msgstr "" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "\"{name}\" uygulama şifresini silmek istediğinizden emin misiniz?" @@ -877,10 +902,14 @@ msgstr "\"{name}\" uygulama şifresini silmek istediğinizden emin misiniz?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -893,11 +922,11 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" @@ -914,11 +943,11 @@ msgid "Are you writing in <0>{0}?" msgstr "<0>{0} dilinde mi yazıyorsunuz?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Sanat" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Sanatsal veya erotik olmayan çıplaklık." @@ -927,22 +956,22 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Geri" @@ -955,20 +984,20 @@ msgstr "Geri" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "{interestsText} ilginize dayalı" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Temel" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Doğum günü" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Doğum günü:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "" @@ -977,24 +1006,24 @@ msgstr "" msgid "Block account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Hesabı Engelle" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Hesapları engelle" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Listeyi engelle" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Bu hesapları engelle?" @@ -1002,24 +1031,24 @@ msgstr "Bu hesapları engelle?" #~ msgid "Block this List" #~ msgstr "Bu Listeyi Engelle" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Engellendi" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez. Onların içeriğini görmeyeceksiniz ve onlar da sizinkini görmekten alıkonulacaklar." @@ -1031,25 +1060,29 @@ msgstr "Engellenen gönderi." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Engelleme herkese açıktır. Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Blog" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." msgstr "" #: src/components/ProgressGuide/List.tsx:55 @@ -1072,18 +1105,18 @@ msgstr "" #~ msgstr "Bluesky kamusal." #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:70 #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky, daha sağlıklı bir topluluk oluşturmak için davetleri kullanır. Bir daveti olan kimseyi tanımıyorsanız, bekleme listesine kaydolabilir ve yakında bir tane göndereceğiz." -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky, profilinizi ve gönderilerinizi oturum açmamış kullanıcılara göstermeyecektir. Diğer uygulamalar bu isteği yerine getirmeyebilir. Bu, hesabınızı özel yapmaz." @@ -1100,13 +1133,13 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Kitaplar" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1137,7 +1170,7 @@ msgstr "" #~ msgid "Build version {0} {1}" #~ msgstr "Sürüm {0} {1}" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "İş" @@ -1153,7 +1186,7 @@ msgstr "tarafından —" #~ msgid "by {0}" #~ msgstr "tarafından {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "" @@ -1166,14 +1199,26 @@ msgid "by <0/>" msgstr "tarafından <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "siz tarafından" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Kamera" @@ -1182,33 +1227,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içerebilir. En az 4 karakter uzunluğunda, ancak 32 karakterden fazla olmamalıdır." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "İptal" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1220,19 +1264,19 @@ msgstr "İptal" msgid "Cancel account deletion" msgstr "Hesap silmeyi iptal et" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Kullanıcı adı değişikliğini iptal et" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Resim kırpma işlemini iptal et" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Profil düzenlemeyi iptal et" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Profil düzenlemeyi iptal et" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Alıntı gönderiyi iptal et" @@ -1241,6 +1285,7 @@ msgid "Cancel reactivation and log out" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Aramayı iptal et" @@ -1252,14 +1297,14 @@ msgstr "Aramayı iptal et" msgid "Cancels opening the linked website" msgstr "" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1268,24 +1313,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Değiştir" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Kullanıcı adını değiştir" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Kullanıcı Adını Değiştir" @@ -1293,12 +1342,12 @@ msgstr "Kullanıcı Adını Değiştir" msgid "Change my email" msgstr "E-postamı değiştir" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Şifre değiştir" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Şifre Değiştir" @@ -1314,9 +1363,10 @@ msgstr "Gönderi dilini {0} olarak değiştir" msgid "Change Your Email" msgstr "E-postanızı Değiştirin" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "" @@ -1326,14 +1376,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "" @@ -1358,7 +1408,7 @@ msgstr "Durumumu kontrol et" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Bazı önerilen kullanıcılara göz atın. Benzer kullanıcıları görmek için onları takip edin." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1382,23 +1432,27 @@ msgstr "Aşağıya gireceğiniz onay kodu içeren bir e-posta için gelen kutunu #~ msgid "Choose at least {0} more" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Hizmet Seç" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Özel beslemelerinizi destekleyen algoritmaları seçin." @@ -1420,7 +1474,7 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Ana beslemelerinizi seçin" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Şifrenizi seçin" @@ -1432,16 +1486,15 @@ msgstr "Şifrenizi seçin" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "Tüm eski depolama verilerini temizle (bundan sonra yeniden başlat)" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "Tüm depolama verilerini temizle" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Arama sorgusunu temizle" @@ -1449,11 +1502,11 @@ msgstr "Arama sorgusunu temizle" #~ msgid "Clears all legacy storage data" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "buraya tıklayın" @@ -1477,15 +1530,15 @@ msgstr "" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "" @@ -1497,27 +1550,25 @@ msgstr "İklim" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Kapat" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Etkin iletişim kutusunu kapat" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Uyarıyı kapat" @@ -1525,12 +1576,11 @@ msgstr "Uyarıyı kapat" msgid "Close bottom drawer" msgstr "Alt çekmeceyi kapat" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "" @@ -1543,29 +1593,29 @@ msgid "Close image viewer" msgstr "Resim görüntüleyiciyi kapat" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Gezinme altbilgisini kapat" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Alt gezinme çubuğunu kapatır" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Şifre güncelleme uyarısını kapatır" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1575,41 +1625,49 @@ msgstr "Başlık resmi görüntüleyicisini kapatır" msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Komedi" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Çizgi romanlar" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Topluluk Kuralları" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "En fazla {MAX_GRAPHEME_LENGTH} karakter uzunluğunda gönderiler oluşturun" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Yanıt oluştur" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1622,17 +1680,19 @@ msgstr "Yanıt oluştur" msgid "Configure content filtering setting for category: {name}" msgstr "" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Onayla" @@ -1658,34 +1718,39 @@ msgstr "Hesabı silmeyi onayla" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Yetişkin içeriği etkinleştirmek için yaşınızı onaylayın." -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Onay kodu" +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + #: src/view/com/modals/Waitlist.tsx:120 #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "{email} adresinin bekleme listesine kaydını onaylar" -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "Bağlanıyor..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Destek ile iletişime geçin" @@ -1705,12 +1770,12 @@ msgstr "" #~ msgid "Content Filtering" #~ msgstr "İçerik Filtreleme" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "İçerik Dilleri" @@ -1720,13 +1785,13 @@ msgid "Content Not Available" msgstr "İçerik Mevcut Değil" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "İçerik Uyarısı" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "İçerik uyarıları" @@ -1734,12 +1799,12 @@ msgstr "İçerik uyarıları" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Devam et" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "" @@ -1747,9 +1812,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Sonraki adıma devam et" @@ -1761,7 +1826,7 @@ msgstr "Sonraki adıma devam et" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Herhangi bir hesabı takip etmeden sonraki adıma devam et" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "" @@ -1774,20 +1839,21 @@ msgstr "Yemek pişirme" msgid "Copied" msgstr "Kopyalandı" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Panoya kopyalandı" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "" @@ -1795,17 +1861,17 @@ msgstr "" msgid "Copies app password" msgstr "Uygulama şifresini kopyalar" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopyala" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "" @@ -1817,12 +1883,12 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Liste bağlantısını kopyala" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Gönderi bağlantısını kopyala" @@ -1835,17 +1901,17 @@ msgstr "Gönderi bağlantısını kopyala" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Gönderi metnini kopyala" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" @@ -1857,11 +1923,11 @@ msgstr "Telif Hakkı Politikası" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Besleme yüklenemedi" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Liste yüklenemedi" @@ -1885,34 +1951,39 @@ msgstr "" #~ msgid "Country" #~ msgstr "Ülke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Yeni bir hesap oluştur" +#~ msgid "Create a new account" +#~ msgstr "Yeni bir hesap oluştur" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Yeni bir Bluesky hesabı oluştur" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Hesap Oluştur" @@ -1921,11 +1992,11 @@ msgstr "Hesap Oluştur" msgid "Create an account" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "" @@ -1934,7 +2005,7 @@ msgid "Create App Password" msgstr "Uygulama Şifresi Oluştur" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Yeni hesap oluştur" @@ -1946,7 +2017,7 @@ msgstr "Yeni hesap oluştur" msgid "Create report for {0}" msgstr "" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} oluşturuldu" @@ -1963,46 +2034,42 @@ msgstr "{0} oluşturuldu" #~ msgstr "Küçük resimli bir kart oluşturur. Kart, {url} bağlantısına gider" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Kültür" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Özel alan adı" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Topluluk tarafından oluşturulan özel beslemeler size yeni deneyimler sunar ve sevdiğiniz içeriği bulmanıza yardımcı olur." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Harici sitelerden medyayı özelleştirin." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Karanlık" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Karanlık mod" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" @@ -2010,38 +2077,43 @@ msgstr "" #~ msgid "Dark Theme" #~ msgstr "Karanlık Tema" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Hata ayıklama paneli" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Hesabı sil" @@ -2053,16 +2125,16 @@ msgstr "Hesabı sil" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Uygulama şifresini sil" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -2070,7 +2142,7 @@ msgstr "" msgid "Delete for me" msgstr "" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Listeyi Sil" @@ -2086,33 +2158,33 @@ msgstr "" msgid "Delete my account" msgstr "Hesabımı sil" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Hesabımı Sil…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Gönderiyi sil" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Bu gönderiyi sil?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Silindi" @@ -2120,27 +2192,35 @@ msgstr "Silindi" msgid "Deleted post." msgstr "Silinen gönderi." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Açıklama" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -2152,32 +2232,31 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Bir şey söylemek istediniz mi?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Karart" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "" @@ -2185,7 +2264,7 @@ msgstr "" #~ msgid "Disable haptics" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" @@ -2196,26 +2275,31 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Sil" +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + #: src/view/com/composer/Composer.tsx:138 #~ msgid "Discard draft" #~ msgstr "Taslağı sil" -#: src/view/com/composer/Composer.tsx:837 +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Uygulamaların hesabımı oturum açmamış kullanıcılara göstermesini engelle" @@ -2232,15 +2316,15 @@ msgstr "Yeni özel beslemeler keşfet" msgid "Discover new feeds" msgstr "Yeni beslemeler keşfet" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -2248,19 +2332,29 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Görünen ad" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Görünen Ad" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Görünen Ad" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "" @@ -2268,6 +2362,14 @@ msgstr "" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "" @@ -2276,11 +2378,11 @@ msgstr "" msgid "Doesn't begin or end with a hyphen" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Alan adı doğrulandı!" @@ -2288,30 +2390,29 @@ msgstr "Alan adı doğrulandı!" #~ msgid "Don't have an invite code?" #~ msgstr "Davet kodunuz yok mu?" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Tamam" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Tamam" @@ -2320,24 +2421,28 @@ msgstr "Tamam" msgid "Done{extraText}" msgstr "Tamam{extraText}" +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + #: src/view/com/auth/login/ChooseAccountForm.tsx:45 #~ msgid "Double tap to sign in" #~ msgstr "Oturum açmak için çift dokunun" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Resim eklemek için bırakın" @@ -2349,39 +2454,43 @@ msgstr "Resim eklemek için bırakın" msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "örn: Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "örn: Alice Roberts" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "örn: Sanatçı, köpek sever ve okumayı seven." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "örn: Sanatçı, köpek sever ve okumayı seven." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "örn: Harika Göndericiler" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "örn: Spamcılar" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "örn: Asla kaçırmayan göndericiler." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." @@ -2389,58 +2498,59 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Düzenle" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Resmi düzenle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Liste ayrıntılarını düzenle" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Düzenleme Listesini Düzenle" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Beslemelerimi Düzenle" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Profilimi düzenle" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Profilimi düzenle" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "" @@ -2449,13 +2559,15 @@ msgstr "" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Profil düzenle" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Profil Düzenle" @@ -2464,11 +2576,11 @@ msgstr "Profil Düzenle" #~ msgid "Edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri Düzenle" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Kullanıcı Listesini Düzenle" @@ -2476,20 +2588,20 @@ msgstr "Kullanıcı Listesini Düzenle" msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Görünen adınızı düzenleyin" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Görünen adınızı düzenleyin" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Profil açıklamanızı düzenleyin" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Profil açıklamanızı düzenleyin" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Eğitim" @@ -2497,7 +2609,7 @@ msgstr "Eğitim" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-posta" @@ -2506,11 +2618,11 @@ msgstr "E-posta" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "E-posta adresi" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2527,21 +2639,21 @@ msgstr "E-posta Güncellendi" msgid "Email verified" msgstr "E-posta doğrulandı" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "E-posta:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "" @@ -2549,11 +2661,11 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Yalnızca {0} etkinleştir" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "" @@ -2566,8 +2678,8 @@ msgstr "" #~ msgid "Enable adult content in your feeds" #~ msgstr "Beslemelerinizde yetişkin içeriği etkinleştirin" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "" @@ -2575,16 +2687,16 @@ msgstr "" #~ msgid "Enable External Media" #~ msgstr "Harici Medyayı Etkinleştir" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Medya oynatıcılarını etkinleştir" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" @@ -2592,17 +2704,17 @@ msgstr "" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Bu ayarı yalnızca takip ettiğiniz kişiler arasındaki yanıtları görmek için etkinleştirin." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Beslemenin sonu" @@ -2614,7 +2726,7 @@ msgstr "Beslemenin sonu" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2622,7 +2734,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "Bu Uygulama Şifresi için bir ad girin" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "" @@ -2631,6 +2743,10 @@ msgstr "" msgid "Enter a word or tag" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Onay Kodunu Girin" @@ -2639,15 +2755,15 @@ msgstr "Onay Kodunu Girin" msgid "Enter the code you received to change your password." msgstr "Şifrenizi değiştirmek için aldığınız kodu girin." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Kullanmak istediğiniz alan adını girin" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Hesabınızı oluşturmak için kullandığınız e-postayı girin. Size yeni bir şifre belirlemeniz için bir \"sıfırlama kodu\" göndereceğiz." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Doğum tarihinizi girin" @@ -2655,8 +2771,8 @@ msgstr "Doğum tarihinizi girin" #~ msgid "Enter your email" #~ msgstr "E-posta adresinizi girin" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "E-posta adresinizi girin" @@ -2672,10 +2788,14 @@ msgstr "Yeni e-posta adresinizi aşağıya girin." #~ msgid "Enter your phone number" #~ msgstr "Telefon numaranızı girin" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Kullanıcı adınızı ve şifrenizi girin" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "" @@ -2684,12 +2804,12 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Hata:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Herkes" @@ -2701,10 +2821,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "" @@ -2724,7 +2842,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2732,11 +2850,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Kullanıcı adı değişikliği sürecinden çıkar" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "" @@ -2760,12 +2878,16 @@ msgstr "Alternatif metni genişlet" msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2785,32 +2907,32 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Harici Medya" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Harici medya, web sitelerinin siz ve cihazınız hakkında bilgi toplamasına izin verebilir. Bilgi, \"oynat\" düğmesine basana kadar gönderilmez veya istenmez." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Harici medya ayarları" @@ -2819,12 +2941,12 @@ msgstr "Harici medya ayarları" msgid "Failed to create app password." msgstr "Uygulama şifresi oluşturulamadı." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Liste oluşturulamadı. İnternet bağlantınızı kontrol edin ve tekrar deneyin." @@ -2832,11 +2954,11 @@ msgstr "Liste oluşturulamadı. İnternet bağlantınızı kontrol edin ve tekra msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "" @@ -2845,12 +2967,11 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "" @@ -2872,7 +2993,11 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "" @@ -2880,7 +3005,7 @@ msgstr "" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "" @@ -2888,36 +3013,35 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Besleme" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "{0} tarafından besleme" @@ -2935,19 +3059,23 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Geribildirim" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Beslemeler" @@ -2955,7 +3083,7 @@ msgstr "Beslemeler" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "Beslemeler, içerikleri düzenlemek için kullanıcılar tarafından oluşturulur. İlginizi çeken bazı beslemeler seçin." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturduğu özel algoritmalardır. Daha fazla bilgi için <0/>." @@ -2963,11 +3091,12 @@ msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturdu #~ msgid "Feeds can be topical as well!" #~ msgstr "Beslemeler aynı zamanda konusal olabilir!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "" @@ -2979,7 +3108,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Tamamlanıyor" @@ -2993,7 +3122,7 @@ msgstr "Takip edilecek hesaplar bul" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "" @@ -3009,7 +3138,7 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "Benzer hesaplar bulunuyor..." -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "" @@ -3017,11 +3146,11 @@ msgstr "" #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ana ekranınızda gördüğünüz içeriği ayarlayın." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Tartışma konularını ayarlayın." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "" @@ -3033,25 +3162,25 @@ msgstr "" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Esnek" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Yatay çevir" +#~ msgid "Flip horizontal" +#~ msgstr "Yatay çevir" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Dikey çevir" +#~ msgid "Flip vertically" +#~ msgstr "Dikey çevir" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Takip et" @@ -3060,12 +3189,12 @@ msgctxt "action" msgid "Follow" msgstr "Takip et" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "{0} takip et" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "" @@ -3073,13 +3202,13 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "" @@ -3087,13 +3216,13 @@ msgstr "" #~ msgid "Follow All" #~ msgstr "Hepsini Takip Et" -#: src/view/com/profile/FollowButton.tsx:79 -msgctxt "action" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" msgid "Follow Back" msgstr "" @@ -3133,7 +3262,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Takip edilen kullanıcılar" @@ -3149,49 +3278,49 @@ msgstr "sizi takip etti" msgid "followed you back" msgstr "" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Takipçiler" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Takip edilenler" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "{0} takip ediliyor" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "" @@ -3199,16 +3328,26 @@ msgstr "" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sizi takip ediyor" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Sizi Takip Ediyor" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Yiyecek" @@ -3220,6 +3359,11 @@ msgstr "Güvenlik nedeniyle, e-posta adresinize bir onay kodu göndermemiz gerek msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Güvenlik nedeniyle, bunu tekrar göremezsiniz. Bu şifreyi kaybederseniz, yeni bir tane oluşturmanız gerekecek." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" @@ -3232,16 +3376,16 @@ msgstr "" #~ msgid "Forgot password" #~ msgstr "Şifremi unuttum" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Şifremi Unuttum" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "" @@ -3249,34 +3393,34 @@ msgstr "" msgid "Frequently Posts Unwanted Content" msgstr "" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/> tarafından" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Galeri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3291,7 +3435,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -3299,14 +3443,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Geri git" @@ -3314,10 +3457,10 @@ msgstr "Geri git" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Geri Git" @@ -3325,24 +3468,24 @@ msgstr "Geri Git" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Önceki adıma geri dön" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "" @@ -3351,11 +3494,11 @@ msgstr "" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "@{queryMaybeHandle} adresine git" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Sonrakine git" @@ -3373,6 +3516,8 @@ msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "" @@ -3380,11 +3525,11 @@ msgstr "" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Kullanıcı adı" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "" @@ -3392,24 +3537,24 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Sorun mu yaşıyorsunuz?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Yardım" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -3429,22 +3574,22 @@ msgstr "" msgid "Here is your app password." msgstr "İşte uygulama şifreniz." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Gizle" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Gizle" @@ -3454,36 +3599,36 @@ msgstr "Gizle" #~ msgid "Hide post" #~ msgstr "Gönderiyi gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "İçeriği gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Bu gönderiyi gizle?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Kullanıcı listesini gizle" @@ -3511,7 +3656,7 @@ msgstr "Hmm, besleme sunucusu kötü bir yanıt verdi. Lütfen bu konuda besleme msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, bu beslemeyi bulmakta sorun yaşıyoruz. Silinmiş olabilir." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3519,16 +3664,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Ana Sayfa" @@ -3538,32 +3682,37 @@ msgstr "Ana Sayfa" #~ msgid "Home Feed Preferences" #~ msgstr "Ana Sayfa Besleme Tercihleri" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Barındırma sağlayıcısı" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Bu bağlantıyı nasıl açmalıyız?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "Bir kodum var" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "Bir onay kodum var" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Kendi alan adım var" @@ -3577,18 +3726,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değiştirir" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Hiçbiri seçilmezse, tüm yaşlar için uygun." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Hiçbiri seçilmezse, tüm yaşlar için uygun." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3604,20 +3753,19 @@ msgstr "" msgid "Illegal and Urgent" msgstr "" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Resim" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Resim alternatif metni" +#~ msgid "Image alt text" +#~ msgstr "Resim alternatif metni" #: src/view/com/util/UserAvatar.tsx:NaN #~ msgid "Image options" #~ msgstr "Resim seçenekleri" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3633,7 +3781,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Şifre sıfırlama için e-postanıza gönderilen kodu girin" @@ -3653,7 +3801,7 @@ msgstr "Hesap silme için onay kodunu girin" msgid "Input name for app password" msgstr "Uygulama şifresi için ad girin" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Yeni şifre girin" @@ -3665,7 +3813,7 @@ msgstr "Hesap silme için şifre girin" #~ msgid "Input phone number for SMS verification" #~ msgstr "SMS doğrulaması için telefon numarası girin" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "" @@ -3673,7 +3821,7 @@ msgstr "" #~ msgid "Input the password tied to {identifier}" #~ msgstr "{identifier} ile ilişkili şifreyi girin" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Kaydolurken kullandığınız kullanıcı adını veya e-posta adresini girin" @@ -3685,11 +3833,11 @@ msgstr "Kaydolurken kullandığınız kullanıcı adını veya e-posta adresini #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Bluesky bekleme listesine girmek için e-postanızı girin" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Şifrenizi girin" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "" @@ -3697,15 +3845,19 @@ msgstr "" msgid "Input your user handle" msgstr "Kullanıcı adınızı girin" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3714,12 +3866,12 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Geçersiz veya desteklenmeyen gönderi kaydı" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Geçersiz kullanıcı adı veya şifre" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3731,7 +3883,7 @@ msgstr "" msgid "Invite a Friend" msgstr "Arkadaşını Davet Et" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Davet kodu" @@ -3763,30 +3915,39 @@ msgstr "" msgid "Invites, but personal" msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Takip ettiğiniz kişilerin gönderilerini olduğu gibi gösterir." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "İşler" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" @@ -3804,11 +3965,11 @@ msgstr "" #~ msgstr "Bekleme Listesine Katıl" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Gazetecilik" @@ -3816,18 +3977,23 @@ msgstr "Gazetecilik" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -3848,25 +4014,30 @@ msgstr "" msgid "Language selection" msgstr "Dil seçimi" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Dil ayarları" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Dil Ayarları" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Diller" +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + #: src/view/com/auth/create/StepHeader.tsx:20 #~ msgid "Last step!" #~ msgstr "Son adım!" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "" @@ -3874,30 +4045,35 @@ msgstr "" #~ msgid "Learn more" #~ msgstr "Daha fazla bilgi edinin" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Daha Fazla Bilgi Edinin" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Bu uyarı hakkında daha fazla bilgi edinin" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "" @@ -3918,7 +4094,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Hepsini işaretlemeyin, herhangi bir dil görmek için." @@ -3934,16 +4110,16 @@ msgstr "kaldı." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Şifrenizi sıfırlamaya başlayalım!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Hadi gidelim!" @@ -3951,8 +4127,7 @@ msgstr "Hadi gidelim!" #~ msgid "Library" #~ msgstr "Kütüphane" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Açık" @@ -3969,21 +4144,21 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Bu beslemeyi beğen" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Beğenenler" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Beğenenler" @@ -4009,7 +4184,7 @@ msgstr "özel beslemenizi beğendi" msgid "liked your post" msgstr "gönderinizi beğendi" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Beğeniler" @@ -4017,24 +4192,24 @@ msgstr "Beğeniler" msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Liste" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Liste Avatarı" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Liste engellendi" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "{0} tarafından liste" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Liste silindi" @@ -4042,32 +4217,31 @@ msgstr "Liste silindi" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Liste sessize alındı" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Liste Adı" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Liste engeli kaldırıldı" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Listeler" @@ -4092,18 +4266,18 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Yeni bildirimleri yükle" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Yeni gönderileri yükle" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Yükleniyor..." @@ -4111,7 +4285,7 @@ msgstr "Yükleniyor..." #~ msgid "Local dev server" #~ msgstr "Yerel geliştirme sunucusu" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Log" @@ -4127,19 +4301,27 @@ msgstr "" msgid "Log out" msgstr "Çıkış yap" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Çıkış yapan görünürlüğü" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Listelenmeyen hesaba giriş yap" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "" @@ -4159,7 +4341,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -4176,30 +4358,35 @@ msgstr "" msgid "Mark as read" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Medya" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "bahsedilen kullanıcılar" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Bahsedilen kullanıcılar" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Menü" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -4207,23 +4394,23 @@ msgstr "" msgid "Message from server: {0}" msgstr "Sunucudan mesaj: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" @@ -4240,63 +4427,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Moderasyon" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "{0} tarafından moderasyon listesi" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "<0/> tarafından moderasyon listesi" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Sizin tarafınızdan moderasyon listesi" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Moderasyon listesi oluşturuldu" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Moderasyon listesi güncellendi" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Moderasyon ayarları" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "" @@ -4305,7 +4492,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderatör, içeriğe genel bir uyarı koymayı seçti." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "" @@ -4313,7 +4500,8 @@ msgstr "" msgid "More feeds" msgstr "Daha fazla besleme" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Daha fazla seçenek" @@ -4321,25 +4509,25 @@ msgstr "Daha fazla seçenek" #~ msgid "More post options" #~ msgstr "Daha fazla gönderi seçeneği" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "En çok beğenilen yanıtlar önce" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" msgid "Mute" msgstr "" @@ -4347,16 +4535,16 @@ msgstr "" msgid "Mute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Hesabı Sessize Al" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Hesapları sessize al" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "" @@ -4377,7 +4565,7 @@ msgstr "" msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Listeyi sessize al" @@ -4386,7 +4574,7 @@ msgstr "Listeyi sessize al" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Bu hesapları sessize al?" @@ -4418,13 +4606,13 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Konuyu sessize al" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "" @@ -4432,16 +4620,16 @@ msgstr "" #~ msgid "Muted" #~ msgstr "Sessize alındı" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Sessize alınan hesapların gönderileri beslemenizden ve bildirimlerinizden kaldırılır. Sessizlik tamamen özeldir." @@ -4449,41 +4637,41 @@ msgstr "Sessize alınan hesapların gönderileri beslemenizden ve bildirimlerini msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Sessizlik özeldir. Sessize alınan hesaplar sizinle etkileşime geçebilir, ancak gönderilerini görmeyecek ve onlardan bildirim almayacaksınız." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Doğum Günüm" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Beslemelerim" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profilim" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Kayıtlı Beslemelerim" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Ad" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Ad gerekli" @@ -4495,28 +4683,32 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Doğa" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Sonraki ekrana yönlendirir" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Profilinize yönlendirir" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "" @@ -4531,34 +4723,38 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "Takipçilerinize ve verilerinize asla erişimi kaybetmeyin." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Takipçilerinize veya verilerinize asla erişimi kaybetmeyin." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Yeni" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Yeni" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Yeni Moderasyon Listesi" @@ -4570,22 +4766,22 @@ msgstr "Yeni şifre" msgid "New Password" msgstr "Yeni Şifre" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Yeni gönderi" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Yeni gönderi" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Yeni Gönderi" @@ -4594,30 +4790,30 @@ msgstr "Yeni Gönderi" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Yeni Kullanıcı Listesi" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "En yeni yanıtlar önce" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Haberler" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4632,35 +4828,39 @@ msgstr "İleri" msgid "Next image" msgstr "Sonraki resim" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Hayır" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Açıklama yok" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" @@ -4668,11 +4868,11 @@ msgstr "{0} artık takip edilmiyor" msgid "No longer than 253 characters" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4680,10 +4880,8 @@ msgstr "" msgid "No notifications yet!" msgstr "Henüz bildirim yok!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4691,16 +4889,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Sonuç yok" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4708,19 +4914,18 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "\"{query}\" için sonuç bulunamadı" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "{query} için sonuç bulunamadı" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "" @@ -4728,12 +4933,12 @@ msgstr "" #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Teşekkürler" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Hiç kimse" @@ -4741,12 +4946,21 @@ msgstr "Hiç kimse" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4758,8 +4972,8 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "Uygulanamaz." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Bulunamadı" @@ -4768,49 +4982,48 @@ msgstr "Bulunamadı" msgid "Not right now" msgstr "Şu anda değil" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğinizin Bluesky uygulaması ve web sitesindeki görünürlüğünü sınırlar, diğer uygulamalar bu ayarı dikkate almayabilir. İçeriğiniz hala diğer uygulamalar ve web siteleri tarafından çıkış yapan kullanıcılara gösterilebilir." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Bildirimler" @@ -4818,11 +5031,12 @@ msgstr "Bildirimler" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Çıplaklık" @@ -4838,29 +5052,28 @@ msgstr "" msgid "Off" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "Oh hayır!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Oh hayır! Bir şeyler yanlış gitti." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Tamam" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "En eski yanıtlar önce" @@ -4872,11 +5085,11 @@ msgstr "En eski yanıtlar önce" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Onboarding sıfırlama" @@ -4884,11 +5097,11 @@ msgstr "Onboarding sıfırlama" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Bir veya daha fazla resimde alternatif metin eksik." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "" @@ -4904,7 +5117,11 @@ msgstr "Yalnızca {0} yanıtlayabilir." msgid "Only contains letters, numbers, and hyphens" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4913,42 +5130,46 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Hata!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Aç" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Uygulama içi tarayıcıda bağlantıları aç" @@ -4956,7 +5177,7 @@ msgstr "Uygulama içi tarayıcıda bağlantıları aç" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "" @@ -4964,20 +5185,20 @@ msgstr "" msgid "Open navigation" msgstr "Navigasyonu aç" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Storybook sayfasını aç" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "" @@ -4985,15 +5206,19 @@ msgstr "" msgid "Opens {numItems} options" msgstr "{numItems} seçeneği açar" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Hata ayıklama girişi için ek ayrıntıları açar" @@ -5001,27 +5226,27 @@ msgstr "Hata ayıklama girişi için ek ayrıntıları açar" #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Bu bildirimdeki kullanıcıların genişletilmiş bir listesini açar" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Cihazdaki kamerayı açar" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Besteciyi açar" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Yapılandırılabilir dil ayarlarını açar" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Cihaz fotoğraf galerisini açar" @@ -5029,17 +5254,17 @@ msgstr "Cihaz fotoğraf galerisini açar" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Profil görüntü adı, avatar, arka plan resmi ve açıklama için düzenleyiciyi açar" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Harici gömülü ayarları açar" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "" @@ -5063,11 +5288,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Davet kodu listesini açar" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -5075,31 +5300,31 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Hesap silme onayı için modalı açar. E-posta kodu gerektirir." -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Özel alan adı kullanımı için modalı açar" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Moderasyon ayarlarını açar" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Şifre sıfırlama formunu açar" @@ -5108,11 +5333,11 @@ msgstr "Şifre sıfırlama formunu açar" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri düzenlemek için ekranı açar" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Tüm kayıtlı beslemeleri içeren ekrana açar" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "" @@ -5120,7 +5345,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Uygulama şifre ayarları sayfasını açar" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "" @@ -5136,25 +5361,25 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "Storybook sayfasını açar" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Sistem log sayfasını açar" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Konu tercihlerini açar" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -5162,8 +5387,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "{0} seçeneği, {numItems} seçenekten" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "" @@ -5171,7 +5396,7 @@ msgstr "" msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Veya bu seçenekleri birleştirin:" @@ -5184,14 +5409,15 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Diğer hesap" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "" @@ -5203,21 +5429,21 @@ msgstr "" msgid "Other..." msgstr "Diğer..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Sayfa bulunamadı" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Sayfa Bulunamadı" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -5227,42 +5453,42 @@ msgstr "Şifre" msgid "Password Changed" msgstr "" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Şifre güncellendi" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Şifre güncellendi!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Kamera rulosuna erişim izni gerekiyor." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Kamera rulosuna erişim izni reddedildi. Lütfen sistem ayarlarınızda etkinleştirin." @@ -5271,7 +5497,7 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Evcil Hayvanlar" @@ -5279,38 +5505,47 @@ msgstr "Evcil Hayvanlar" #~ msgid "Phone number" #~ msgstr "Telefon numarası" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Yetişkinler için resimler." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Sabitleme Beslemeleri" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "{0} oynat" @@ -5319,21 +5554,21 @@ msgstr "{0} oynat" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Videoyu Oynat" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "GIF'i oynatır" @@ -5342,7 +5577,7 @@ msgid "Please choose your handle." msgstr "Kullanıcı adınızı seçin." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Şifrenizi seçin." @@ -5379,11 +5614,11 @@ msgstr "" #~ msgstr "{phoneNumberFormatted} numarasına gönderilen doğrulama kodunu girin." #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "E-postanızı girin." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -5391,16 +5626,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Lütfen şifrenizi de girin:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -5414,20 +5649,21 @@ msgid "Please Verify Your Email" msgstr "Lütfen E-postanızı Doğrulayın" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Bağlantı kartınızın yüklenmesini bekleyin" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Bağlantı kartınızın yüklenmesini bekleyin" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politika" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Gönder" @@ -5441,17 +5677,21 @@ msgstr "Gönderi" msgid "Post by {0}" msgstr "{0} tarafından gönderi" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Gönderi silindi" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Gönderi gizlendi" @@ -5466,7 +5706,7 @@ msgstr "" msgid "Post Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -5474,7 +5714,7 @@ msgstr "" msgid "Post language" msgstr "Gönderi dili" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Gönderi Dilleri" @@ -5483,12 +5723,20 @@ msgstr "Gönderi Dilleri" msgid "Post not found" msgstr "Gönderi bulunamadı" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Gönderiler" @@ -5512,7 +5760,7 @@ msgstr "Potansiyel Yanıltıcı Bağlantı" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5522,8 +5770,8 @@ msgstr "" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -5540,79 +5788,83 @@ msgstr "" msgid "Previous image" msgstr "Önceki resim" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Birincil Dil" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Takipçilerinizi Önceliklendirin" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Gizlilik" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Gizlilik Politikası" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "İşleniyor..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Profil" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Profil güncellendi" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "E-postanızı doğrulayarak hesabınızı koruyun." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Herkese Açık" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Toplu olarak sessize almak veya engellemek için herkese açık, paylaşılabilir kullanıcı listeleri." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Beslemeleri yönlendirebilen herkese açık, paylaşılabilir listeler." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Gönderiyi yayınla" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Gönderiyi yayınla" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Yanıtı yayınla" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Yanıtı yayınla" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5630,8 +5882,8 @@ msgstr "" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5647,32 +5899,32 @@ msgstr "Gönderiyi alıntıla" #~ msgid "Quote Post" #~ msgstr "Gönderiyi Alıntıla" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5680,16 +5932,16 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "Rastgele (yani \"Gönderenin Ruleti\")" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Oranlar" +#~ msgid "Ratios" +#~ msgstr "Oranlar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5697,19 +5949,21 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "" @@ -5717,7 +5971,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "" @@ -5729,26 +5983,25 @@ msgstr "" #~ msgid "Recommended Users" #~ msgstr "Önerilen Kullanıcılar" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5766,11 +6019,11 @@ msgstr "" msgid "Remove account" msgstr "Hesabı kaldır" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "" @@ -5778,7 +6031,7 @@ msgstr "" msgid "Remove Banner" msgstr "" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5794,13 +6047,14 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Beslemelerimden kaldır" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "" @@ -5813,7 +6067,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Resmi kaldır" @@ -5825,24 +6079,24 @@ msgstr "Resmi kaldır" msgid "Remove mute word from your list" msgstr "" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Yeniden göndermeyi kaldır" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5858,16 +6112,16 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Bu beslemeyi kayıtlı beslemelerinizden kaldırsın mı?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Listeden kaldırıldı" @@ -5881,8 +6135,8 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "" @@ -5890,13 +6144,13 @@ msgstr "" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "{0} adresinden varsayılan küçük resmi kaldırır" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5907,7 +6161,7 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Yanıtlar" @@ -5927,7 +6181,7 @@ msgstr "" #~ msgid "Replies to this thread are disabled" #~ msgstr "Bu konuya yanıtlar devre dışı bırakıldı" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Yanıtla" @@ -5946,11 +6200,11 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -5960,33 +6214,33 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "<0/>'a yanıt" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -6005,8 +6259,8 @@ msgstr "" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Hesabı Raporla" @@ -6016,16 +6270,16 @@ msgstr "Hesabı Raporla" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Beslemeyi raporla" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Listeyi Raporla" @@ -6033,13 +6287,13 @@ msgstr "Listeyi Raporla" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Gönderiyi raporla" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -6055,8 +6309,8 @@ msgstr "" msgid "Report this list" msgstr "" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -6073,9 +6327,9 @@ msgstr "" msgid "Report this user" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Yeniden gönder" @@ -6085,19 +6339,19 @@ msgstr "Yeniden gönder" msgid "Repost" msgstr "Yeniden gönder" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Gönderiyi yeniden gönder veya alıntıla" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Yeniden Gönderen" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "{0} tarafından yeniden gönderildi" @@ -6105,12 +6359,12 @@ msgstr "{0} tarafından yeniden gönderildi" #~ msgid "Reposted by <0/>" #~ msgstr "<0/>'a yeniden gönderildi" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -6136,7 +6390,7 @@ msgstr "Değişiklik İste" msgid "Request Code" msgstr "Kod İste" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Göndermeden önce alternatif metin gerektir" @@ -6144,20 +6398,26 @@ msgstr "Göndermeden önce alternatif metin gerektir" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Bu sağlayıcı için gereklidir" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -6173,12 +6433,12 @@ msgstr "Sıfırlama Kodu" #~ msgid "Reset onboarding" #~ msgstr "Onboarding sıfırla" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "Onboarding durumunu sıfırla" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Şifreyi sıfırla" @@ -6186,20 +6446,20 @@ msgstr "Şifreyi sıfırla" #~ msgid "Reset preferences" #~ msgstr "Tercihleri sıfırla" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "Tercih durumunu sıfırla" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "Onboarding durumunu sıfırlar" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "Tercih durumunu sıfırlar" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Giriş tekrar denemesi" @@ -6208,16 +6468,16 @@ msgstr "Giriş tekrar denemesi" msgid "Retries the last action, which errored out" msgstr "Son hataya neden olan son eylemi tekrarlar" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -6231,17 +6491,17 @@ msgstr "Tekrar dene" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Önceki sayfaya dön" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "" @@ -6249,37 +6509,48 @@ msgstr "" #~ msgid "SANDBOX. Posts and accounts are not permanent." #~ msgstr "KUM KUTUSU. Gönderiler ve hesaplar kalıcı değildir." -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Kaydet" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Kaydet" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Alternatif metni kaydet" +#~ msgid "Save alt text" +#~ msgstr "Alternatif metni kaydet" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Değişiklikleri Kaydet" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Değişiklikleri Kaydet" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Kullanıcı adı değişikliğini kaydet" @@ -6288,24 +6559,24 @@ msgstr "Kullanıcı adı değişikliğini kaydet" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Resim kırpma kaydet" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Kayıtlı Beslemeler" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" @@ -6313,71 +6584,68 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Profilinizdeki herhangi bir değişikliği kaydeder" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Profilinizdeki herhangi bir değişikliği kaydeder" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "{handle} kullanıcı adı değişikliğini kaydeder" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Bilim" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Başa kaydır" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Ara" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "\"{query}\" için ara" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -6389,18 +6657,16 @@ msgstr "" msgid "Search for users" msgstr "Kullanıcıları ara" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "" @@ -6416,15 +6682,15 @@ msgstr "" msgid "See {truncatedTag} posts by user" msgstr "" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" @@ -6433,7 +6699,7 @@ msgstr "" #~ msgid "See profile" #~ msgstr "" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Bu kılavuzu gör" @@ -6441,7 +6707,7 @@ msgstr "Bu kılavuzu gör" #~ msgid "See what's next" #~ msgstr "Ne olduğunu gör" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6453,7 +6719,7 @@ msgstr "{item} seç" msgid "Select a color" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "" @@ -6469,7 +6735,7 @@ msgstr "" #~ msgid "Select Bluesky Social" #~ msgstr "Bluesky Social seç" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Mevcut bir hesaptan seç" @@ -6477,7 +6743,7 @@ msgstr "Mevcut bir hesaptan seç" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -6485,15 +6751,15 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "" @@ -6510,7 +6776,7 @@ msgstr "{i} seçeneği, {numItems} seçenekten" #~ msgid "Select some accounts below to follow" #~ msgstr "Aşağıdaki hesaplardan bazılarını takip et" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6518,11 +6784,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "" @@ -6530,7 +6796,7 @@ msgstr "" #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Aşağıdaki listeden takip edilecek konu beslemelerini seçin" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6542,7 +6808,7 @@ msgstr "" #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Görmek istediğinizi (veya görmek istemediğinizi) seçin, gerisini biz hallederiz." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Abone olduğunuz beslemelerin hangi dilleri içermesini istediğinizi seçin. Hiçbiri seçilmezse, tüm diller gösterilir." @@ -6550,15 +6816,15 @@ msgstr "Abone olduğunuz beslemelerin hangi dilleri içermesini istediğinizi se #~ msgid "Select your app language for the default text to display in the app" #~ msgstr "Uygulama dilinizi seçin, uygulamada görüntülenecek varsayılan metin" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" @@ -6566,7 +6832,7 @@ msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" #~ msgid "Select your phone's country" #~ msgstr "Telefonunuzun ülkesini seçin" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Beslemenizdeki çeviriler için tercih ettiğiniz dili seçin." @@ -6582,6 +6848,14 @@ msgstr "Beslemenizdeki çeviriler için tercih ettiğiniz dili seçin." msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6596,23 +6870,23 @@ msgctxt "action" msgid "Send Email" msgstr "E-posta Gönder" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Geribildirim gönder" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "" @@ -6620,17 +6894,17 @@ msgstr "" #~ msgid "Send Report" #~ msgstr "Rapor Gönder" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6638,7 +6912,7 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "Hesap silme için onay kodu içeren e-posta gönderir" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "" @@ -6652,7 +6926,7 @@ msgstr "" #~ msgid "Set Age" #~ msgstr "Yaş Ayarla" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "" @@ -6676,7 +6950,7 @@ msgstr "" #~ msgid "Set dark theme to the dim theme" #~ msgstr "Koyu teması loş temaya ayarla" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Yeni şifre ayarla" @@ -6684,19 +6958,19 @@ msgstr "Yeni şifre ayarla" #~ msgid "Set password" #~ msgstr "Şifre ayarla" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm alıntı gönderileri gizleyebilirsiniz. Yeniden göndermeler hala görünür olacaktır." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yanıtları gizleyebilirsiniz." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yeniden göndermeleri gizleyebilirsiniz." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Bu ayarı \"Evet\" olarak ayarlayarak yanıtları konu tabanlı görüntülemek için ayarlayın. Bu deneysel bir özelliktir." @@ -6704,7 +6978,7 @@ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak yanıtları konu tabanlı görünt #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak kayıtlı beslemelerinizin örneklerini takip ettiğiniz beslemede göstermek için ayarlayın. Bu deneysel bir özelliktir." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -6712,7 +6986,7 @@ msgstr "" msgid "Set up your account" msgstr "Hesabınızı ayarlayın" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Bluesky kullanıcı adını ayarlar" @@ -6736,7 +7010,7 @@ msgstr "Bluesky kullanıcı adını ayarlar" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Şifre sıfırlama için e-posta ayarlar" @@ -6745,31 +7019,30 @@ msgstr "Şifre sıfırlama için e-posta ayarlar" #~ msgstr "Şifre sıfırlama için barındırma sağlayıcısını ayarlar" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "" #: src/view/com/auth/create/Step1.tsx:78 #: src/view/com/auth/login/LoginForm.tsx:148 #~ msgid "Sets server for the Bluesky client" #~ msgstr "Bluesky istemcisi için sunucuyu ayarlar" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Ayarlar" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Cinsel aktivite veya erotik çıplaklık." @@ -6777,20 +7050,19 @@ msgstr "Cinsel aktivite veya erotik çıplaklık." msgid "Sexually Suggestive" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Paylaş" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Paylaş" @@ -6803,28 +7075,28 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Beslemeyi paylaş" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6842,7 +7114,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6854,7 +7126,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6862,23 +7134,27 @@ msgstr "" msgid "Shares the linked website" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Göster" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "Tüm yanıtları göster" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Yine de göster" @@ -6904,8 +7180,8 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -6913,14 +7189,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Daha Fazla Göster" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -6928,11 +7204,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Beslemelerimden Gönderileri Göster" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Alıntı Gönderileri Göster" @@ -6948,11 +7224,11 @@ msgstr "Alıntı Gönderileri Göster" #~ msgid "Show re-posts in Following feed" #~ msgstr "Yeniden göndermeleri takip etme beslemesinde göster" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Yanıtları Göster" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önce göster." @@ -6968,12 +7244,12 @@ msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önc #~ msgid "Show replies with at least {value} {0}" #~ msgstr "En az {value} {0} olan yanıtları göster" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Yeniden Göndermeleri Göster" @@ -6981,7 +7257,7 @@ msgstr "Yeniden Göndermeleri Göster" #~ msgid "Show reposts in Following" #~ msgstr "Takip etme beslemesinde yeniden göndermeleri göster" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "İçeriği göster" @@ -7003,27 +7279,26 @@ msgstr "" #~ msgstr "Bu kullanıcıya benzer kullanıcıların listesini gösterir." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Beslemenizde {0} adresinden gönderileri gösterir" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Beslemenizde {0} adresinden gönderileri gösterir" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Giriş yap" @@ -7033,11 +7308,11 @@ msgstr "Giriş yap" #~ msgid "Sign In" #~ msgstr "Giriş Yap" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "{0} olarak giriş yap" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Olarak giriş yap..." @@ -7053,42 +7328,41 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Çıkış yap" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Kaydol" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Konuşmaya katılmak için kaydolun veya giriş yapın" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Konuşmaya katılmak için kaydolun veya giriş yapın" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Giriş Yapılması Gerekiyor" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Olarak giriş yapıldı" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "@{0} olarak giriş yapıldı" @@ -7100,8 +7374,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} adresini Bluesky'den çıkarır" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -7109,21 +7383,26 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Atla" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Bu akışı atla" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:82 #~ msgid "SMS verification" #~ msgstr "SMS doğrulama" #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Yazılım Geliştirme" @@ -7139,7 +7418,7 @@ msgstr "" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -7152,14 +7431,14 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "" @@ -7167,30 +7446,30 @@ msgstr "" #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Bir şeyler yanlış gitti. E-postanızı kontrol edin ve tekrar deneyin." -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Üzgünüz! Oturumunuzun süresi doldu. Lütfen tekrar giriş yapın." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Yanıtları Sırala" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Aynı gönderiye verilen yanıtları şuna göre sırala:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "" +msgid "Source:" +msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -7202,53 +7481,57 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Spor" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Kare" +#~ msgid "Square" +#~ msgstr "Kare" #: src/view/com/modals/ServerInput.tsx:62 #~ msgid "Staging" #~ msgstr "Staging" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -7256,7 +7539,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Durum sayfası" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" @@ -7264,7 +7547,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" @@ -7272,23 +7555,23 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "{numSteps} adımdan {0}. adım" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Submit" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Abone ol" @@ -7296,7 +7579,7 @@ msgstr "Abone ol" msgid "Subscribe to @{0} to use these labels:" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "" @@ -7305,14 +7588,18 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "{0} beslemesine abone ol" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Bu listeye abone ol" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" @@ -7325,13 +7612,14 @@ msgstr "" msgid "Suggested for you" msgstr "Sana önerilenler" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Tehlikeli" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Destek" @@ -7339,8 +7627,8 @@ msgstr "Destek" #~ msgid "Swipe up to see more" #~ msgstr "Daha fazlasını görmek için yukarı kaydır" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Hesap Değiştir" @@ -7348,20 +7636,21 @@ msgstr "Hesap Değiştir" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "{0} adresine geç" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Giriş yaptığınız hesabı değiştirir" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Sistem günlüğü" @@ -7369,7 +7658,7 @@ msgstr "Sistem günlüğü" #~ msgid "tag" #~ msgstr "" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "" @@ -7378,22 +7667,22 @@ msgid "Tags only" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Uzun" +#~ msgid "Tall" +#~ msgstr "Uzun" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -7415,7 +7704,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Teknoloji" @@ -7423,23 +7712,27 @@ msgstr "Teknoloji" msgid "Tell a joke!" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Şartlar" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Hizmet Şartları" @@ -7458,25 +7751,33 @@ msgstr "" msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Metin giriş alanı" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "" @@ -7484,21 +7785,21 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek." @@ -7511,15 +7812,15 @@ msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek." msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Topluluk Kuralları <0/> konumuna taşındı" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Telif Hakkı Politikası <0/> konumuna taşındı" @@ -7532,7 +7833,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7557,30 +7858,35 @@ msgstr "Aşağıdaki adımlar, Bluesky deneyiminizi özelleştirmenize yardımc msgid "The post may have been deleted." msgstr "Gönderi silinmiş olabilir." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Destek formu taşındı. Yardıma ihtiyacınız varsa, lütfen <0/> veya bize ulaşmak için {HELP_DESK_URL} adresini ziyaret edin." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Hizmet Şartları taşındı" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Denemek için birçok besleme var:" @@ -7589,23 +7895,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Sunucuya ulaşma konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Sunucuya ulaşma konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Bu beslemeyi kaldırma konusunda bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Bu beslemeyi kaldırma konusunda bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Beslemelerinizi güncelleme konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Beslemelerinizi güncelleme konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "" @@ -7613,15 +7918,18 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Sunucuya ulaşma konusunda bir sorun oluştu" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7631,21 +7939,25 @@ msgstr "Sunucunuza ulaşma konusunda bir sorun oluştu" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Listeyi almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Listelerinizi almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -7653,21 +7965,27 @@ msgstr "" #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Tercihlerinizi sunucuyla senkronize etme konusunda bir sorun oluştu" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Uygulama şifrelerinizi almakta bir sorun oluştu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Bir sorun oluştu! {0}" @@ -7675,16 +7993,15 @@ msgstr "Bir sorun oluştu! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Uygulamada beklenmeyen bir sorun oluştu. Bu size de olduysa lütfen bize bildirin!" @@ -7700,11 +8017,11 @@ msgstr "Bluesky'e bir dizi yeni kullanıcı geldi! Hesabınızı en kısa süred #~ msgid "These are popular accounts you might like:" #~ msgstr "Bunlar, beğenebileceğiniz popüler hesaplar:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Bu {screenDescription} işaretlendi:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Bu hesap, kullanıcıların profilini görüntülemek için giriş yapmalarını istedi." @@ -7716,15 +8033,15 @@ msgstr "" #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" @@ -7740,7 +8057,7 @@ msgstr "" msgid "This content has received a general warning from moderators." msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Bu içerik {0} tarafından barındırılıyor. Harici medyayı etkinleştirmek ister misiniz?" @@ -7753,11 +8070,11 @@ msgstr "Bu içerik, içerikte yer alan kullanıcılardan biri diğerini engelled msgid "This content is not viewable without a Bluesky account." msgstr "Bu içerik, bir Bluesky hesabı olmadan görüntülenemez." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "" @@ -7776,8 +8093,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bu besleme boş! Daha fazla kullanıcı takip etmeniz veya dil ayarlarınızı ayarlamanız gerekebilir." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7785,7 +8102,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Bu bilgi diğer kullanıcılarla paylaşılmaz." @@ -7797,11 +8114,11 @@ msgstr "Bu, e-postanızı değiştirmeniz veya şifrenizi sıfırlamanız gerekt #~ msgid "This label was applied by {0}." #~ msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" @@ -7809,7 +8126,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7825,7 +8142,7 @@ msgstr "Bu bağlantı sizi aşağıdaki web sitesine götürüyor:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Bu liste boş!" @@ -7837,16 +8154,16 @@ msgstr "" msgid "This name is already in use" msgstr "Bu isim zaten kullanılıyor" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Bu gönderi silindi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -7854,15 +8171,15 @@ msgstr "" #~ msgid "This post will be hidden from feeds." #~ msgstr "" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7870,7 +8187,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "" @@ -7935,16 +8252,16 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Konu Tercihleri" @@ -7952,15 +8269,15 @@ msgstr "Konu Tercihleri" #~ msgid "Thread settings updated" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Konu Tabanlı Mod" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Konu Tercihleri" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "" @@ -7968,18 +8285,22 @@ msgstr "" msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "" @@ -7988,25 +8309,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Açılır menüyü aç/kapat" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Dönüşümler" +#~ msgid "Transformations" +#~ msgstr "Dönüşümler" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Çevir" @@ -8015,40 +8336,40 @@ msgctxt "action" msgid "Try again" msgstr "Tekrar dene" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Listeyi engeli kaldır" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Listeyi sessizden çıkar" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol edin." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -8056,14 +8377,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Engeli kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Engeli kaldır" @@ -8073,17 +8394,17 @@ msgstr "Engeli kaldır" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Hesabın engelini kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -8098,12 +8419,12 @@ msgstr "Takibi bırak" #~ msgid "Unfollow" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "{0} adresini takibi bırak" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "" @@ -8115,31 +8436,31 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Beğenmeyi geri al" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Sessizden çıkar" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Sessizden çıkar" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Hesabın sessizliğini kaldır" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "" @@ -8151,12 +8472,12 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Konunun sessizliğini kaldır" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" @@ -8164,20 +8485,25 @@ msgstr "" #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Sabitlemeyi kaldır" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Moderasyon listesini sabitlemeyi kaldır" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" @@ -8185,7 +8511,7 @@ msgstr "" #~ msgid "Unsave" #~ msgstr "Kaydedilenlerden kaldır" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "" @@ -8194,7 +8520,7 @@ msgstr "" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "" @@ -8202,7 +8528,7 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -8216,79 +8542,96 @@ msgid "Unwanted Sexual Content" msgstr "" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Listelerde {displayName} güncelle" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Listelerde {displayName} güncelle" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" #: src/lib/hooks/useOTAUpdate.ts:15 #~ msgid "Update Available" #~ msgstr "Güncelleme Mevcut" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Güncelleniyor..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Bir metin dosyası yükleyin:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Uygulama şifrelerini kullanarak hesabınızın veya şifrenizin tam erişimini vermeden diğer Bluesky istemcilerine giriş yapın." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Varsayılan sağlayıcıyı kullan" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "Uygulama içi tarayıcıyı kullan" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "Varsayılan tarayıcımı kullan" @@ -8296,7 +8639,7 @@ msgstr "Varsayılan tarayıcımı kullan" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "" @@ -8341,36 +8684,36 @@ msgstr "Kullanıcı Sizi Engelledi" #~ msgid "User handle" #~ msgstr "Kullanıcı adı" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "{0} tarafından oluşturulan kullanıcı listesi" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "<0/> tarafından oluşturulan kullanıcı listesi" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Sizin tarafınızdan oluşturulan kullanıcı listesi" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Kullanıcı listesi oluşturuldu" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Kullanıcı listesi güncellendi" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Kullanıcı Listeleri" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Kullanıcı adı veya e-posta adresi" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Kullanıcılar" @@ -8382,22 +8725,20 @@ msgstr "Kullanıcılar" msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "\"{0}\" içindeki kullanıcılar" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "" @@ -8405,7 +8746,7 @@ msgstr "" #~ msgid "Verification code" #~ msgstr "Doğrulama kodu" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" @@ -8413,23 +8754,24 @@ msgstr "" #~ msgid "Verify {0}" #~ msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "E-postayı doğrula" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "E-postamı doğrula" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "E-postamı Doğrula" @@ -8438,14 +8780,15 @@ msgstr "E-postamı Doğrula" msgid "Verify New Email" msgstr "Yeni E-postayı Doğrula" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "E-postanızı Doğrulayın" @@ -8454,21 +8797,21 @@ msgstr "E-postanızı Doğrulayın" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Video Oyunları" @@ -8476,11 +8819,15 @@ msgstr "Video Oyunları" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -8488,12 +8835,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "{0}'ın avatarını görüntüle" @@ -8506,15 +8853,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Hata ayıklama girişini görüntüle" @@ -8534,11 +8889,13 @@ msgstr "Tam konuyu görüntüle" msgid "View information about these labels" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Profili görüntüle" @@ -8546,28 +8903,28 @@ msgstr "Profili görüntüle" msgid "View the avatar" msgstr "Avatarı görüntüle" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8594,11 +8951,11 @@ msgstr "" #~ msgid "We also think you'll like \"For You\" by Skygaze:" #~ msgstr "Ayrıca Skygaze tarafından \"Sana Özel\" beslemesini de beğeneceğinizi düşünüyoruz:" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8606,11 +8963,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Hesabınızın hazır olmasına {estimatedTime} tahmin ediyoruz." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Harika vakit geçirmenizi umuyoruz. Unutmayın, Bluesky:" @@ -8626,19 +8983,19 @@ msgstr "Takipçilerinizden gönderi kalmadı. İşte <0/>'den en son gönderiler #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "\"Keşfet\" beslememizi öneririz:" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar deneyin. Başarısız olmaya devam ederse bu akışı atlayabilirsiniz." @@ -8650,19 +9007,23 @@ msgstr "Hesabınız hazır olduğunda size bildireceğiz." #~ msgid "We'll look into your appeal promptly." #~ msgstr "İtirazınıza hızlı bir şekilde bakacağız." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Sizi aramızda görmekten çok mutluyuz!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Üzgünüz, ancak bu listeyi çözemedik. Bu durum devam ederse, lütfen liste oluşturucu, @{handleOrDid} ile iletişime geçin." @@ -8670,16 +9031,16 @@ msgstr "Üzgünüz, ancak bu listeyi çözemedik. Bu durum devam ederse, lütfen msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Üzgünüz, ancak aramanız tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz." @@ -8687,7 +9048,7 @@ msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8703,7 +9064,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "İlgi alanlarınız nelerdir?" @@ -8715,17 +9076,17 @@ msgstr "" #~ msgid "What is the issue with this {collectionName}?" #~ msgstr "Bu {collectionName} ile ilgili sorun nedir?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Nasılsınız?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Bu gönderide hangi diller kullanılıyor?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Algoritmik beslemelerinizde hangi dilleri görmek istersiniz?" @@ -8735,8 +9096,8 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8751,7 +9112,7 @@ msgstr "Kimler yanıtlayabilir" #~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8784,25 +9145,25 @@ msgid "Why should this user be reviewed?" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Geniş" +#~ msgid "Wide" +#~ msgstr "Geniş" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Gönderi yaz" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Yanıtınızı yazın" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Yazarlar" @@ -8811,12 +9172,12 @@ msgstr "Yazarlar" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Evet" @@ -8825,15 +9186,15 @@ msgstr "Evet" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8841,11 +9202,14 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" + #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8858,7 +9222,7 @@ msgstr "" msgid "You are in line." msgstr "Sıradasınız." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8866,6 +9230,10 @@ msgstr "" msgid "You are not following anyone." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8880,15 +9248,15 @@ msgstr "" #~ msgstr "Bu ayarları daha sonra değiştirebilirsiniz." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Artık yeni şifrenizle giriş yapabilirsiniz." @@ -8900,7 +9268,7 @@ msgstr "" msgid "You do not have any followers." msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -8908,7 +9276,7 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "Henüz hiç davet kodunuz yok! Bluesky'de biraz daha uzun süre kaldıktan sonra size bazı kodlar göndereceğiz." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "Sabitlemiş beslemeniz yok." @@ -8916,7 +9284,7 @@ msgstr "Sabitlemiş beslemeniz yok." #~ msgid "You don't have any saved feeds!" #~ msgstr "Kaydedilmiş beslemeniz yok!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "Kaydedilmiş beslemeniz yok." @@ -8934,8 +9302,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "Bu kullanıcıyı engellediniz. İçeriklerini göremezsiniz." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8962,7 +9330,7 @@ msgstr "" #~ msgid "You have muted this user." #~ msgstr "Bu kullanıcıyı sessize aldınız." -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -8970,8 +9338,8 @@ msgstr "" msgid "You have no feeds." msgstr "Beslemeniz yok." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Listeniz yok." @@ -8979,7 +9347,7 @@ msgstr "Listeniz yok." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "" @@ -8987,11 +9355,11 @@ msgstr "" #~ msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." #~ msgstr "Henüz hiçbir hesabı engellemediniz. Bir hesabı engellemek için, profilinize gidin ve hesaplarının menüsünden \"Hesabı engelle\" seçeneğini seçin." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Henüz hiçbir uygulama şifresi oluşturmadınız. Aşağıdaki düğmeye basarak bir tane oluşturabilirsiniz." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "" @@ -9003,11 +9371,11 @@ msgstr "" msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -9044,7 +9412,11 @@ msgstr "" #~ msgid "You may only add up to 50 profiles" #~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "" @@ -9056,7 +9428,7 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Yetişkin içeriğini etkinleştirmek için 18 yaşında veya daha büyük olmalısınız" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -9064,12 +9436,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "" @@ -9077,47 +9448,51 @@ msgstr "" msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Artık bu konu için bildirim almayacaksınız" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Artık bu konu için bildirim alacaksınız" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Bir \"sıfırlama kodu\" içeren bir e-posta alacaksınız. Bu kodu buraya girin, ardından yeni şifrenizi girin." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "" @@ -9136,7 +9511,7 @@ msgstr "Sıradasınız" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Hazırsınız!" @@ -9149,15 +9524,15 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Beslemenizin sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Hesabınız" @@ -9165,15 +9540,15 @@ msgstr "Hesabınız" msgid "Your account has been deleted" msgstr "Hesabınız silindi" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Doğum tarihiniz" @@ -9181,11 +9556,11 @@ msgstr "Doğum tarihiniz" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Seçiminiz kaydedilecek, ancak daha sonra ayarlarda değiştirilebilir." @@ -9193,9 +9568,9 @@ msgstr "Seçiminiz kaydedilecek, ancak daha sonra ayarlarda değiştirilebilir." #~ msgid "Your default feed is \"Following\"" #~ msgstr "Varsayılan beslemeniz \"Takip Edilenler\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "E-postanız geçersiz gibi görünüyor." @@ -9224,7 +9599,7 @@ msgstr "Takip ettiğiniz besleme boş! Neler olduğunu görmek için daha fazla msgid "Your full handle will be" msgstr "Tam kullanıcı adınız" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Tam kullanıcı adınız <0>@{0} olacak" @@ -9241,15 +9616,15 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "Şifreniz başarıyla değiştirildi!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Gönderiniz yayınlandı" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Gönderileriniz, beğenileriniz ve engellemeleriniz herkese açıktır. Sessizlikleriniz özeldir." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Profiliniz" @@ -9257,14 +9632,14 @@ msgstr "Profiliniz" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Yanıtınız yayınlandı" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Kullanıcı adınız" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 63f814dc8c..a064aebbc3 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -18,7 +18,7 @@ msgstr "" "X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" "X-Crowdin-File-ID: 14\n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "" @@ -27,7 +27,7 @@ msgid "(no email)" msgstr "(немає ел. адреси)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "" @@ -85,15 +85,15 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -102,19 +102,19 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -128,15 +128,15 @@ msgstr "" msgid "{0} <0>in <1>text & tags" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" msgstr "" @@ -144,7 +144,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -206,7 +206,7 @@ msgstr "" #~ msgstr "" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" msgstr "" @@ -218,22 +218,22 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} підписок" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} непрочитаних" @@ -257,12 +257,12 @@ msgstr "" #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" @@ -271,15 +271,15 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "" @@ -287,7 +287,7 @@ msgstr "" #~ msgid "<0>{0} following" #~ msgstr "<0>{0} підписок" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -295,6 +295,10 @@ msgstr "" msgid "<0>{0} members" msgstr "" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "" + #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" #~ msgstr "<0>{followers} <1>{pluralizedFollowers}" @@ -313,18 +317,18 @@ msgstr "" #~ msgstr "<0>Підпишіться на деяких <1>рекомендованих <2>користувачів" #: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" +#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." +#~ msgstr "" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Ласкаво просимо до<1>Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠Недопустимий псевдонім" @@ -332,7 +336,7 @@ msgstr "⚠Недопустимий псевдонім" msgid "24 hours" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "" @@ -348,8 +352,8 @@ msgstr "" #~ msgid "A help tooltip" #~ msgstr "" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "Відкрити навігацію й налаштування" @@ -357,17 +361,16 @@ msgstr "Відкрити навігацію й налаштування" msgid "Access profile and other navigation links" msgstr "Відкрити профіль та іншу навігацію" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "Доступність" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "" @@ -375,21 +378,21 @@ msgstr "" #~ msgid "account" #~ msgstr "обліковий запис" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "Обліковий запис" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "Обліковий запис заблоковано" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "Ви підписалися на обліковий запис" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "Обліковий запис ігнорується" @@ -410,27 +413,27 @@ msgstr "Параметри облікового запису" msgid "Account removed from quick access" msgstr "Обліковий запис вилучено зі швидкого доступу" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "Обліковий запис розблоковано" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "Ви відписалися від облікового запису" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "Обліковий запис більше не ігнорується" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "Додати" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "" @@ -438,27 +441,29 @@ msgstr "" msgid "Add {displayName} to starter pack" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "Додати попередження про вміст" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "Додати користувача до списку" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "Додати обліковий запис" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "Додати альтернативний текст" @@ -466,13 +471,13 @@ msgstr "Додати альтернативний текст" #~ msgid "Add ALT text" #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "Додати пароль застосунку" @@ -500,7 +505,7 @@ msgstr "Додати ігноровані слова та теги" msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" msgstr "" @@ -508,16 +513,16 @@ msgstr "" msgid "Add the default feed of only people you follow" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "Додайте наступний DNS-запис до вашого домену:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "Додати до списку" @@ -530,7 +535,7 @@ msgstr "Додати до моїх стрічок" #~ msgstr "Додано" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "Додано до списку" @@ -542,22 +547,28 @@ msgstr "Додано до моїх стрічок" #~ msgid "Adjust the number of likes a reply must have to be shown in your feed." #~ msgstr "Налаштуйте мінімальну кількість вподобань для того щоб відповідь відобразилася у вашій стрічці." +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "Вміст для дорослих" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "Контент для дорослих вимкнено." -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "Розширені" @@ -565,11 +576,11 @@ msgstr "Розширені" msgid "Algorithm training complete!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "Усі збережені стрічки в одному місці." @@ -583,53 +594,58 @@ msgstr "" #~ msgid "Allow messages from" #~ msgstr "" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "Вже маєте код?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "Вже увійшли як @{0}" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "Альтернативний текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх." +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." msgstr "Було надіслано лист на адресу {0}. Він містить код підтвердження, який можна ввести нижче." @@ -637,7 +653,11 @@ msgstr "Було надіслано лист на адресу {0}. Він мі msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." msgstr "Було надіслано лист на вашу попередню адресу, {0}. Він містить код підтвердження, який ви можете ввести нижче." -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "" @@ -645,15 +665,15 @@ msgstr "" #~ msgid "An error occured" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -666,19 +686,19 @@ msgid "An error occurred while loading the video. Please try again." msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" +#~ msgid "An error occurred while saving the image!" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." #~ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "" @@ -686,12 +706,12 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "" @@ -703,40 +723,40 @@ msgstr "Проблема не включена до цих варіантів" msgid "An issue occurred starting the chat" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "Виникла проблема, будь ласка, спробуйте ще раз." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "та" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Тварини" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "" @@ -744,15 +764,20 @@ msgstr "" msgid "Anti-Social Behavior" msgstr "Антисоціальна поведінка" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "Мова застосунку" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "Пароль застосунку видалено" @@ -764,27 +789,27 @@ msgstr "Назва пароля може містити лише латинсь msgid "App Password names must be at least 4 characters long." msgstr "Назва пароля застосунку мусить бути хоча б 4 символи в довжину." -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "Налаштування пароля застосунків" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "Паролі для застосунків" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "Звернення" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "Оскаржити мітку \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -792,23 +817,23 @@ msgstr "" #~ msgid "Appeal submitted." #~ msgstr "Звернення надіслано." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "Оформлення" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "" @@ -821,7 +846,7 @@ msgstr "" #~ msgid "Are you sure you want delete this starter pack?" #~ msgstr "" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Ви дійсно хочете видалити пароль для застосунку \"{name}\"?" @@ -833,10 +858,14 @@ msgstr "Ви дійсно хочете видалити пароль для за msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -849,11 +878,11 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Ви впевнені, що бажаєте видалити {0} зі стрічки?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "Ви дійсно бажаєте видалити цю чернетку?" @@ -866,11 +895,11 @@ msgid "Are you writing in <0>{0}?" msgstr "Ви пишете <0>{0}?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Мистецтво" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "Художня або нееротична оголеність." @@ -879,22 +908,22 @@ msgid "At least 3 characters" msgstr "Не менше 3-х символів" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "Назад" @@ -902,20 +931,20 @@ msgstr "Назад" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Ґрунтуючись на вашому інтересі до {interestsText}" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "Основні" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "Дата народження" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "Дата народження:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Заблокувати" @@ -924,45 +953,45 @@ msgstr "Заблокувати" msgid "Block account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "Заблокувати" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "Заблокувати обліковий запис?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "Заблокувати облікові записи" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "Заблокувати список" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "Заблокувати ці облікові записи?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "Заблоковано" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином." -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином. Ви не будете бачити їхні пости і вони не будуть бачити ваші." @@ -974,26 +1003,30 @@ msgstr "Заблокований пост." msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокування не заважає цьому маркувальнику додавати мітку до вашого облікового запису." -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Блокування - це відкрита інформація. Заблоковані користувачі не можуть відповісти у ваших темах, згадувати вас або іншим чином взаємодіяти з вами." -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "Блокування не завадить додавання міток до вашого облікового запису, але це зупинить можливість цього облікового запису від коментування ваших постів чи взаємодії з вами." -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "Блог" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" #: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky є відкритою мережею, де ви можете обрати свого хостинг-провайдера. Власний хостинг тепер доступний в бета-версії для розробників." +#~ msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +#~ msgstr "Bluesky є відкритою мережею, де ви можете обрати свого хостинг-провайдера. Власний хостинг тепер доступний в бета-версії для розробників." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" @@ -1015,14 +1048,14 @@ msgstr "" #~ msgstr "Bluesky публічний." #: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" +#~ msgid "Bluesky now has over 10 million users, and I was #{0}!" +#~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky не буде показувати ваш профіль і повідомлення відвідувачам без облікового запису. Інші застосунки можуть не слідувати цьому запиту. Це не робить ваш обліковий запис приватним." @@ -1035,13 +1068,13 @@ msgid "Blur images and filter from feeds" msgstr "Розмити зображення і фільтрувати їх зі стрічки" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Книги" #: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" +#~ msgid "Brag a little!" +#~ msgstr "" #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" @@ -1068,7 +1101,7 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "Організація" @@ -1080,7 +1113,7 @@ msgstr "від —" #~ msgid "by {0}" #~ msgstr "від {0}" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "Від {0}" @@ -1093,14 +1126,26 @@ msgid "by <0/>" msgstr "від <0/>" #: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "Створюючи обліковий запис, ви даєте згоду з {els}." +#~ msgid "By creating an account you agree to the {els}." +#~ msgstr "Створюючи обліковий запис, ви даєте згоду з {els}." + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "створено вами" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "Камера" @@ -1109,33 +1154,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "Може містити лише літери, цифри, пробіли, дефіси та знаки підкреслення, і мати довжину від 4 до 32 символів." #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "Скасувати" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -1147,19 +1191,19 @@ msgstr "Скасувати" msgid "Cancel account deletion" msgstr "Скасувати видалення облікового запису" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "Скасувати зміну псевдоніма" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Скасувати обрізання зображення" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "Скасувати зміни профілю" +#: src/view/com/modals/EditProfile.tsx:239 +#~ msgid "Cancel profile editing" +#~ msgstr "Скасувати зміни профілю" -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "Скасувати цитування посту" @@ -1168,6 +1212,7 @@ msgid "Cancel reactivation and log out" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "Скасувати пошук" @@ -1175,14 +1220,14 @@ msgstr "Скасувати пошук" msgid "Cancels opening the linked website" msgstr "Скасовує відкриття посилання" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "" @@ -1191,24 +1236,28 @@ msgid "Captions & alt text" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" +#~ msgid "Celebrating {0} users" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "Змінити псевдонім" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "Змінити псевдонім" @@ -1216,12 +1265,12 @@ msgstr "Змінити псевдонім" msgid "Change my email" msgstr "Змінити адресу електронної пошти" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "Змінити пароль" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Зміна пароля" @@ -1233,9 +1282,10 @@ msgstr "Змінити мову поста на {0}" msgid "Change Your Email" msgstr "Змінити адресу електронної пошти" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "" @@ -1245,14 +1295,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "" @@ -1277,7 +1327,7 @@ msgstr "Перевірити мій статус" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Ознайомтеся з деякими рекомендованими користувачами. Слідкуйте за ними, щоб побачити дописи від подібних користувачів." -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1297,23 +1347,27 @@ msgstr "Перевірте свою поштову скриньку на ная #~ msgid "Choose at least {0} more" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "Оберіть хостинг-провайдера" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "Оберіть алгоритми, що наповнюватимуть ваші стрічки." @@ -1335,7 +1389,7 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Виберіть ваші основні стрічки" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "Вкажіть пароль" @@ -1347,16 +1401,15 @@ msgstr "Вкажіть пароль" #~ msgid "Clear all legacy storage data (restart after this)" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "Очистити пошуковий запит" @@ -1364,11 +1417,11 @@ msgstr "Очистити пошуковий запит" #~ msgid "Clears all legacy storage data" #~ msgstr "Видаляє всі застарілі дані зі сховища" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "Видаляє всі дані зі сховища" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "натисніть тут" @@ -1392,15 +1445,15 @@ msgstr "Натисніть тут, щоб відкрити меню тегів #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Натисніть тут, щоб відкрити меню тегів для #{tag}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "" @@ -1412,27 +1465,25 @@ msgstr "Клімат" msgid "Clip 🐴 clop 🐴" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "Закрити" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "Закрити діалогове вікно" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "Закрити сповіщення" @@ -1440,12 +1491,11 @@ msgstr "Закрити сповіщення" msgid "Close bottom drawer" msgstr "Закрити нижнє меню" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "" @@ -1458,29 +1508,29 @@ msgid "Close image viewer" msgstr "Закрити перегляд зображення" #: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "" +#~ msgid "Close modal" +#~ msgstr "" -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "Закрити панель навігації" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Закрити діалогове вікно" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "Закриває нижню панель навігації" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Закриває сповіщення про оновлення пароля" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "Закриває редактор постів і видаляє чернетку" +#: src/view/com/composer/Composer.tsx:552 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Закриває редактор постів і видаляє чернетку" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1490,41 +1540,49 @@ msgstr "Закриває перегляд зображення" msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Комедія" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Комікси" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Правила спільноти" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "Завершіть ознайомлення та розпочніть користуватися вашим обліковим записом" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "Виконайте завдання" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Створюйте пости до {MAX_GRAPHEME_LENGTH} символів у довжину" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "Відповісти" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "" + #: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51 #~ msgid "Compressing..." #~ msgstr "" @@ -1537,17 +1595,19 @@ msgstr "Відповісти" msgid "Configure content filtering setting for category: {name}" msgstr "Налаштувати фільтрування вмісту для категорії: {name}" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "Налаштовано <0>у налаштуваннях модерації." -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "Підтвердити" @@ -1564,30 +1624,35 @@ msgstr "Підтвердити налаштування мови вмісту" msgid "Confirm delete account" msgstr "Підтвердити видалення облікового запису" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "Підтвердіть ваш вік:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "Підтвердіть вашу дату народження" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "Код підтвердження" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "З’єднання..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Служба підтримки" @@ -1599,12 +1664,12 @@ msgstr "Служба підтримки" msgid "Content Blocked" msgstr "Заблокований вміст" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "Фільтри контенту" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "Мови" @@ -1614,13 +1679,13 @@ msgid "Content Not Available" msgstr "Вміст недоступний" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "Попередження про вміст" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "Попередження про вміст" @@ -1628,12 +1693,12 @@ msgstr "Попередження про вміст" msgid "Context menu backdrop, click to close the menu." msgstr "Тло контекстного меню натисніть, щоб закрити меню." -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "Далі" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "Продовжити як {0} (поточний користувач)" @@ -1641,9 +1706,9 @@ msgstr "Продовжити як {0} (поточний користувач)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "Перейти до наступного кроку" @@ -1655,7 +1720,7 @@ msgstr "Перейти до наступного кроку" #~ msgid "Continue to the next step without following any accounts" #~ msgstr "Перейдіть до наступного кроку, ні на кого не підписуючись" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "" @@ -1668,20 +1733,21 @@ msgstr "Кухарство" msgid "Copied" msgstr "Скопійовано" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "Версію збірки скопійовано до буфера обміну" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "Скопійовано" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "Скопійовано!" @@ -1689,17 +1755,17 @@ msgstr "Скопійовано!" msgid "Copies app password" msgstr "Копіює пароль застосунку" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Скопіювати" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "Копіювати {0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Скопіювати код" @@ -1711,12 +1777,12 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "Копіювати посилання на список" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "Копіювати посилання на пост" @@ -1725,17 +1791,17 @@ msgstr "Копіювати посилання на пост" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "Копіювати текст повідомлення" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Політика захисту авторського права" @@ -1747,11 +1813,11 @@ msgstr "Політика захисту авторського права" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "Не вдалося завантажити стрічку" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "Не вдалося завантажити список" @@ -1771,34 +1837,39 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "Створити новий обліковий запис" +#~ msgid "Create a new account" +#~ msgstr "Створити новий обліковий запис" -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "Створити новий обліковий запис Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "Створити обліковий запис" @@ -1807,11 +1878,11 @@ msgstr "Створити обліковий запис" msgid "Create an account" msgstr "Створити обліковий запис" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "" @@ -1820,7 +1891,7 @@ msgid "Create App Password" msgstr "Створити пароль застосунку" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Створити новий обліковий запис" @@ -1832,7 +1903,7 @@ msgstr "Створити новий обліковий запис" msgid "Create report for {0}" msgstr "Створити звіт для {0}" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "Створено: {0}" @@ -1841,46 +1912,42 @@ msgstr "Створено: {0}" #~ msgstr "Створює картку з мініатюрою. Посилання картки: {url}" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Культура" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "Користувацький" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "Власний домен" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Кастомні стрічки, створені спільнотою, подарують вам нові враження та допоможуть знайти контент, який ви любите." -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "Налаштування медіа зі сторонніх вебсайтів." -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "Темна" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "Темний режим" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "" @@ -1888,38 +1955,43 @@ msgstr "" #~ msgid "Dark Theme" #~ msgstr "Темна тема" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "Дата народження" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "Налагодження модерації" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "Панель налагодження" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Видалити" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "Видалити обліковий запис" @@ -1931,16 +2003,16 @@ msgstr "Видалити обліковий запис" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "Видалити пароль для застосунку" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "Видалити пароль для застосунку?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "" @@ -1948,7 +2020,7 @@ msgstr "" msgid "Delete for me" msgstr "" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "Видалити список" @@ -1964,33 +2036,33 @@ msgstr "" msgid "Delete my account" msgstr "Видалити мій обліковий запис" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "Видалити мій обліковий запис..." -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "Видалити пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" msgstr "" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "Видалити цей список?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "Видалити цей пост?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "Видалено" @@ -1998,27 +2070,35 @@ msgstr "Видалено" msgid "Deleted post." msgstr "Видалений пост." -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "Опис" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "" @@ -2026,32 +2106,31 @@ msgstr "" msgid "Dialog: adjust who can interact with this post" msgstr "" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "Порожній пост. Ви хотіли щось написати?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "Тьмяний" #: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "" +#~ msgid "Direct messages are here!" +#~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:111 #~ msgid "Disable autoplay for GIFs" #~ msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "" @@ -2059,7 +2138,7 @@ msgstr "" #~ msgid "Disable haptics" #~ msgstr "Вимкнути тактильні ефекти" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "" @@ -2070,22 +2149,27 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "Вимкнено" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "Видалити" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "Відхилити чернетку?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросити застосунки не показувати мій обліковий запис без входу" @@ -2102,15 +2186,15 @@ msgstr "Відкрийте для себе нові стрічки" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "Відкрийте для себе нові стрічки" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "" @@ -2118,19 +2202,29 @@ msgstr "" msgid "Dismiss getting started guide" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" msgstr "Ім'я" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "Ім'я" +#: src/view/com/modals/EditProfile.tsx:175 +#~ msgid "Display Name" +#~ msgstr "Ім'я" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "Панель DNS" @@ -2138,6 +2232,14 @@ msgstr "Панель DNS" msgid "Do not apply this mute word to users you follow" msgstr "" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Не містить оголеності." @@ -2146,38 +2248,37 @@ msgstr "Не містить оголеності." msgid "Doesn't begin or end with a hyphen" msgstr "Не починається або закінчується дефісом" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "Значення домену" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "Домен перевірено!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Готово" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "Готово" @@ -2186,20 +2287,24 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "Завантажити CAR файл" #: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" +#~ msgid "Download image" +#~ msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "Перетягніть і відпустіть, щоб додати зображення" @@ -2211,39 +2316,43 @@ msgstr "Перетягніть і відпустіть, щоб додати зо msgid "Duration:" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "для прикладу, olenka" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "напр. Тарас Шевченко" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/EditProfile.tsx:180 +#~ msgid "e.g. Alice Roberts" +#~ msgstr "напр. Тарас Шевченко" + +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "для прикладу, olenka.ua" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "напр. Художниця, собачниця та завзята читачка." +#: src/view/com/modals/EditProfile.tsx:198 +#~ msgid "e.g. Artist, dog-lover, and avid reader." +#~ msgstr "напр. Художниця, собачниця та завзята читачка." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "Напр. художня оголеність." -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "напр. Чудові писарі" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "напр. Спамери" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "напр. Писарі, що нічого не пропускають." -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "напр. Користувачі, що неодноразово відповідали рекламою." @@ -2251,58 +2360,59 @@ msgstr "напр. Користувачі, що неодноразово відп msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "Редагувати" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Змінити фото профілю" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "Редагувати зображення" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "Редагувати опис списку" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "Редагування списку" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Редагувати мої стрічки" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "Редагувати мій профіль" +#: src/view/com/modals/EditProfile.tsx:147 +#~ msgid "Edit my profile" +#~ msgstr "Редагувати мій профіль" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "" @@ -2311,13 +2421,15 @@ msgstr "" msgid "Edit post interaction settings" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "Редагувати профіль" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "Редагувати профіль" @@ -2326,11 +2438,11 @@ msgstr "Редагувати профіль" #~ msgid "Edit Saved Feeds" #~ msgstr "Редагувати збережені стрічки" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "Редагувати список користувачів" @@ -2338,20 +2450,20 @@ msgstr "Редагувати список користувачів" msgid "Edit who can reply" msgstr "" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "Редагувати ваш псевдонім для показу" +#: src/view/com/modals/EditProfile.tsx:188 +#~ msgid "Edit your display name" +#~ msgstr "Редагувати ваш псевдонім для показу" -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "Редагувати опис вашого профілю" +#: src/view/com/modals/EditProfile.tsx:206 +#~ msgid "Edit your profile description" +#~ msgstr "Редагувати опис вашого профілю" -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Освіта" @@ -2359,7 +2471,7 @@ msgstr "Освіта" #~ msgid "Either choose \"Everybody\" or \"Nobody\"" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Ел. адреса" @@ -2368,11 +2480,11 @@ msgstr "Ел. адреса" msgid "Email 2FA disabled" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "Адреса електронної пошти" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "" @@ -2389,21 +2501,21 @@ msgstr "Ел. адресу оновлено" msgid "Email verified" msgstr "Електронну адресу перевірено" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "Ел. адреса:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "Вбудований HTML код" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "Вбудований пост" @@ -2411,11 +2523,11 @@ msgstr "Вбудований пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Вставте цей пост у Ваш сайт. Просто скопіюйте цей скрипт і вставте його в HTML код вашого сайту." -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "Увімкнути лише {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "Дозволити вміст для дорослих" @@ -2428,21 +2540,21 @@ msgstr "Дозволити вміст для дорослих" #~ msgid "Enable adult content in your feeds" #~ msgstr "Увімкнути вміст для дорослих у ваших стрічках" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "Увімкнути зовнішні медіа" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "Увімкнути медіапрогравачі для" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "" @@ -2450,17 +2562,17 @@ msgstr "" #~ msgid "Enable this setting to only see replies between people you follow." #~ msgstr "Увімкніть цей параметр, щоб бачити відповіді тільки від людей, на яких ви підписані." -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "Увімкнути лише джерело" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "Увімкнено" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "Кінець стрічки" @@ -2472,7 +2584,7 @@ msgstr "Кінець стрічки" #~ msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." #~ msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "" @@ -2480,7 +2592,7 @@ msgstr "" msgid "Enter a name for this App Password" msgstr "Введіть ім'я для цього пароля застосунку" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Введіть пароль" @@ -2489,6 +2601,10 @@ msgstr "Введіть пароль" msgid "Enter a word or tag" msgstr "Введіть слово або тег" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "Введіть код підтвердження" @@ -2497,20 +2613,20 @@ msgstr "Введіть код підтвердження" msgid "Enter the code you received to change your password." msgstr "Введіть код, який ви отримали, щоб змінити пароль." -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "Введіть домен, який ви хочете використовувати" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "Введіть адресу електронної пошти, яку ви використовували для створення облікового запису. Ми надішлемо вам код підтвердження, щоб ви могли встановити новий пароль." -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "Введіть вашу дату народження" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "Введіть адресу електронної пошти" @@ -2522,10 +2638,14 @@ msgstr "Введіть вашу нову електронну пошту вищ msgid "Enter your new email address below." msgstr "Введіть нову адресу електронної пошти." -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "Введіть псевдонім та пароль" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "" @@ -2534,12 +2654,12 @@ msgstr "" msgid "Error receiving captcha response." msgstr "Помилка отримання відповіді Captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "Помилка:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "Усі" @@ -2551,10 +2671,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "" @@ -2574,7 +2692,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "" @@ -2582,11 +2700,11 @@ msgstr "" msgid "Exits account deletion process" msgstr "Виходить з процесу видалення облікового запису" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "Вихід з процесу зміни псевдоніму користувача" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Виходить з процесу обрізання зображень" @@ -2606,12 +2724,16 @@ msgstr "Розгорнути опис" msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "" @@ -2631,32 +2753,32 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "Експорт моїх даних" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "Експорт моїх даних" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "Зовнішні медіа" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Зовнішні медіа можуть дозволяти вебсайтам збирати інформацію про вас та ваш пристрій. Інформація не надсилається та не запитується, допоки не натиснуто кнопку «Відтворити»." -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "Налаштування зовнішніх медіа" @@ -2665,12 +2787,12 @@ msgstr "Налаштування зовнішніх медіа" msgid "Failed to create app password." msgstr "Не вдалося створити пароль застосунку." -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "Не вдалося створити список. Перевірте інтернет-з'єднання і спробуйте ще раз." @@ -2678,11 +2800,11 @@ msgstr "Не вдалося створити список. Перевірте і msgid "Failed to delete message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробуйте ще раз" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" msgstr "" @@ -2691,12 +2813,11 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "" @@ -2718,7 +2839,11 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "Не вдалося зберегти зображення: {0}" @@ -2726,7 +2851,7 @@ msgstr "Не вдалося зберегти зображення: {0}" msgid "Failed to save notification preferences, please try again" msgstr "" -#: src/components/dms/MessageItem.tsx:225 +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "" @@ -2734,36 +2859,35 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "Стрічка" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "Стрічка від {0}" @@ -2777,19 +2901,23 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "Зворотний зв'язок" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "Стрічки" @@ -2797,7 +2925,7 @@ msgstr "Стрічки" #~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." #~ msgstr "Стрічки створюються користувачами для відбору постів. Оберіть стрічки, що вас цікавлять." -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Стрічки – це алгоритми, створені користувачами з деяким досвідом програмування. <0/> для додаткової інформації." @@ -2805,11 +2933,12 @@ msgstr "Стрічки – це алгоритми, створені корис #~ msgid "Feeds can be topical as well!" #~ msgstr "Стрічки також можуть бути тематичними!" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "Вміст файлу" @@ -2821,7 +2950,7 @@ msgstr "" msgid "Filter from feeds" msgstr "Фільтрувати зі стрічок" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "Завершення" @@ -2835,7 +2964,7 @@ msgstr "Знайдіть облікові записи для стеження" #~ msgid "Find more feeds and accounts to follow in the Explore page." #~ msgstr "" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "" @@ -2851,15 +2980,15 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "Пошук подібних облікових записів..." -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "Оберіть, що ви хочете бачити у своїй стрічці підписок." -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "Налаштуйте відображення обговорень." -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "" @@ -2871,25 +3000,25 @@ msgstr "" msgid "Fitness" msgstr "Фітнес" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "Гнучкий" #: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "Віддзеркалити горизонтально" +#~ msgid "Flip horizontal" +#~ msgstr "Віддзеркалити горизонтально" #: src/view/com/modals/EditImage.tsx:121 #: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "Віддзеркалити вертикально" +#~ msgid "Flip vertically" +#~ msgstr "Віддзеркалити вертикально" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "Підписатися" @@ -2898,12 +3027,12 @@ msgctxt "action" msgid "Follow" msgstr "Підписатись" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "Підписатися на {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "" @@ -2911,13 +3040,13 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "Підписатися на обліковий запис" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "" @@ -2925,16 +3054,16 @@ msgstr "" #~ msgid "Follow All" #~ msgstr "Підписатися на всіх" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Підписатися навзаєм" + #: src/view/com/profile/FollowButton.tsx:79 msgctxt "action" msgid "Follow Back" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 -msgid "Follow Back" -msgstr "Підписатися навзаєм" - #: src/view/screens/Search/Explore.tsx:334 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2971,7 +3100,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "Ваші підписки" @@ -2987,49 +3116,49 @@ msgstr "підписка на вас" msgid "followed you back" msgstr "" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "Підписники" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Підписані" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "Підписання на \"{0}\"" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "Налаштування стрічки підписок" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "Налаштування стрічки підписок" @@ -3037,16 +3166,26 @@ msgstr "Налаштування стрічки підписок" #~ msgid "Following shows the latest posts from people you follow." #~ msgstr "" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Підписаний(-на) на вас" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "Підписаний(-на) на вас" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Їжа" @@ -3058,20 +3197,25 @@ msgstr "З міркувань безпеки нам потрібно буде в msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "З міркувань безпеки цей пароль відображається лише один раз. Якщо ви втратите цей пароль, вам потрібно буде згенерувати новий." +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Забули пароль" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "Забули пароль?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "Забули пароль?" @@ -3079,34 +3223,34 @@ msgstr "Забули пароль?" msgid "Frequently Posts Unwanted Content" msgstr "Часто публікує неприйнятний контент" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "Від @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "Зі стрічки \"<0/>\"" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "Галерея" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" msgstr "" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "" #: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "" +#~ msgid "Get started" +#~ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 @@ -3121,7 +3265,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "" @@ -3129,14 +3273,13 @@ msgstr "" msgid "Glaring violations of law or terms of service" msgstr "Грубі порушення закону чи умов використання" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Назад" @@ -3144,10 +3287,10 @@ msgstr "Назад" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Назад" @@ -3155,24 +3298,24 @@ msgstr "Назад" #~ msgid "Go back to previous screen" #~ msgstr "" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Повернутися до попереднього кроку" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Повернутися на головну" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "Повернутися на головну" @@ -3181,11 +3324,11 @@ msgstr "Повернутися на головну" #~ msgid "Go to @{queryMaybeHandle}" #~ msgstr "Перейти до @{queryMaybeHandle}" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "Далі" @@ -3203,6 +3346,8 @@ msgid "Go to user's profile" msgstr "" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "Графічний медіаконтент" @@ -3210,11 +3355,11 @@ msgstr "Графічний медіаконтент" msgid "Half way there!" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "Псевдонім" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "" @@ -3222,24 +3367,24 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "Домагання, тролінг або нетерпимість" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "Хештег" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "Хештег: #{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "Виникли проблеми?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "Довідка" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -3259,22 +3404,22 @@ msgstr "" msgid "Here is your app password." msgstr "Це ваш пароль для застосунків." -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "Приховати" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "Сховати" @@ -3284,36 +3429,36 @@ msgstr "Сховати" #~ msgid "Hide post" #~ msgstr "Сховати пост" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "Приховати вміст" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "Сховати цей пост?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "Сховати список користувачів" @@ -3337,7 +3482,7 @@ msgstr "Хм, сервер стрічки надіслав нам незрозу msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Хм, ми не можемо знайти цю стрічку. Можливо вона була видалена." -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Здається, у нас виникли проблеми з завантаженням цих даних. Перегляньте деталі нижче. Якщо проблема не зникне, будь ласка, зв'яжіться з нами." @@ -3345,45 +3490,49 @@ msgstr "Здається, у нас виникли проблеми з зава msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хм, ми не змогли завантажити цей сервіс модерації." -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "Головна" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "Host:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "Хостинг-провайдер" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "Як ви хочете відкрити це посилання?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "У мене є код" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "У мене є код підтвердження" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "Я маю власний домен" @@ -3397,18 +3546,18 @@ msgid "If alt text is long, toggles alt text expanded state" msgstr "Розкриває альтернативний текст, якщо текст задовгий" #: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "Якщо не вибрано жодного варіанту - підходить для всіх." +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "Якщо не вибрано жодного варіанту - підходить для всіх." -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "Якщо ви ще не досягли повноліття відповідно до законів вашої країни, ваш батьківський або юридичний опікун повинен прочитати ці Умови від вашого імені." -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "Якщо ви видалите цей список, ви не зможете його відновити." -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "Якщо ви видалите цей пост, ви не зможете його відновити." @@ -3424,16 +3573,15 @@ msgstr "" msgid "Illegal and Urgent" msgstr "Незаконний та невідкладний" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "Зображення" #: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "Опис зображення" +#~ msgid "Image alt text" +#~ msgstr "Опис зображення" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "" @@ -3449,7 +3597,7 @@ msgstr "" msgid "Inappropriate messages or explicit links" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "Введіть код, надісланий на вашу електронну пошту для скидання пароля" @@ -3461,7 +3609,7 @@ msgstr "Введіть код підтвердження для видаленн msgid "Input name for app password" msgstr "Введіть ім'я для пароля застосунку" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Введіть новий пароль" @@ -3469,7 +3617,7 @@ msgstr "Введіть новий пароль" msgid "Input password for account deletion" msgstr "Введіть пароль для видалення облікового запису" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "" @@ -3477,15 +3625,15 @@ msgstr "" #~ msgid "Input the password tied to {identifier}" #~ msgstr "Введіть пароль, прив'язаний до {identifier}" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "Введіть псевдонім або ел. адресу, які ви використовували для реєстрації" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "Введіть ваш пароль" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "Введіть бажаного хостинг-провайдера" @@ -3493,15 +3641,19 @@ msgstr "Введіть бажаного хостинг-провайдера" msgid "Input your user handle" msgstr "Введіть ваш псевдонім" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "" #: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" +#~ msgid "Introducing Direct Messages" +#~ msgstr "" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3510,12 +3662,12 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Невірний або непідтримуваний пост" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Невірне ім'я користувача або пароль" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "" @@ -3523,7 +3675,7 @@ msgstr "" msgid "Invite a Friend" msgstr "Запросити друга" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "Код запрошення" @@ -3551,39 +3703,48 @@ msgstr "" msgid "Invites, but personal" msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "" + #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Ми показуємо пости людей, за якими ви слідкуєте в тому порядку в якому вони публікуються." -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." msgstr "" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "Вакансії" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" +#~ msgid "Joined {0}" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Журналістика" @@ -3591,18 +3752,23 @@ msgstr "Журналістика" #~ msgid "label has been placed on this {labelTarget}" #~ msgstr "мітка була розміщена на цьому {labelTarget}" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "Помічений {0}." -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "Мітку додано автором." -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "Мітки" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Мітки є анотаціями для користувачів і контенту. Вони можуть використовуватися для приховування, попередження та категоризації мережі." @@ -3623,48 +3789,58 @@ msgstr "Мітки на вашому контенті" msgid "Language selection" msgstr "Вибір мови" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "Налаштування мови" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "Налаштування мов" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "Мови" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Нещодавні" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "Дізнатися більше" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" msgstr "" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "Дізнайтеся більше про те, яка модерація застосована до цього вмісту." #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "Дізнатися більше про це попередження" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "Дізнатися більше про те, що є публічним в Bluesky." -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "Дізнатися більше." @@ -3685,7 +3861,7 @@ msgstr "" msgid "Leave conversation" msgstr "" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "Залиште їх усі невідміченими, щоб бачити пости незалежно від мови." @@ -3701,21 +3877,20 @@ msgstr "ще залишилося." #~ msgid "Legacy storage cleared, you need to restart the app now." #~ msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок." -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Давайте відновимо ваш пароль!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "Злітаємо!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "Світла" @@ -3732,21 +3907,21 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "Вподобати цю стрічку" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "Сподобалося" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Сподобався користувачу" @@ -3772,7 +3947,7 @@ msgstr "вподобав(-ла) вашу стрічку" msgid "liked your post" msgstr "сподобався ваш пост" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Вподобання" @@ -3780,24 +3955,24 @@ msgstr "Вподобання" msgid "Likes on this post" msgstr "Вподобайки цього поста" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "Список" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "Аватар списку" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "Список заблоковано" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "Список від {0}" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "Список видалено" @@ -3805,32 +3980,31 @@ msgstr "Список видалено" msgid "List has been hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "Список ігнорується" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "Назва списку" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "Список розблоковано" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "Список більше не ігнорується" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "Списки" @@ -3850,22 +4024,22 @@ msgstr "" msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "Завантажити нові сповіщення" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Завантажити нові пости" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "Завантаження..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "Звіт" @@ -3881,19 +4055,27 @@ msgstr "" msgid "Log out" msgstr "Вийти" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "Видимість для користувачів без облікового запису" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "Увійти до облікового запису, якого немає в списку" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "Виглядає як XXXXX-XXXXXXX" @@ -3913,7 +4095,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "" @@ -3930,30 +4112,35 @@ msgstr "Налаштовуйте ваші ігноровані слова та msgid "Mark as read" msgstr "" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "Медіа" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "згадані користувачі" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "Згадані користувачі" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "Меню" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "" @@ -3961,23 +4148,23 @@ msgstr "" msgid "Message from server: {0}" msgstr "Повідомлення від сервера: {0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "" @@ -3994,63 +4181,63 @@ msgid "Misleading Post" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "" +#~ msgid "Mode" +#~ msgstr "" -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "Модерація" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "Деталі модерації" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "Список модерації від {0}" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" msgstr "Список модерації від <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "Список модерації від вас" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "Список модерації створено" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "Список модерації оновлено" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Списки для модерації" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "Статус модерації" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "Інструменти модерації" @@ -4059,7 +4246,7 @@ msgstr "Інструменти модерації" msgid "Moderator has chosen to set a general warning on the content." msgstr "Модератор вирішив встановити загальне попередження на вміст." -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "Більше" @@ -4067,46 +4254,47 @@ msgstr "Більше" msgid "More feeds" msgstr "Більше стрічок" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "Додаткові опції" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "За кількістю вподобань" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Ігнорувати" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -msgid "Mute" -msgstr "Ігнорувати" - #: src/components/TagMenu/index.web.tsx:116 msgid "Mute {truncatedTag}" msgstr "Ігнорувати {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "Ігнорувати обліковий запис" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "Ігнорувати облікові записи" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "Ігнорувати всі пости {displayTag}" @@ -4127,7 +4315,7 @@ msgstr "" msgid "Mute in:" msgstr "" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "Ігнорувати список" @@ -4136,7 +4324,7 @@ msgstr "Ігнорувати список" #~ msgid "Mute notifications" #~ msgstr "" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "Ігнорувати ці облікові записи?" @@ -4164,13 +4352,13 @@ msgstr "Ігнорувати це слово лише у тегах" msgid "Mute this word until you unmute it" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "Ігнорувати обговорення" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "Ігнорувати слова та теги" @@ -4178,16 +4366,16 @@ msgstr "Ігнорувати слова та теги" #~ msgid "Muted" #~ msgstr "Ігнорується" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Ігноровані облікові записи автоматично вилучаються із вашої стрічки та сповіщень. Ігнорування є повністю приватним." @@ -4195,41 +4383,41 @@ msgstr "Ігноровані облікові записи автоматичн msgid "Muted by \"{0}\"" msgstr "Проігноровано списком \"{0}\"" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "Ігноровані слова та теги" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ігнорування є приватним. Ігноровані користувачі можуть взаємодіяти з вами, але ви не бачитимете їх пости і не отримуватимете від них сповіщень." -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "Мій день народження" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "Мої стрічки" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Мій профіль" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "Мої збережені стрічки" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "Мої збережені стрічки" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Ім'я" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "Необхідна назва" @@ -4241,28 +4429,32 @@ msgid "Name or Description Violates Community Standards" msgstr "Ім'я чи Опис порушують стандарти спільноти" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Природа" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:86 +#~ msgid "Navigate to starter pack" +#~ msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Переходить до наступного екрана" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "Переходить до вашого профілю" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "Хочете повідомити про порушення авторських прав?" @@ -4272,34 +4464,38 @@ msgstr "Хочете повідомити про порушення авторс #~ msgid "Never lose access to your followers and data." #~ msgstr "Ніколи не втрачайте доступ до ваших даних та підписників." -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "Ніколи не втрачайте доступ до ваших підписників та даних." -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "Неважливо, створіть для мене псевдонім" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "Новий" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "Новий" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "Новий список модерації" @@ -4311,22 +4507,22 @@ msgstr "Новий пароль" msgid "New Password" msgstr "Новий Пароль" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "Новий пост" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "Новий пост" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "Новий пост" @@ -4335,30 +4531,30 @@ msgstr "Новий пост" msgid "New user info dialog" msgstr "" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "Новий список користувачів" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "Спочатку найновіші" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Новини" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4373,35 +4569,39 @@ msgstr "Далі" msgid "Next image" msgstr "Наступне зображення" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "Ні" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Опис відсутній" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "Немає панелі DNS" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "Ви більше не підписані на {0}" @@ -4409,11 +4609,11 @@ msgstr "Ви більше не підписані на {0}" msgid "No longer than 253 characters" msgstr "Не може бути довшим за 253 символи" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "" @@ -4421,10 +4621,8 @@ msgstr "" msgid "No notifications yet!" msgstr "Ще ніяких сповіщень!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "" @@ -4432,16 +4630,24 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "Результати відсутні" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "" @@ -4449,19 +4655,18 @@ msgstr "" msgid "No results found" msgstr "Нічого не знайдено" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "Нічого не знайдено за запитом «{query}»" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "Нічого не знайдено за запитом «{query}»" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "" @@ -4469,12 +4674,12 @@ msgstr "" #~ msgid "No search results found for \"{searchText}\"." #~ msgstr "" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "Ні, дякую" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "Ніхто" @@ -4482,12 +4687,21 @@ msgstr "Ніхто" #~ msgid "Nobody can reply" #~ msgstr "" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Поки що це нікому не сподобалося. Можливо, ви повинні бути першим!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4499,8 +4713,8 @@ msgstr "Несексуальна оголеність" #~ msgid "Not Applicable." #~ msgstr "Не застосовно." -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Не знайдено" @@ -4509,49 +4723,48 @@ msgstr "Не знайдено" msgid "Not right now" msgstr "Пізніше" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "Примітка щодо поширення" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примітка: Bluesky є відкритою і публічною мережею. Цей параметр обмежує видимість вашого вмісту лише у застосунках і на сайті Bluesky, але інші застосунки можуть цього не дотримуватися. Ваш вміст все ще може бути показаний відвідувачам без облікового запису іншими застосунками і вебсайтами." -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "Сповіщення" @@ -4559,11 +4772,12 @@ msgstr "Сповіщення" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "Оголеність" @@ -4579,29 +4793,28 @@ msgstr "Нагота чи матеріали для дорослих не поз msgid "Off" msgstr "Вимкнено" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "О, ні!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "Ой! Щось пішло не так." #: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" +#~ msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" +#~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "OK" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "Добре" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "Спочатку найдавніші" @@ -4613,11 +4826,11 @@ msgstr "Спочатку найдавніші" #~ msgid "on {str}" #~ msgstr "" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "Скинути ознайомлення" @@ -4625,11 +4838,11 @@ msgstr "Скинути ознайомлення" #~ msgid "Onboarding tour step {0}: {1}" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "" @@ -4645,7 +4858,11 @@ msgstr "Тільки {0} можуть відповідати." msgid "Only contains letters, numbers, and hyphens" msgstr "Тільки літери, цифри та дефіс" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -4654,42 +4871,46 @@ msgid "Oops, something went wrong!" msgstr "Ой, щось пішло не так!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Ой!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "Відкрити" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "Емоджі" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "Вбудований браузер" @@ -4697,7 +4918,7 @@ msgstr "Вбудований браузер" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "Відкрити налаштування ігнорування слів і тегів" @@ -4705,20 +4926,20 @@ msgstr "Відкрити налаштування ігнорування слі msgid "Open navigation" msgstr "Відкрити навігацію" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "Відкрити storybook сторінку" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "Відкрити системний журнал" @@ -4726,15 +4947,19 @@ msgstr "Відкрити системний журнал" msgid "Opens {numItems} options" msgstr "Відкриває меню з {numItems} опціями" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Відкриває додаткову інформацію про запис для налагодження" @@ -4742,41 +4967,41 @@ msgstr "Відкриває додаткову інформацію про зап #~ msgid "Opens an expanded list of users in this notification" #~ msgstr "Відкрити розширений список користувачів у цьому сповіщенні" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Відкриває камеру на пристрої" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Відкрити редактор" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "Відкриває налаштування мов" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Відкриває фотогалерею пристрою" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "Відкриває налаштування зовнішніх вбудувань" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Відкриває процес створення нового облікового запису Bluesky" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "Відкриває процес входу в існуючий обліковий запис Bluesky" @@ -4788,39 +5013,39 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Відкриває список кодів запрошення" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Відкриває модальне вікно для підтвердження видалення облікового запису. Потребує код з електронної пошти" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "Відкриває модальне вікно для зміни паролю в Bluesky" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Відкриває модальне вікно для вибору псевдоніму в Bluesky" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Відкриває модальне вікно для завантаження даних з вашого облікового запису Bluesky (репозиторій)" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "Відкриває модальне вікно для перевірки електронної пошти" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "Відкриває діалог налаштування власного домену як псевдоніму" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "Відкриває налаштування модерації" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Відкриває форму скидання пароля" @@ -4829,15 +5054,15 @@ msgstr "Відкриває форму скидання пароля" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Відкриває сторінку з усіма збереженими стрічками" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "Відкриває сторінку з усіма збереженими каналами" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "Відкриває налаштування паролів для застосунків" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "Відкриває налаштування стрічки підписок" @@ -4849,25 +5074,25 @@ msgstr "Відкриває посилання" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "Відкриває системний журнал" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "Відкриває налаштування гілок" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "" @@ -4875,8 +5100,8 @@ msgstr "" msgid "Option {0} of {numItems}" msgstr "Опція {0} з {numItems}" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "За бажанням надайте додаткову інформацію нижче:" @@ -4884,7 +5109,7 @@ msgstr "За бажанням надайте додаткову інформац msgid "Options:" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "Або якісь із наступних варіантів:" @@ -4897,14 +5122,15 @@ msgid "Or, log into one of your other accounts." msgstr "" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "Інше" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "Інший обліковий запис" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "" @@ -4912,21 +5138,21 @@ msgstr "" msgid "Other..." msgstr "Інші..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Сторінку не знайдено" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "Сторінку не знайдено" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4936,42 +5162,42 @@ msgstr "Пароль" msgid "Password Changed" msgstr "Пароль змінено" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "Пароль змінено" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "Пароль змінено!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "Люди" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "Люди, на яких підписаний(-на) @{0}" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "Люди, які підписані на @{0}" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "Потрібен дозвіл на доступ до камери." -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Дозвіл на доступ до камери був заборонений. Будь ласка, включіть його в налаштуваннях системи." @@ -4980,42 +5206,51 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Домашні улюбленці" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "Зображення, призначені для дорослих." -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Закріпити" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "Закріпити на головній" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "Закріплені стрічки" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "Відтворити {0}" @@ -5024,21 +5259,21 @@ msgstr "Відтворити {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "Відтворити відео" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "Відтворює GIF" @@ -5047,7 +5282,7 @@ msgid "Please choose your handle." msgstr "Будь ласка, оберіть псевдонім." #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Будь ласка, оберіть ваш пароль." @@ -5072,11 +5307,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Будь ласка, введіть допустиме слово, тег або фразу для ігнорування" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Будь ласка, введіть адресу ел. пошти." -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "" @@ -5084,16 +5319,16 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Будь ласка, також введіть ваш пароль:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Будь ласка, поясніть, чому ви вважаєте, що ця позначка була помилково додана до {0}" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "" @@ -5102,20 +5337,21 @@ msgid "Please Verify Your Email" msgstr "Підтвердьте свою адресу електронної пошти" #: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання" +#~ msgid "Please wait for your link card to finish loading" +#~ msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Політика" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "Порнографія" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "Запостити" @@ -5129,17 +5365,21 @@ msgstr "Пост" msgid "Post by {0}" msgstr "Пост від {0}" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "Пост від @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "Пост видалено" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "Пост приховано" @@ -5154,7 +5394,7 @@ msgstr "Пост приховано через ігнороване слово" msgid "Post Hidden by You" msgstr "Ви приховали цей пост" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "" @@ -5162,7 +5402,7 @@ msgstr "" msgid "Post language" msgstr "Мова посту" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "Мови посту" @@ -5171,12 +5411,20 @@ msgstr "Мови посту" msgid "Post not found" msgstr "Пост не знайдено" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "" + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "пости" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "Пости" @@ -5200,7 +5448,7 @@ msgstr "Потенційно оманливе посилання" msgid "Preference saved" msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5210,8 +5458,8 @@ msgstr "Змінити хостинг-провайдера" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "Натисніть, щоб повторити спробу" @@ -5228,79 +5476,83 @@ msgstr "" msgid "Previous image" msgstr "Попереднє зображення" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "Основна мова" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "Пріоритезувати ваші підписки" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Конфіденційність" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "Політика конфіденційності" #: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." +#~ msgid "Privately chat with other users." +#~ msgstr "" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Обробка..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "профіль" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "Профіль" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "Профіль оновлено" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "Захистіть свій обліковий запис, підтвердивши свою електронну адресу." -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "Публічний" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "Публічні, поширювані списки користувачів для ігнорування або блокування." -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "Публічні, поширювані списки для створення стрічок." -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "Опублікувати пост" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish post" +#~ msgstr "Опублікувати пост" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "Опублікувати відповідь" +#: src/view/com/composer/Composer.tsx:579 +#~ msgid "Publish reply" +#~ msgstr "Опублікувати відповідь" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -5318,8 +5570,8 @@ msgstr "" #~ msgid "Quick tip" #~ msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" @@ -5335,32 +5587,32 @@ msgstr "Цитувати пост" #~ msgid "Quote Post" #~ msgstr "Цитувати" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "" @@ -5368,16 +5620,16 @@ msgstr "" msgid "Quotes of this post" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "У випадковому порядку" #: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "Співвідношення сторін" +#~ msgid "Ratios" +#~ msgstr "Співвідношення сторін" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "" @@ -5385,19 +5637,21 @@ msgstr "" msgid "Reactivate your account" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "" @@ -5405,7 +5659,7 @@ msgstr "" #~ msgid "Reason: {0}" #~ msgstr "" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "Останні запити" @@ -5417,26 +5671,25 @@ msgstr "Останні запити" #~ msgid "Recommended Users" #~ msgstr "Рекомендовані користувачі" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -5450,11 +5703,11 @@ msgstr "" msgid "Remove account" msgstr "Видалити обліковий запис" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "Видалити аватар" @@ -5462,7 +5715,7 @@ msgstr "Видалити аватар" msgid "Remove Banner" msgstr "Видалити банер" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "" @@ -5478,13 +5731,14 @@ msgstr "Видалити стрічку?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "Видалити з моїх стрічок?" @@ -5497,7 +5751,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "Вилучити зображення" @@ -5509,24 +5763,24 @@ msgstr "Вилучити зображення" msgid "Remove mute word from your list" msgstr "Вилучити ігноровані слова з вашого списку" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "Видалити репост" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "" @@ -5534,16 +5788,16 @@ msgstr "" msgid "Remove this feed from your saved feeds" msgstr "Вилучити цю стрічку зі збережених стрічок" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "Вилучено зі списку" @@ -5557,8 +5811,8 @@ msgid "Removed from saved feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Видалено з моїх стрічок" @@ -5566,13 +5820,13 @@ msgstr "Видалено з моїх стрічок" #~ msgid "Removes default thumbnail from {0}" #~ msgstr "Видаляє мініатюру за замовчуванням з {0}" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "" +#~ msgid "Removes the attachment" +#~ msgstr "" #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 #~ msgid "Removes the image preview" @@ -5583,7 +5837,7 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "Відповіді" @@ -5603,7 +5857,7 @@ msgstr "" #~ msgid "Replies to this thread are disabled" #~ msgstr "Відповіді до цього посту вимкнено" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "Відповісти" @@ -5622,11 +5876,11 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -5636,33 +5890,33 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "У відповідь <0/>" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "" @@ -5677,8 +5931,8 @@ msgstr "" #~ msgid "Report account" #~ msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "Поскаржитись на обліковий запис" @@ -5688,16 +5942,16 @@ msgstr "Поскаржитись на обліковий запис" msgid "Report conversation" msgstr "" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "Діалогове вікно для скарг" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Поскаржитись на стрічку" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "Поскаржитись на список" @@ -5705,13 +5959,13 @@ msgstr "Поскаржитись на список" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "Поскаржитись на пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" msgstr "" @@ -5727,8 +5981,8 @@ msgstr "Повідомити про цю стрічку" msgid "Report this list" msgstr "Поскаржитись на цей список" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "" @@ -5745,9 +5999,9 @@ msgstr "" msgid "Report this user" msgstr "Поскаржитись на цього користувача" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "Репост" @@ -5757,19 +6011,19 @@ msgstr "Репост" msgid "Repost" msgstr "Репостити" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "Репостити або цитувати" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "Зробив(-ла) репост" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "{0} зробив(-ла) репост" @@ -5777,12 +6031,12 @@ msgstr "{0} зробив(-ла) репост" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "Зроблено репост від <0><1/>" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "" @@ -5804,7 +6058,7 @@ msgstr "Змінити" msgid "Request Code" msgstr "Надіслати запит на код" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "Вимагати опис зображень перед публікацією" @@ -5812,20 +6066,26 @@ msgstr "Вимагати опис зображень перед публікац msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "Вимагається цим хостинг-провайдером" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "" @@ -5837,29 +6097,29 @@ msgstr "Код підтвердження" msgid "Reset Code" msgstr "Код скидання" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "Скинути пароль" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Повторити спробу" @@ -5868,16 +6128,16 @@ msgstr "Повторити спробу" msgid "Retries the last action, which errored out" msgstr "Повторити останню дію, яка спричинила помилку" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5891,51 +6151,62 @@ msgstr "Повторити спробу" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "Повернутися до попередньої сторінки" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "Повертає до головної сторінки" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Повертає до попередньої сторінки" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Зберегти" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "Зберегти" #: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "Зберегти опис" +#~ msgid "Save alt text" +#~ msgstr "Зберегти опис" -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "Зберегти день народження" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" -msgstr "Зберегти зміни" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/EditProfile.tsx:227 +#~ msgid "Save Changes" +#~ msgstr "Зберегти зміни" + +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "Зберегти новий псевдонім" @@ -5944,24 +6215,24 @@ msgstr "Зберегти новий псевдонім" msgid "Save image" msgstr "" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "Обрізати зображення" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "Збережені стрічки" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "" @@ -5969,71 +6240,68 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "Збережено до галереї." -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Збережено до ваших стрічок" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "Зберігає зміни вашого профілю" +#: src/view/com/modals/EditProfile.tsx:220 +#~ msgid "Saves any changes to your profile" +#~ msgstr "Зберігає зміни вашого профілю" -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "Зберігає зміню псевдоніму на {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Зберігає налаштування обрізання зображення" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Наука" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "Прогорнути вгору" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "Пошук" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "Шукати \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "Пошук усіх повідомлень @{authorHandle} з тегом {displayTag}" +#: src/components/TagMenu/index.tsx:155 +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "Пошук усіх повідомлень @{authorHandle} з тегом {displayTag}" -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "Пошук усіх повідомлень з тегом {displayTag}" +#: src/components/TagMenu/index.tsx:104 +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Пошук усіх повідомлень з тегом {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -6045,18 +6313,16 @@ msgstr "" msgid "Search for users" msgstr "Пошук користувачів" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "" @@ -6072,15 +6338,15 @@ msgstr "Переглянути дописи {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "Переглянути пости користувача з {truncatedTag}" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "Переглянути пости з <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "Переглянути пости цього користувача з <0>{displayTag}" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "" @@ -6089,7 +6355,7 @@ msgstr "" #~ msgid "See profile" #~ msgstr "Переглянути профіль" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "Перегляньте цей посібник" @@ -6097,7 +6363,7 @@ msgstr "Перегляньте цей посібник" #~ msgid "See what's next" #~ msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "" @@ -6109,7 +6375,7 @@ msgstr "Обрати {item}" msgid "Select a color" msgstr "" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "Обрати обліковий запис" @@ -6121,7 +6387,7 @@ msgstr "" msgid "Select an emoji" msgstr "" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "Вибрати існуючий обліковий запис" @@ -6129,7 +6395,7 @@ msgstr "Вибрати існуючий обліковий запис" msgid "Select GIF" msgstr "" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "" @@ -6137,15 +6403,15 @@ msgstr "" msgid "Select how long to mute this word for." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "Вибрати мови" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "Оберіть модератора" @@ -6157,7 +6423,7 @@ msgstr "Обрати варіант {i} із {numItems}" #~ msgid "Select some accounts below to follow" #~ msgstr "Оберіть деякі облікові записи, щоб підписатися" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "" @@ -6165,11 +6431,11 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "Оберіть сервіс модерації для скарги" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "Виберіть хостинг-провайдера для ваших даних." @@ -6177,7 +6443,7 @@ msgstr "Виберіть хостинг-провайдера для ваших #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Підпишіться на тематичні стрічки зі списку нижче" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "" @@ -6189,23 +6455,23 @@ msgstr "" #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Виберіть, що ви хочете бачити (або не бачити), а решту ми зробимо за вас." -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Оберіть мови постів, які ви хочете бачити у збережених каналах. Якщо не вибрано жодної – буде показано пости всіма мовами." -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "Оберіть мову застосунку для відображення тексту за замовчуванням." -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "Оберіть дату народження" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "Виберіть ваші інтереси із нижченаведених варіантів" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "Оберіть бажану мову для перекладів у вашій стрічці." @@ -6221,6 +6487,14 @@ msgstr "Оберіть бажану мову для перекладів у ва msgid "Send a neat website!" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -6235,37 +6509,37 @@ msgctxt "action" msgid "Send Email" msgstr "Надіслати ел. лист" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "Надіслати відгук" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "Поскаржитись" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "Надіслати скаргу до {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "" @@ -6273,35 +6547,35 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "Надсилає електронний лист з кодом підтвердження видалення облікового запису" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "Адреса сервера" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "Додати дату народження" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "Зміна пароля" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Вимкніть цей параметр, щоб приховати всі цитовані пости у вашій стрічці. Не впливає на репости без цитування." -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Вимкніть цей параметр, щоб приховати всі відповіді у вашій стрічці." -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Вимкніть цей параметр, щоб приховати всі репости у вашій стрічці." -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Увімкніть це налаштування, щоб показувати відповіді у вигляді гілок. Це експериментальна функція." -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Увімкніть це налаштування, щоб іноді бачити пости зі збережених стрічок у вашій домашній стрічці. Це експериментальна функція." @@ -6309,7 +6583,7 @@ msgstr "Увімкніть це налаштування, щоб іноді ба msgid "Set up your account" msgstr "Налаштуйте ваш обліковий запис" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "Встановлює псевдонім Bluesky" @@ -6333,31 +6607,30 @@ msgstr "Встановлює псевдонім Bluesky" #~ msgid "Sets dark theme to the dim theme" #~ msgstr "Встановлює тьмяний колір для темної теми" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Встановлює ел. адресу для скидання пароля" #: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "Встановлює квадратне співвідношення сторін зображення" +#~ msgid "Sets image aspect ratio to square" +#~ msgstr "Встановлює квадратне співвідношення сторін зображення" #: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "Встановлює співвідношення сторін зображення до висоти" +#~ msgid "Sets image aspect ratio to tall" +#~ msgstr "Встановлює співвідношення сторін зображення до висоти" #: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "Встановлює співвідношення сторін зображення до ширини" +#~ msgid "Sets image aspect ratio to wide" +#~ msgstr "Встановлює співвідношення сторін зображення до ширини" -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "Налаштування" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "Сексуальна активність або еротична оголеність." @@ -6365,20 +6638,19 @@ msgstr "Сексуальна активність або еротична ого msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "Поширити" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "Поширити" @@ -6391,28 +6663,28 @@ msgstr "" msgid "Share a fun fact!" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "Все одно поширити" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Поширити стрічку" #: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" +#~ msgid "Share image externally" +#~ msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" +#~ msgid "Share image in post" +#~ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "" @@ -6430,7 +6702,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" msgstr "" @@ -6442,7 +6714,7 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "" @@ -6450,23 +6722,27 @@ msgstr "" msgid "Shares the linked website" msgstr "Поширює посилання" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "Показувати" +#: src/view/screens/Search/Search.tsx:889 +#~ msgid "Show advanced filters" +#~ msgstr "" + #: src/view/screens/PreferencesFollowingFeed.tsx:68 #~ msgid "Show all replies" #~ msgstr "Показати всі відповіді" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "Всеодно показати" @@ -6488,8 +6764,8 @@ msgstr "Показати значок і фільтри зі стрічки" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "" @@ -6497,14 +6773,14 @@ msgstr "" msgid "Show list anyway" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "Показати більше" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "" @@ -6512,11 +6788,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "Показувати пости зі збережених стрічок" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "Показувати цитати" @@ -6532,11 +6808,11 @@ msgstr "Показувати цитати" #~ msgid "Show re-posts in Following feed" #~ msgstr "Показувати репости у стрічці \"Following\"" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "Показувати відповіді" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "Показувати відповіді від людей, за якими ви слідкуєте, вище інших." @@ -6552,12 +6828,12 @@ msgstr "Показувати відповіді від людей, за яким #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Показувати відповіді від {value} {0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "Показувати репости" @@ -6565,7 +6841,7 @@ msgstr "Показувати репости" #~ msgid "Show reposts in Following" #~ msgstr "Показувати репости у стрічці \"Following\"" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "Показати вміст" @@ -6583,35 +6859,34 @@ msgid "Show warning and filter from feeds" msgstr "Показувати попередження і фільтрувати зі стрічки" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "Показує дописи з {0} у вашій стрічці" +#~ msgid "Shows posts from {0} in your feed" +#~ msgstr "Показує дописи з {0} у вашій стрічці" #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Увійти" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "Увійти як {0}" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "Увійти як..." @@ -6623,42 +6898,41 @@ msgstr "Увійдіть або створіть обліковий запис, msgid "Sign into Bluesky or create a new account" msgstr "Увійдіть у Bluesky або створіть новий обліковий запис" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "Вийти" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Реєстрація" #: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "Зареєструйтеся або увійдіть, щоб приєднатися до розмови" +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Зареєструйтеся або увійдіть, щоб приєднатися до розмови" -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Необхідно увійти для перегляду" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "Ви увійшли як" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Ви увійшли як @{0}" @@ -6666,8 +6940,8 @@ msgstr "Ви увійшли як @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" msgstr "" @@ -6675,17 +6949,22 @@ msgstr "" msgid "Similar accounts" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "Пропустити" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "Пропустити цей процес" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Розробка П/З" @@ -6701,7 +6980,7 @@ msgstr "" #~ msgid "Some subtitle" #~ msgstr "" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "" @@ -6710,41 +6989,41 @@ msgstr "" msgid "Something went wrong, please try again" msgstr "" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз." #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Даруйте! Ваш сеанс вичерпався. Будь ласка, увійдіть знову." -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "Сортувати відповіді" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "Оберіть, як сортувати відповіді до постів:" #: src/components/moderation/LabelsOnMeDialog.tsx:168 -#~ msgid "Source:" -#~ msgstr "Джерело:" +msgid "Source:" +msgstr "Джерело:" #: src/components/moderation/LabelsOnMeDialog.tsx:169 #~ msgid "Source: <0>{0}" #~ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "" +#~ msgid "Source: <0>{sourceName}" +#~ msgstr "" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6756,49 +7035,53 @@ msgid "Spam; excessive mentions or replies" msgstr "Спам; надмірні згадки або відповіді" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Спорт" #: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "Квадратне" +#~ msgid "Square" +#~ msgstr "Квадратне" -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "" #: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "" +#~ msgid "Start chatting" +#~ msgstr "" #: src/tours/Tooltip.tsx:99 #~ msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." #~ msgstr "" -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -6806,7 +7089,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Сторінка стану" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "" @@ -6814,27 +7097,27 @@ msgstr "" #~ msgid "Step" #~ msgstr "Крок" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "Сховище очищено, тепер вам треба перезапустити застосунок." -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "Надіслати" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "Підписатися" @@ -6842,7 +7125,7 @@ msgstr "Підписатися" msgid "Subscribe to @{0} to use these labels:" msgstr "Підпишіться на @{0}, щоб використовувати ці мітки:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "Підписатися на маркувальника" @@ -6851,14 +7134,18 @@ msgstr "Підписатися на маркувальника" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Підписатися на {0} стрічку" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "Підписатися на цього маркувальника" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "Підписатися на цей список" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "" @@ -6871,18 +7158,19 @@ msgstr "" msgid "Suggested for you" msgstr "Пропозиції для вас" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "Непристойний" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Підтримка" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Перемикнути обліковий запис" @@ -6890,20 +7178,21 @@ msgstr "Перемикнути обліковий запис" #~ msgid "Switch between feeds to control your experience." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "Переключитися на {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "Переключає обліковий запис" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "Системне" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "Системний журнал" @@ -6911,7 +7200,7 @@ msgstr "Системний журнал" #~ msgid "tag" #~ msgstr "тег" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "Меню тегів: {displayTag}" @@ -6920,22 +7209,22 @@ msgid "Tags only" msgstr "" #: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "Високе" +#~ msgid "Tall" +#~ msgstr "Високе" #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "" @@ -6957,7 +7246,7 @@ msgid "Teach our algorithm what you like" msgstr "" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Технології" @@ -6965,23 +7254,27 @@ msgstr "Технології" msgid "Tell a joke!" msgstr "" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "" #: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" +#~ msgid "Ten Million" +#~ msgstr "" #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Умови" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "Умови Використання" @@ -7000,25 +7293,33 @@ msgstr "Використані терміни порушують стандар msgid "Text & tags" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Поле вводу тексту" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "Дякуємо. Вашу скаргу було надіслано." #: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#~ msgid "Thanks for being one of our first 10 million users." +#~ msgstr "" #: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." +#~ msgid "Thanks, you have successfully verified your email address." +#~ msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "Що містить наступне:" @@ -7026,21 +7327,21 @@ msgstr "Що містить наступне:" msgid "That handle is already taken." msgstr "Цей псевдонім вже зайнятий." -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "Обліковий запис зможе взаємодіяти з вами після розблокування." @@ -7053,15 +7354,15 @@ msgstr "Обліковий запис зможе взаємодіяти з ва msgid "The author of this thread has hidden this reply." msgstr "" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "Правила Спільноти переміщено до <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "Політику захисту авторського права переміщено до <0/>" @@ -7074,7 +7375,7 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -7099,30 +7400,35 @@ msgstr "Наступні кроки допоможуть налаштувати msgid "The post may have been deleted." msgstr "Можливо цей пост було видалено." -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "Форму підтримки переміщено. Якщо вам потрібна допомога, будь ласка, <0/> або відвідайте {HELP_DESK_URL}, щоб зв'язатися з нами." -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "Умови Використання перенесено до" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" #~ msgstr "Також є багато інших стрічок, щоб спробувати:" @@ -7131,23 +7437,22 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "Виникла проблема з доступом до сервера. Перевірте підключення до Інтернету і повторіть спробу знову." +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:539 +#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." +#~ msgstr "Виникла проблема з доступом до сервера. Перевірте підключення до Інтернету і повторіть спробу знову." #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "Виникла проблема при видаленні цієї стрічки. Перевірте підключення до Інтернету і повторіть спробу." +#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." +#~ msgstr "Виникла проблема при видаленні цієї стрічки. Перевірте підключення до Інтернету і повторіть спробу." #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "Виникла проблема з оновленням ваших стрічок. Перевірте підключення до Інтернету і повторіть спробу." +#: src/view/screens/ProfileFeed.tsx:204 +#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." +#~ msgstr "Виникла проблема з оновленням ваших стрічок. Перевірте підключення до Інтернету і повторіть спробу." -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "" @@ -7155,15 +7460,18 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "При з'єднанні з сервером виникла проблема" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -7173,21 +7481,25 @@ msgstr "При з'єднанні з вашим сервером виникла msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "Виникла проблема з завантаженням списку. Натисніть тут, щоб повторити спробу." #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Виникла проблема з завантаженням ваших списків. Натисніть тут, щоб повторити спробу." -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Виникла проблема з надсиланням вашої скарги. Будь ласка, перевірте підключення до Інтернету." @@ -7195,21 +7507,27 @@ msgstr "Виникла проблема з надсиланням вашої с #~ msgid "There was an issue syncing your preferences with the server" #~ msgstr "Виникла проблема під час синхронізації ваших налаштувань із сервером" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "Виникла проблема з завантаженням ваших паролів для застосунків" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "Виникла проблема! {0}" @@ -7217,16 +7535,15 @@ msgstr "Виникла проблема! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "Виникла проблема. Перевірте підключення до Інтернету і повторіть спробу." -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "У застосунку сталася неочікувана проблема. Будь ласка, повідомте нас, якщо ви отримали це повідомлення!" @@ -7238,11 +7555,11 @@ msgstr "Відбувався наплив нових користувачів у #~ msgid "These are popular accounts you might like:" #~ msgstr "Ці популярні користувачі можуть вам сподобатися:" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "Цей {screenDescription} був позначений:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "Цей користувач вказав, що не хоче, аби його профіль бачили відвідувачі без облікового запису." @@ -7254,15 +7571,15 @@ msgstr "" #~ msgid "This appeal will be sent to <0>{0}." #~ msgstr "Це звернення буде надіслано до <0>{0}." -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "" @@ -7278,7 +7595,7 @@ msgstr "Цей контент був прихований модераторам msgid "This content has received a general warning from moderators." msgstr "Цей контент отримав загальне попередження від модераторів." -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "Цей вміст розміщено {0}. Увімкнути зовнішні медіа?" @@ -7291,11 +7608,11 @@ msgstr "Цей контент недоступний, оскільки один msgid "This content is not viewable without a Bluesky account." msgstr "Цей вміст не доступний для перегляду без облікового запису Bluesky." -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "Ця функція знаходиться в беті. Ви можете дізнатися більше про експорт репозиторіїв у <0>цьому блозі.." @@ -7314,8 +7631,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "" @@ -7323,7 +7640,7 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Ця інформація не розкривається іншим користувачам." @@ -7335,11 +7652,11 @@ msgstr "Це важливо для випадку, якщо вам коли-не #~ msgid "This label was applied by {0}." #~ msgstr "Ця мітка була додана {0}." -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "" @@ -7347,7 +7664,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "" @@ -7363,7 +7680,7 @@ msgstr "Це посилання веде на сайт:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Список порожній!" @@ -7375,16 +7692,16 @@ msgstr "Даний сервіс модерації недоступний. Пе msgid "This name is already in use" msgstr "Це ім'я вже використовується" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "Цей пост було видалено." -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Цей пост видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи." -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" @@ -7392,15 +7709,15 @@ msgstr "" #~ msgid "This post will be hidden from feeds." #~ msgstr "Цей пост буде приховано зі стрічок." -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Цей профіль видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи." -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "" @@ -7408,7 +7725,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "Цей сервіс не надав умови обслуговування або політики конфіденційності." -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "Це має створити обліковий запис домену:" @@ -7461,16 +7778,16 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "Налаштування гілок" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "Налаштування гілок" @@ -7478,15 +7795,15 @@ msgstr "Налаштування гілок" #~ msgid "Thread settings updated" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "Режим гілок" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "Налаштування обговорень" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "" @@ -7494,18 +7811,22 @@ msgstr "" msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "Кому ви хотіли б відправити цю скаргу?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" msgstr "" +#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 +#~ msgid "Together, we're rebuilding the social internet. We're glad you're here." +#~ msgstr "" + #: src/components/dialogs/MutedWords.tsx:112 #~ msgid "Toggle between muted word options." #~ msgstr "Перемикання між опціями ігнорування слів." @@ -7514,25 +7835,25 @@ msgstr "" msgid "Toggle dropdown" msgstr "Розкрити/сховати" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "Увімкнути або вимкнути вміст для дорослих" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Верх" #: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "Редагування" +#~ msgid "Transformations" +#~ msgstr "Редагування" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "Перекласти" @@ -7541,40 +7862,40 @@ msgctxt "action" msgid "Try again" msgstr "Спробувати ще раз" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "Тип:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "Розблокувати список" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "Перестати ігнорувати" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Не вдалося зв'язатися з вашим хостинг-провайдером. Перевірте ваше підключення до Інтернету." -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "" @@ -7582,14 +7903,14 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "Розблокувати" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "Розблокувати" @@ -7599,17 +7920,17 @@ msgstr "Розблокувати" msgid "Unblock account" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "Розблокувати обліковий запис" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "Розблокувати обліковий запис?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -7624,12 +7945,12 @@ msgstr "Відписатись" #~ msgid "Unfollow" #~ msgstr "Не стежити" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "Відписатися від {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "Відписатися від облікового запису" @@ -7637,31 +7958,31 @@ msgstr "Відписатися від облікового запису" #~ msgid "Unlike" #~ msgstr "Прибрати вподобання" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "Видалити вподобання цієї стрічки" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Не ігнорувати" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 -msgid "Unmute" -msgstr "Не ігнорувати" - #: src/components/TagMenu/index.web.tsx:115 msgid "Unmute {truncatedTag}" msgstr "Не ігнорувати {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "Перестати ігнорувати" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "Перестати ігнорувати всі пости {displayTag}" @@ -7673,12 +7994,12 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "Перестати ігнорувати" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "" @@ -7686,24 +8007,29 @@ msgstr "" #~ msgid "Unmuted" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Відкріпити" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "Відкріпити список модерації" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "Відписатися" @@ -7712,7 +8038,7 @@ msgstr "Відписатися" msgid "Unsubscribe from list" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "Відписатися від цього маркувальника" @@ -7720,7 +8046,7 @@ msgstr "Відписатися від цього маркувальника" msgid "Unsubscribed from list" msgstr "" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -7734,75 +8060,92 @@ msgid "Unwanted Sexual Content" msgstr "Небажаний сексуальний вміст" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "Змінити належність {displayName} до списків" +#~ msgid "Update {displayName} in Lists" +#~ msgstr "Змінити належність {displayName} до списків" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "Оновити до {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "Оновлення..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "Завантажити текстовий файл до:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Завантажити з камери" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Завантажити з файлів" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Завантажити з бібліотеки" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "Використовувати файл на вашому сервері" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "Використовуйте паролі для застосунків для входу в інших застосунках для Bluesky. Це дозволить використовувати їх, не надаючи повний доступ до вашого облікового запису і вашого основного пароля." -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "Використовувати bsky.social як хостинг-провайдер" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "Використовувати провайдера за замовчуванням" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "У вбудованому браузері" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "У звичайному браузері" @@ -7810,7 +8153,7 @@ msgstr "У звичайному браузері" msgid "Use recommended" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "Використати панель DNS" @@ -7847,36 +8190,36 @@ msgstr "Користувач заблокував вас" msgid "User Blocks You" msgstr "Користувач заблокував вас" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "Список користувачів від {0}" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "Список користувачів від <0/>" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "Список користувачів від вас" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "Список користувачів створено" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "Список користувачів оновлено" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "Списки користувачів" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "Ім'я користувача або електронна адреса" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "Користувачі" @@ -7888,26 +8231,24 @@ msgstr "Користувачі" msgid "users followed by <0>@{0}" msgstr "" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "Користувачі в «{0}»" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "Користувачі, які вподобали цей контент і профіль" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "Значення:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "" @@ -7915,23 +8256,24 @@ msgstr "" #~ msgid "Verify {0}" #~ msgstr "Верифікувати {0}" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "Підтвердити електронну адресу" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "Підтвердити мою електронну адресу" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "Підтвердити мою електронну адресу" @@ -7940,14 +8282,15 @@ msgstr "Підтвердити мою електронну адресу" msgid "Verify New Email" msgstr "Підтвердити нову адресу електронної пошти" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "Підтвердьте адресу вашої електронної пошти" @@ -7956,21 +8299,21 @@ msgstr "Підтвердьте адресу вашої електронної п #~ msgid "Version {0}" #~ msgstr "Версія {0}" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Відеоігри" @@ -7978,11 +8321,15 @@ msgstr "Відеоігри" msgid "Video not found." msgstr "" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "" @@ -7990,12 +8337,12 @@ msgstr "" #~ msgid "Videos cannot be larger than 50MB" #~ msgstr "" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "Переглянути аватар {0}" @@ -8008,15 +8355,23 @@ msgstr "" msgid "View {displayName}'s profile" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "Переглянути запис для налагодження" @@ -8036,11 +8391,13 @@ msgstr "Переглянути обговорення" msgid "View information about these labels" msgstr "Переглянути інформацію про мітки" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "Переглянути профіль" @@ -8048,28 +8405,28 @@ msgstr "Переглянути профіль" msgid "View the avatar" msgstr "Переглянути аватар" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "Переглянути послуги маркування, який надає @{0}" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "" @@ -8092,11 +8449,11 @@ msgstr "Попереджувати про вміст" msgid "Warn content and filter from feeds" msgstr "Попереджувати про вміст і фільтрувати його зі стрічки" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "Ми не змогли знайти жодних результатів для цього хештегу." -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "" @@ -8104,11 +8461,11 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Ми оцінюємо {estimatedTime} до готовності вашого облікового запису." -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Ми сподіваємося, що ви проведете чудово свій час. Пам'ятайте, Bluesky — це:" @@ -8124,19 +8481,19 @@ msgstr "У нас закінчилися дописи у ваших підпис #~ msgid "We recommend our \"Discover\" feed:" #~ msgstr "Ми рекомендуємо стрічку «Discover»:" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "Не вдалося завантажити ваші налаштування дати дня народження. Повторіть спробу." -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "Наразі ми не змогли завантажити список ваших маркувальників." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ми не змогли під'єднатися. Будь ласка, спробуйте ще раз, щоб продовжити налаштування свого облікового запису. Якщо помилка повторюється, то ви можете пропустити цей процес." @@ -8144,19 +8501,23 @@ msgstr "Ми не змогли під'єднатися. Будь ласка, с msgid "We will let you know when your account is ready." msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "Ми скористаємося цим, щоб підлаштувати Ваш досвід." -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Ми дуже раді, що ви приєдналися!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Дуже прикро, але нам не вдалося знайти цей список. Якщо це продовжується, будь ласка, зв'яжіться з його автором: @{handleOrDid}." @@ -8164,16 +8525,16 @@ msgstr "Дуже прикро, але нам не вдалося знайти ц msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "На жаль, ми не змогли зараз завантажити ваші ігноровані слова. Будь ласка, спробуйте ще раз." -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Даруйте, нам не вдалося виконати пошук за вашим запитом. Будь ласка, спробуйте ще раз через кілька хвилин." -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали." @@ -8181,7 +8542,7 @@ msgstr "Нам дуже прикро! Ми не можемо знайти сто #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "На жаль, ви можете підписатися тільки на 10 маркувальників, і ви вже досягли цього ліміту." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -8197,7 +8558,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "Чим ви цікавитесь?" @@ -8205,17 +8566,17 @@ msgstr "Чим ви цікавитесь?" msgid "What do you want to call your starter pack?" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "Як справи?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "Які мови використані в цьому пості?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "Якими мовами ви хочете бачити пости у алгоритмічних стрічках?" @@ -8225,8 +8586,8 @@ msgstr "" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "" +#~ msgid "Who can message you?" +#~ msgstr "" #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" @@ -8241,7 +8602,7 @@ msgstr "Хто може відповідати" #~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "" @@ -8274,35 +8635,35 @@ msgid "Why should this user be reviewed?" msgstr "Чому слід переглянути цього користувача?" #: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "Широке" +#~ msgid "Wide" +#~ msgstr "Широке" -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "Написати пост" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "Написати відповідь" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Письменники" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "Так" @@ -8311,15 +8672,15 @@ msgstr "Так" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "" @@ -8327,11 +8688,14 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:76 +#: src/components/dms/MessageItem.tsx:183 +#~ msgid "Yesterday, {time}" +#~ msgstr "" + #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "" @@ -8344,7 +8708,7 @@ msgstr "" msgid "You are in line." msgstr "Ви в черзі." -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "" @@ -8352,6 +8716,10 @@ msgstr "" msgid "You are not following anyone." msgstr "Ви ні на кого не підписані." +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -8366,15 +8734,15 @@ msgstr "" #~ msgstr "Ви можете змінити ці налаштування пізніше." #: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "" +#~ msgid "You can change this at any time." +#~ msgstr "" -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Тепер ви можете увійти за допомогою нового пароля." @@ -8386,7 +8754,7 @@ msgstr "" msgid "You do not have any followers." msgstr "У вас немає жодного підписника." -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "" @@ -8394,7 +8762,7 @@ msgstr "" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "У вас ще немає кодів запрошення! З часом ми надамо вам декілька." -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "У вас немає закріплених стрічок." @@ -8402,7 +8770,7 @@ msgstr "У вас немає закріплених стрічок." #~ msgid "You don't have any saved feeds!" #~ msgstr "У вас немає збережених стрічок!" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "У вас немає збережених стрічок." @@ -8420,8 +8788,8 @@ msgstr "" msgid "You have blocked this user. You cannot view their content." msgstr "Ви заблокували цього користувача. Ви не можете бачити їх вміст." -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -8444,7 +8812,7 @@ msgstr "Ви увімкнули ігнорування цього обліков msgid "You have muted this user" msgstr "Ви увімкнули ігнорування цього користувача" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "" @@ -8452,8 +8820,8 @@ msgstr "" msgid "You have no feeds." msgstr "У вас немає стрічок." -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "У вас немає списків." @@ -8461,15 +8829,15 @@ msgstr "У вас немає списків." #~ msgid "You have no messages yet. Start a conversation with someone!" #~ msgstr "" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "Ви ще не заблокували жодного облікового запису. Щоб заблокувати когось, перейдіть до їх профілю та виберіть опцію \"Заблокувати\" у меню їх облікового запису." -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "Ви ще не створили жодного пароля для застосунків. Ви можете створити новий пароль, натиснувши кнопку нижче." -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "Ви ще не ігноруєте жодного облікового запису. Щоб увімкнути ігнорування когось, перейдіть до їх профілю та виберіть опцію \"Ігнорувати\" у меню їх облікового запису." @@ -8477,11 +8845,11 @@ msgstr "Ви ще не ігноруєте жодного облікового з msgid "You have reached the end" msgstr "" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" msgstr "" @@ -8518,7 +8886,11 @@ msgstr "" #~ msgid "You may only add up to 50 profiles" #~ msgstr "" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "Вам має виповнитись 13 років для того, щоб мати змогу зареєструватись." @@ -8526,7 +8898,7 @@ msgstr "Вам має виповнитись 13 років для того, що #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Ви повинні бути старше 18 років, щоб дозволити перегляд контенту для дорослих" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -8534,12 +8906,11 @@ msgstr "" msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "Ви повинні обрати хоча б одного маркувальника для скарги" @@ -8547,47 +8918,51 @@ msgstr "Ви повинні обрати хоча б одного маркува msgid "You previously deactivated @{0}." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "Ви більше не будете отримувати сповіщення з цього обговорення" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "Ви будете отримувати сповіщення з цього обговорення" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Ви отримаєте електронний лист із кодом підтвердження. Введіть цей код тут, а потім введіть новий пароль." -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "" @@ -8606,7 +8981,7 @@ msgstr "Ви в черзі" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "Все готово!" @@ -8619,15 +8994,15 @@ msgstr "Ви обрали приховувати слово або тег в ц msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів." -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "Ваш акаунт" @@ -8635,15 +9010,15 @@ msgstr "Ваш акаунт" msgid "Your account has been deleted" msgstr "Ваш обліковий запис видалено" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Дані з вашого облікового запису, які містять усі загальнодоступні записи, можна завантажити як \"CAR\" файл. Цей файл не містить медіафайлів, таких як зображення, або особисті дані, які необхідно отримати окремо." -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Ваша дата народження" @@ -8651,11 +9026,11 @@ msgstr "Ваша дата народження" msgid "Your browser does not support the video format. Please try a different browser." msgstr "" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "Ваш вибір буде запам'ятовано, ви у будь-який момент зможете змінити його в налаштуваннях." @@ -8663,9 +9038,9 @@ msgstr "Ваш вибір буде запам'ятовано, ви у будь- #~ msgid "Your default feed is \"Following\"" #~ msgstr "Ваша стрічка за замовчуванням \"Following\"" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Не вдалося розпізнати адресу електронної пошти." @@ -8690,7 +9065,7 @@ msgstr "Ваша домашня стрічка порожня! Підпишіт msgid "Your full handle will be" msgstr "Ваш повний псевдонім буде" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "Вашим повним псевдонімом буде <0>@{0}" @@ -8702,15 +9077,15 @@ msgstr "Ваші ігноровані слова" msgid "Your password has been changed successfully!" msgstr "Ваш пароль успішно змінено!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "Пост опубліковано" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Ваші повідомлення, вподобання і блоки є публічними. Ігнорування - приватні." -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "Ваш профіль" @@ -8718,14 +9093,14 @@ msgstr "Ваш профіль" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "Відповідь опубліковано" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Ваш псевдонім" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 4584e0b1fc..4e70c680f0 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -8,21 +8,21 @@ msgstr "" "Language: zh_CN\n" "Project-Id-Version: zh-CN for bluesky-social-app\n" "Report-Msgid-Bugs-To: Frudrax Cheng \n" -"PO-Revision-Date: 2024-09-14 10:09+0800\n" +"PO-Revision-Date: 2024-10-17 17:45+0800\n" "Last-Translator: Frudrax Cheng \n" "Language-Team: Frudrax Cheng (auroursa), Simon Chan (RitsukiP), U2FsdGVkX1, Mikan Harada (mitian233), IceCodeNew\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(包含嵌入内容)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" -msgstr "(没有邮件)" +msgstr "(没有电子邮件)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 人} other {其他 {formattedCount} 人}}" @@ -50,7 +50,7 @@ msgstr "{0, plural, one {# 分} other {# 分}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# 月} other {# 月}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# 条转发} other {# 条转发}}" @@ -68,15 +68,15 @@ msgstr "{0, plural, one {关注者} other {关注者}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {正在关注} other {正在关注}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {喜欢 (# 个喜欢)} other {喜欢 (# 个喜欢)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜欢} other {喜欢}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" @@ -85,19 +85,19 @@ msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {帖文} other {帖文}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {引用} other {引用}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {回复 (# 个回复)} other {回复 (# 个回复)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {转发} other {转发}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}" @@ -111,19 +111,19 @@ msgstr "{0} <0>在<1>标签中" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>在<1>文本及标签中" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "在本周加入了 {0} 人" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "第 {0} 个(共 {1} 个)" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" -msgstr "{0} 人已使用过此入门包!" +msgstr "{0} 人已使用过此新手包!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "{0}的头像" @@ -133,41 +133,41 @@ msgstr "{0}最喜欢的资讯源和用户 - 来加入我们吧!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "{0}的入门包" +msgstr "{0}的新手包" #. How many days have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:158 msgid "{0}d" -msgstr "{0}天" +msgstr "{0}天前" #. How many hours have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:148 msgid "{0}h" -msgstr "{0}时" +msgstr "{0}小时前" #. How many minutes have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:138 msgid "{0}m" -msgstr "{0}分" +msgstr "{0}分钟前" #. How many months have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0}mo" -msgstr "{0}月" +msgstr "{0}个月前" #. How many seconds have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:128 msgid "{0}s" -msgstr "{0}秒" +msgstr "{0}秒前" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" -msgstr "{displayName} 的入门包" +msgstr "{displayName} 的新手包" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -177,22 +177,22 @@ msgstr "{estimatedTimeHrs, plural, one {时} other {时}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 个正在关注" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "无法给 {handle} 发送私信" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 个未读" @@ -202,47 +202,47 @@ msgstr "{profileName} 在 {0} 前加入了 Bluesky" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "{profileName} 在 {0} 前使用入门包加入了 Bluesky" +msgstr "{profileName} 在 {0} 前使用新手包加入了 Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}、<1>{1}及{2, plural, one {其他 # } other {其他 # }}人包含在你的入门包中" +msgstr "<0>{0}、<1>{1}及{2, plural, one {其他 # } other {其他 # }}人包含在你的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}、<1>{1}及{2, plural, one {其他 # } other {其他 # }}个资讯源包含在你的入门包中" +msgstr "<0>{0}、<1>{1}及{2, plural, one {其他 # } other {其他 # }}个资讯源包含在你的新手包中" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {关注者} other {关注者}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "<0>{0} 以及<1><2>{1} 包含在你的入门包中" +msgstr "<0>{0} 以及<1><2>{1} 包含在你的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" -msgstr "<0>{0} 包含在你的入门包中" +msgstr "<0>{0} 包含在你的新手包中" #: src/components/WhoCanReply.tsx:274 msgid "<0>{0} members" msgstr "<0>{0} 个成员" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>不适用。 这个警告仅适用于附加媒体内容的帖文。" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} {time}" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "<0>你以及<1> <2>{0} 包含在你的入门包中" +msgstr "<0>你以及<1> <2>{0} 包含在你的新手包中" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠无效的用户识别符" @@ -250,7 +250,7 @@ msgstr "⚠无效的用户识别符" msgid "24 hours" msgstr "24小时" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "两步验证" @@ -262,8 +262,8 @@ msgstr "30天" msgid "7 days" msgstr "7天" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "访问导航链接及设置" @@ -271,35 +271,34 @@ msgstr "访问导航链接及设置" msgid "Access profile and other navigation links" msgstr "访问个人资料及其他导航链接" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "无障碍" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "无障碍设置" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "无障碍设置" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "账户" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "已屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "已关注账户" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "已隐藏账户" @@ -320,65 +319,67 @@ msgstr "账户选项" msgid "Account removed from quick access" msgstr "已从快速访问中移除账户" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "已取消屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "已取消关注账户" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "已取消隐藏账户" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "添加" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" -msgstr "添加 {0} 个以继续" +msgstr "继续添加 {0} 个以继续" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "添加 {displayName} 至入门包" +msgstr "添加 {displayName} 至新手包" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "新增内容警告" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "将用户添加至列表" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "添加账户" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "新增替代文本" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "新增替代文本(可选)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "新增应用专用密码" @@ -394,24 +395,24 @@ msgstr "添加隐藏词和标签" msgid "Add recommended feeds" msgstr "添加推荐的资讯源" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" -msgstr "添加一些推荐的资讯源到你的入门包中!" +msgstr "添加一些推荐的资讯源到你的新手包中!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" msgstr "添加默认的资讯源(仅显示你关注的人)" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "将以下 DNS 记录新增到你的域名:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "添加此资讯源到你的自定义资讯源列表" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "添加至列表" @@ -420,7 +421,7 @@ msgid "Add to my feeds" msgstr "添加至自定义资讯源" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "已添加至列表" @@ -428,22 +429,28 @@ msgstr "已添加至列表" msgid "Added to my feeds" msgstr "已添加至自定义资讯源" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "成人内容" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "成人内容显示仅可通过网页端(<0>bsky.app)启用。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "成人内容显示已被禁用。" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "成人内容标签" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "详细设置" @@ -451,11 +458,11 @@ msgstr "详细设置" msgid "Algorithm training complete!" msgstr "算法训练完成!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "已关注所有账户!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "你保存的所有资讯源都集中在一处。" @@ -464,75 +471,84 @@ msgstr "你保存的所有资讯源都集中在一处。" msgid "Allow access to your direct messages" msgstr "允许读取你的私信" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "允许以下来源发起新对话" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "允许回复:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "允许访问私信" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "已经有验证码了?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "已以@{0}身份登录" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "ALT" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "替代文本" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "替代文本" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "为图片新增替代文本,以帮助盲人及视障群体了解图片内容。" +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "替代文本过长将被截断,限制长度:{0}个字符。" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." -msgstr "一封电子邮件已发送至 {0}。请查阅邮件内容并复制验证码至下方。" +msgstr "电子邮件已发送至 {0}。请查阅邮件内容并复制验证码至下方。" #: src/view/com/modals/ChangeEmail.tsx:114 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." -msgstr "一封电子邮件已发送至先前填写的邮箱 {0}。请查阅邮件内容并复制验证码至下方。" +msgstr "电子邮件已发送至先前填写的邮箱 {0}。请查阅邮件内容并复制验证码至下方。" -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "电子邮件已发送!请输入邮件中包含的验证码至下方。" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "发生错误" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "发生错误" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "压缩视频时发生错误。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "创建入门包时发生错误,想再试一次吗?" +msgstr "创建新手包时发生错误,想再试一次吗?" #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 msgid "An error occurred while loading the video. Please try again later." @@ -542,25 +558,21 @@ msgstr "播放视频时出现问题,请稍后再试。" msgid "An error occurred while loading the video. Please try again." msgstr "播放视频时出现问题,请再试一次。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "保存图片时发生错误!" - #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "保存二维码时发生错误!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "选择视频时发生错误" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "关注所有人时发生错误" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "上传视频时出现问题。" @@ -572,40 +584,40 @@ msgstr "不在这些选项中的问题" msgid "An issue occurred starting the chat" msgstr "开启新私信时出现问题" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "开启私信时出现问题" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "出现问题,请重试。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "出现未知错误" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "未知的标记者" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "和" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "动物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF 动画" @@ -613,15 +625,20 @@ msgstr "GIF 动画" msgid "Anti-Social Behavior" msgstr "反社会行为" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "任何语言" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "任何人都可以参与互动" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "应用语言" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "应用专用密码已删除" @@ -633,47 +650,47 @@ msgstr "应用专用密码只能包含字母、数字、空格、破折号及下 msgid "App Password names must be at least 4 characters long." msgstr "应用专用密码必须至少为 4 个字符。" -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "应用专用密码设置" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "应用专用密码" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "申诉" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "申诉 \"{0}\" 标记" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "申诉已提交" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "对此结果提出申诉" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "外观" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "外观设置" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "外观设置" @@ -682,7 +699,7 @@ msgstr "外观设置" msgid "Apply default recommended feeds" msgstr "使用默认推荐的资讯源" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "你确定要删除这条应用专用密码 \"{name}\" 吗?" @@ -690,9 +707,13 @@ msgstr "你确定要删除这条应用专用密码 \"{name}\" 吗?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "你确定要删除这条私信吗?此操作仅会在你的对话中删除私信,而不会在其他人的对话中删除。" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" -msgstr "你确定要删除此入门包吗?" +msgstr "你确定要删除此新手包吗?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "您确定要放弃更改吗?" #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." @@ -702,11 +723,11 @@ msgstr "你确定要离开这个对话吗?此操作仅会在你的私信列表 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "你确定要从你的资讯源中删除 {0} 吗?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "你确定要从自定义资讯源列表中删除此资讯源吗?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "你确定要丢弃这段草稿吗?" @@ -719,11 +740,11 @@ msgid "Are you writing in <0>{0}?" msgstr "你是用 <0>{0} 编写的吗?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "艺术" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "艺术作品或非色情的裸体。" @@ -732,39 +753,39 @@ msgid "At least 3 characters" msgstr "至少 3 个字符" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "返回" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "基础信息" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "生日:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "屏蔽" @@ -773,45 +794,45 @@ msgstr "屏蔽" msgid "Block account" msgstr "屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "屏蔽账户?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "屏蔽账户" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "屏蔽列表" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "屏蔽这些账户?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" -msgstr "已屏蔽" +msgstr "已被屏蔽" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "已屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被屏蔽的账户无法在你的帖文中回复、提及你或以其他方式与你互动。" -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "被屏蔽的账户无法在你的帖文中回复、提及你或以其他方式与你互动。你将不会看到他们所发的内容,同样他们也无法查看你的内容。" @@ -823,40 +844,36 @@ msgstr "已屏蔽帖文。" msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "屏蔽这个用户不能阻止他继续标记你的账户。" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "屏蔽是公开的。被屏蔽的账户无法在你的帖文中回复、提及你或以其他方式与你互动。" -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "屏蔽不会阻止标记被放置到你的账户上,但会阻止这个账户在你发布的帖文中回复或与你互动。" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "博客" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky 是一个开放的公共网络,你可以选择自己的托管提供商。现在,自定义托管现在已经进入开发者测试阶段。" +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky 是一个开放网络,您可以从中选择现有的托管服务提供商。如果您是开发人员,你还可以托管自己的服务器。" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Bluesky 因朋友而更好!" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "Bluesky 现在拥有一千万名用户,我是其中的第 #{0} 位!" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "Bluesky 将从你的社交网络中选择一组推荐的账户。" +msgstr "Bluesky 将从你的关系网中选择一组推荐关注的用户。" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky 不会向未登录的用户显示你的个人资料和帖文。但其他应用可能不会遵照这个请求,这无法确保你的账户隐私。" @@ -869,14 +886,10 @@ msgid "Blur images and filter from feeds" msgstr "模糊化图片并从资讯源中过滤" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "书籍" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "吹个牛!" - #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" msgstr "在探索页面浏览更多账户" @@ -902,7 +915,7 @@ msgstr "在探索页面浏览更多建议" msgid "Browse other feeds" msgstr "浏览其他资讯源" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "商务" @@ -910,7 +923,7 @@ msgstr "商务" msgid "by —" msgstr "来自 —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "来自 {0}" @@ -918,15 +931,23 @@ msgstr "来自 {0}" msgid "by <0/>" msgstr "来自 <0/>" -#: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "创建账户即默认表明你同意我们的 {els}。" +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "创建账户即代表你同意我们的<0>隐私政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "创建账户即代表你同意我们的<0>服务条款及<1>隐私政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "创建账户即代表你同意我们的<0>服务条款。" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "来自你" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "相机" @@ -935,33 +956,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "只能包含字母、数字、空格、破折号及下划线。 长度必须至少 4 个字符,但不超过 32 个字符。" #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "取消" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +993,15 @@ msgstr "取消" msgid "Cancel account deletion" msgstr "取消账户删除申请" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "取消修改用户识别符" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "取消裁剪图片" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "取消编辑个人资料" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "取消引用帖文" @@ -994,6 +1010,7 @@ msgid "Cancel reactivation and log out" msgstr "取消重新激活账户并登出" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "取消搜索" @@ -1001,14 +1018,14 @@ msgstr "取消搜索" msgid "Cancels opening the linked website" msgstr "取消打开链接的网站" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "无法与被屏蔽的用户互动" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "字幕(.vtt)" @@ -1016,25 +1033,25 @@ msgstr "字幕(.vtt)" msgid "Captions & alt text" msgstr "字幕及替代文本" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "庆祝第 {0} 位用户" - #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "更改邮箱地址" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "更改用户识别符" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "更改用户识别符" @@ -1042,12 +1059,12 @@ msgstr "更改用户识别符" msgid "Change my email" msgstr "更改我的邮箱地址" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "更改密码" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "更改密码" @@ -1059,9 +1076,10 @@ msgstr "更改帖文的发布语言至 {0}" msgid "Change Your Email" msgstr "更改你的邮箱地址" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "私信" @@ -1071,14 +1089,14 @@ msgstr "已隐藏对话" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "私信设置" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "私信设置" @@ -1091,31 +1109,35 @@ msgstr "已解除隐藏对话" msgid "Check my status" msgstr "检查我的状态" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "在这里输入刚才发送到你电子邮箱里的验证码。" #: src/view/com/modals/DeleteAccount.tsx:231 msgid "Check your inbox for an email with the confirmation code to enter below:" -msgstr "查看发送至你电子邮箱的确认邮件,并在下方输入收到的验证码:" +msgstr "查看发送至你电子邮箱的验证邮件,并在下方输入收到的验证码:" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "选择资讯源" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" -msgstr "为我做选择" +msgstr "帮我选择" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "选择用户" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "为媒体内容贴上合适的标签。如果没有贴上任何标签,则默认你发布的媒体内容为全年龄向。" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "选择服务" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "选择支持你的自定义资讯源的算法。" @@ -1123,28 +1145,27 @@ msgstr "选择支持你的自定义资讯源的算法。" msgid "Choose this color as your avatar" msgstr "选择这个颜色作为你的头像" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "选择你的密码" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "清除所有数据" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "清除所有数据(并重启)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "清除搜索历史记录" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "清除所有数据" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "点击这里" @@ -1160,15 +1181,15 @@ msgstr "点击这里以获取更多详情。" msgid "Click here to open tag menu for {tag}" msgstr "点击这里打开 {tag} 的标签菜单" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "点击关闭该帖文的引用功能。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "点击打开该帖文的引用功能。" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "点击以重试发送失败的私信" @@ -1180,27 +1201,25 @@ msgstr "气象" msgid "Clip 🐴 clop 🐴" msgstr "哒哒🐴哒哒🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "关闭" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "关闭活动对话框" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "关闭警告" @@ -1208,12 +1227,11 @@ msgstr "关闭警告" msgid "Close bottom drawer" msgstr "关闭底部抽屉" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "关闭对话框" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "关闭 GIF 对话框" @@ -1225,30 +1243,26 @@ msgstr "关闭图片" msgid "Close image viewer" msgstr "关闭图片查看器" -#: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "关闭对话框" - -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "关闭导航页脚" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "关闭该窗口" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "关闭底部导航栏" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "关闭密码更新警告" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "关闭帖文编辑页并丢弃草稿" +#: src/view/com/composer/Composer.tsx:549 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "关闭帖文编辑页并丢弃草稿" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1258,56 +1272,66 @@ msgstr "关闭标题图片查看器" msgid "Collapse list of users" msgstr "折叠用户列表" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "折叠给定通知的用户列表" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "主题模式" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "喜剧" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "社群准则" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "完成引导并开始使用你的账户" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "完成验证" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "撰写帖文的长度最多为 {MAX_GRAPHEME_LENGTH} 个字符" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "撰写回复" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "正在压缩视频..." + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "为类别 {name} 配置内容过滤设置" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "在 <0>内容审核设置 中配置。" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "确认" @@ -1324,30 +1348,35 @@ msgstr "确认内容语言设置" msgid "Confirm delete account" msgstr "确认删除账户" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "确认你的年龄:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "确认你的出生日期" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "验证码" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "验证码" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "连接中..." -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "联系支持" @@ -1355,12 +1384,12 @@ msgstr "联系支持" msgid "Content Blocked" msgstr "内容已屏蔽" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "内容过滤器" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "内容语言" @@ -1370,13 +1399,13 @@ msgid "Content Not Available" msgstr "内容不可用" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "内容警告" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "内容警告" @@ -1384,12 +1413,12 @@ msgstr "内容警告" msgid "Context menu backdrop, click to close the menu." msgstr "上下文菜单背景,点击关闭菜单。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "继续" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "以 {0} 继续(已登录)" @@ -1397,13 +1426,13 @@ msgstr "以 {0} 继续(已登录)" msgid "Continue thread..." msgstr "加载更多帖文串..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "继续下一步" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "对话已删除" @@ -1416,20 +1445,21 @@ msgstr "烹饪" msgid "Copied" msgstr "已复制" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "已复制至剪贴板" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "已复制!" @@ -1437,17 +1467,17 @@ msgstr "已复制!" msgid "Copies app password" msgstr "已复制应用专用密码" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "复制" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "复制{0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "复制代码" @@ -1459,12 +1489,12 @@ msgstr "复制链接" msgid "Copy Link" msgstr "复制链接" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "复制列表链接" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "复制帖文链接" @@ -1473,17 +1503,17 @@ msgstr "复制帖文链接" msgid "Copy message text" msgstr "复制私信文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "复制帖文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "复制二维码" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "版权许可" @@ -1491,11 +1521,11 @@ msgstr "版权许可" msgid "Could not leave chat" msgstr "无法离开对话" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "无法加载资讯源" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "无法加载列表" @@ -1507,34 +1537,34 @@ msgstr "无法隐藏对话" msgid "Could not process your video" msgstr "无法处理你的视频" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "创建" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "创建新的账户" - -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "创建新的 Bluesky 账户" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" -msgstr "为入门包创建二维码" +msgstr "为新手包创建二维码" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" -msgstr "创建入门包" +msgstr "创建新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" -msgstr "为我创建入门包" +msgstr "为我创建新手包" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "创建账户" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "创建账户" @@ -1543,11 +1573,11 @@ msgstr "创建账户" msgid "Create an account" msgstr "创建一个账户" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "创建一个头像" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "创建另外一个" @@ -1556,7 +1586,7 @@ msgid "Create App Password" msgstr "创建应用专用密码" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "创建新的账户" @@ -1564,86 +1594,87 @@ msgstr "创建新的账户" msgid "Create report for {0}" msgstr "创建 {0} 的举报" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} 已创建" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "文化" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "自定义" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "自定义域名" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮助你找到你喜欢的内容。" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "自定义外部站点的媒体。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "自定义谁可以参与这条帖文的互动。" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "暗色" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "深色模式" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "深色模式" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "生日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "停用账户" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "停用我的账户" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "调试内容审核" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "调试面板" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "默认" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "删除" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "删除账户" @@ -1651,16 +1682,16 @@ msgstr "删除账户" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "删除账户 <0>\"<1>{0}<2>\"" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "删除应用专用密码" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "删除应用专用密码?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "删除聊天记录" @@ -1668,7 +1699,7 @@ msgstr "删除聊天记录" msgid "Delete for me" msgstr "为我删除" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "删除列表" @@ -1684,33 +1715,33 @@ msgstr "为我删除私信" msgid "Delete my account" msgstr "删除我的账户" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "删除我的账户…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "删除帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" -msgstr "删除入门包" +msgstr "删除新手包" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" -msgstr "删除入门包?" +msgstr "删除新手包?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "删除这个列表?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "删除这条帖文?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "已删除" @@ -1718,27 +1749,35 @@ msgstr "已删除" msgid "Deleted post." msgstr "已删除的帖文。" -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "删除聊天记录" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "描述" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "描述太长" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "描述太长,限制的最大字数为 {DESCRIPTION_MAX_GRAPHEMES}。" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "描述替代文本" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "分离引用帖文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "分离引用帖文?" @@ -1746,54 +1785,54 @@ msgstr "分离引用帖文?" msgid "Dialog: adjust who can interact with this post" msgstr "对话框:调整谁可以参与这条帖文的互动" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "有什么想说的吗?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "暗淡" -#: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "隆重介绍私信功能!" - -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "关闭自动播放视频及 GIF" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "关闭电子邮件两步验证" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "关闭触感反馈" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "禁用字幕" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "关闭" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "丢弃" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "放弃更改?" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "丢弃草稿?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "阻止应用向未登录用户显示我的账户" @@ -1806,11 +1845,15 @@ msgstr "探索新的自定义资讯源" msgid "Discover new feeds" msgstr "探索新的资讯源" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "探索新的资讯源" -#: src/view/com/composer/Composer.tsx:1107 +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "关闭" + +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "关闭错误" @@ -1818,19 +1861,25 @@ msgstr "关闭错误" msgid "Dismiss getting started guide" msgstr "关闭入门指南" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "显示更大的替代文本标签" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" -msgstr "显示名称" +msgstr "名称" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "显示名称" +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "名称太长" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "名称太长,限制的最大字数为 {DISPLAY_NAME_MAX_GRAPHEMES}。" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNS 面板" @@ -1838,6 +1887,14 @@ msgstr "DNS 面板" msgid "Do not apply this mute word to users you follow" msgstr "不对你已关注的用户使用此隐藏词" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "不包含成人内容。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "不包含敏感或令人不适的内容。" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "不包含裸露内容。" @@ -1846,38 +1903,37 @@ msgstr "不包含裸露内容。" msgid "Doesn't begin or end with a hyphen" msgstr "不以连字符开头或结尾" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "域名记录" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "域名已认证!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "完成" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "完成" @@ -1886,20 +1942,20 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "双击以关闭对话框" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "下载 Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "下载 CAR 文件" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "下载图片" - -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "拖放即可新增图片" @@ -1907,39 +1963,35 @@ msgstr "拖放即可新增图片" msgid "Duration:" msgstr "期间:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "例如:alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" -msgstr "例如:爱丽丝·罗伯特" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "例如:爱丽丝" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "例如:alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例如:艺术家、爱狗人士和狂热读者。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例如:艺术性的裸露。" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "例如:优秀的发帖者" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "例如:垃圾内容制造者" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "例如:绝不容错过的发帖者。" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "例如:散布广告内容的用户。" @@ -1947,58 +1999,55 @@ msgstr "例如:散布广告内容的用户。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每个邀请码仅可使用一次。你将不定期获得新的邀请码。" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "编辑" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "编辑" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "编辑头像" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "编辑资讯源" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "编辑图片" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "调整互动选项" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "编辑列表详情" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "编辑自定义资讯源" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "编辑个人资料" - -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "编辑用户" @@ -2007,21 +2056,23 @@ msgstr "编辑用户" msgid "Edit post interaction settings" msgstr "调整帖文互动选项" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "编辑个人资料" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "编辑个人资料" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" -msgstr "编辑入门包" +msgstr "编辑新手包" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "编辑用户列表" @@ -2029,24 +2080,16 @@ msgstr "编辑用户列表" msgid "Edit who can reply" msgstr "编辑谁可以回复" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "编辑你的显示名称" - -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "编辑你的账户描述" - -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" -msgstr "编辑你的入门包" +msgstr "编辑你的新手包" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "教育" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "电子邮箱" @@ -2055,11 +2098,11 @@ msgstr "电子邮箱" msgid "Email 2FA disabled" msgstr "电子邮件两步验证已关闭" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "邮箱地址" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "重新发送电子邮件" @@ -2076,21 +2119,21 @@ msgstr "电子邮箱已更新" msgid "Email verified" msgstr "电子邮箱已验证" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "电子邮箱已验证" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "电子邮箱:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "嵌入 HTML 代码" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "嵌入帖文" @@ -2098,47 +2141,47 @@ msgstr "嵌入帖文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "将这条帖文嵌入到你的网站。只需复制以下代码片段,并将其粘贴到你网站的 HTML 代码中即可。" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "仅启用 {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "启用成人内容" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "启用外部媒体" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "启用媒体播放器" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "启用优先通知" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "启用字幕" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "仅启用这个来源" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "已启用" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "已到末尾" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "确保为每个字幕文件都选择了一种语言。" @@ -2146,7 +2189,7 @@ msgstr "确保为每个字幕文件都选择了一种语言。" msgid "Enter a name for this App Password" msgstr "为这个应用专用密码命名" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "输入密码" @@ -2155,28 +2198,32 @@ msgstr "输入密码" msgid "Enter a word or tag" msgstr "输入一个词或标签" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "输入验证码" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "输入验证码" #: src/view/com/modals/ChangePassword.tsx:154 msgid "Enter the code you received to change your password." -msgstr "输入你收到的确认码以更改密码。" +msgstr "输入你收到的验证码以更改密码。" -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "输入你想使用的域名" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." -msgstr "输入你用于创建账户的电子邮箱。我们将向你发送用于密码重设的确认码。" +msgstr "输入你用于创建账户的电子邮箱。我们将向你发送用于密码重设的验证码。" -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "输入你的出生日期" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "输入你的电子邮箱" @@ -2188,10 +2235,14 @@ msgstr "请在上方输入你新的电子邮箱" msgid "Enter your new email address below." msgstr "请在下方输入你新的电子邮箱。" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "输入你的用户名和密码" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "错误" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "保存文件时发生错误" @@ -2200,12 +2251,12 @@ msgstr "保存文件时发生错误" msgid "Error receiving captcha response." msgstr "Captcha 响应错误。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "错误:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "所有人" @@ -2217,10 +2268,8 @@ msgstr "所有人都可以回复" msgid "Everybody can reply to this post." msgstr "所有人都可以回复这条帖文。" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "所有人" @@ -2240,7 +2289,7 @@ msgstr "排除你已关注的用户" msgid "Excludes users you follow" msgstr "排除你已关注的用户" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "退出全屏" @@ -2248,11 +2297,11 @@ msgstr "退出全屏" msgid "Exits account deletion process" msgstr "退出账户删除流程" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "退出修改用户识别符流程" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "退出图片裁剪流程" @@ -2272,12 +2321,16 @@ msgstr "展开替代文本" msgid "Expand list of users" msgstr "展开用户列表" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "展开或折叠你要回复的完整帖文" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "URL 应解析为记录" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "实验性:当你启用此设置项,你将仅收到你已关注用户的回复及引用通知。我们会持续在此添加更多设置项。" @@ -2297,32 +2350,32 @@ msgstr "明确或潜在引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "明确的性暗示图片。" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "导出账户数据" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "导出账户数据" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "外部媒体" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "外部媒体可能允许网站收集有关你和你设备的有关信息。在你按下\"查看\"按钮之前,将不会发送或请求任何外部信息。" -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "外部媒体首选项" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "外部媒体设置" @@ -2331,12 +2384,12 @@ msgstr "外部媒体设置" msgid "Failed to create app password." msgstr "创建应用专用密码失败。" -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" -msgstr "无法创建入门包" +msgstr "无法创建新手包" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "无法创建列表。请检查你的互联网连接并重试。" @@ -2344,25 +2397,24 @@ msgstr "无法创建列表。请检查你的互联网连接并重试。" msgid "Failed to delete message" msgstr "无法删除私信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" -msgstr "无法删除入门包" +msgstr "无法删除新手包" #: src/view/screens/Search/Explore.tsx:427 #: src/view/screens/Search/Explore.tsx:455 msgid "Failed to load feeds preferences" msgstr "无法加载资讯源首选项" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "无法加载 GIF" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "无法加载旧的私信" @@ -2375,7 +2427,11 @@ msgstr "无法加载建议的资讯源" msgid "Failed to load suggested follows" msgstr "无法加载建议关注" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "无法固定这条贴文" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "无法保存这张图片:{0}" @@ -2383,40 +2439,44 @@ msgstr "无法保存这张图片:{0}" msgid "Failed to save notification preferences, please try again" msgstr "无法保存通知首选项,请再试一次" -#: src/components/dms/MessageItem.tsx:225 +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "无法保存帖文互动选项。您的帖文已成功创建,但其他用户可能仍然能够与其互动。" + +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "无法发送私信" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "无法提交申诉,请再试一次。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请再试一次" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "无法更新资讯源" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "无法更新设置" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "无法上传视频" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "资讯源" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "由 {0} 创建的资讯源" @@ -2426,31 +2486,36 @@ msgid "Feed toggle" msgstr "切换资讯源" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "反馈" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "反馈已发送!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "资讯源" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "创建资讯源仅需你掌握一点编程基础。<0/>以获取详情。" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "资讯源已更新!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "文件内容" @@ -2462,7 +2527,7 @@ msgstr "文件保存成功!" msgid "Filter from feeds" msgstr "从资讯源中过滤" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "最终确定" @@ -2472,19 +2537,19 @@ msgstr "最终确定" msgid "Find accounts to follow" msgstr "寻找一些账户关注" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 寻找帖文和用户" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "调整你在\"正在关注\"资讯源上所看到的内容。" -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "调整讨论主题。" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "完成" @@ -2492,25 +2557,16 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "灵活" -#: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "水平翻转" - -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "垂直翻转" - #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "关注" @@ -2519,12 +2575,12 @@ msgctxt "action" msgid "Follow" msgstr "关注" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "关注 {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "关注 {name}" @@ -2532,18 +2588,18 @@ msgstr "关注 {name}" msgid "Follow 7 accounts" msgstr "关注 7 个账户" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "关注账户" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "关注所有人" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "回关" @@ -2558,21 +2614,21 @@ msgstr "关注更多账户以了解你的兴趣,并逐步建立你的社交网 #: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" -msgstr "由 <0>{0} 所关注" +msgstr "被你认识的<0>{0}所关注" #: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "由 <0>{0} 以及 {1, plural, one {其他#人} other {其他#人}} 所关注" +msgstr "被你认识的<0>{0}及{1, plural, one {其他#人} other {其他#人}}所关注" #: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" -msgstr "由 <0>{0} 以及 <1>{1} 所关注" +msgstr "被你认识的<0>{0}及 <1>{1}所关注" #: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "由 <0>{0}、<1>{1} 以及 {2, plural, one {其他#人} other {其他#人}} 所关注" +msgstr "被你认识的<0>{0}、<1>{1}及{2, plural, one {其他#人} other {其他#人}}所关注" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "已关注的用户" @@ -2582,64 +2638,74 @@ msgstr "关注了你" #: src/view/com/notifications/FeedItem.tsx:205 msgid "followed you back" -msgstr "回关" +msgstr "回关了你" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "关注者" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "由你所认识的 @{0} 所关注" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "由你所认识的关注者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "正在关注" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "已关注 {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "已关注 {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "\"正在关注\"资讯源首选项" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "\"正在关注\"资讯源首选项" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "关注了你" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "关注了你" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "字体" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "字体大小" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "食物" @@ -2651,20 +2717,25 @@ msgstr "出于安全原因,我们需要向你的电子邮箱发送验证码。 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "出于安全原因,你将无法再次查看此内容。如果你丢失了该密码,则需要生成一个新的密码。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "出于用户体验考虑,我们建议你使用主题字体。" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "永久" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "忘记密码" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "忘记密码?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "忘记?" @@ -2672,35 +2743,31 @@ msgstr "忘记?" msgid "Frequently Posts Unwanted Content" msgstr "频繁发布不受欢迎的内容" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "来自 @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "来自 <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "全屏" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "相册" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" -msgstr "创建一个入门包" +msgstr "创建一个新手包" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "获取帮助" -#: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "开始吧" - #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" @@ -2714,7 +2781,7 @@ msgstr "开始吧" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "为你的个人资料添加头像" @@ -2722,14 +2789,13 @@ msgstr "为你的个人资料添加头像" msgid "Glaring violations of law or terms of service" msgstr "明显违反法律或服务条款" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "返回" @@ -2737,39 +2803,39 @@ msgstr "返回" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "返回" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "返回上一步" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "返回上一步" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "返回主页" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "返回主页" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "转到与 {0} 的对话" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "前往下一步" @@ -2783,18 +2849,20 @@ msgid "Go to user's profile" msgstr "前往用户个人资料" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" -msgstr "图形媒体" +msgstr "敏感媒体" #: src/state/shell/progress-guide.tsx:161 msgid "Half way there!" msgstr "已经完成一半了!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "用户识别符" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "触感" @@ -2802,24 +2870,24 @@ msgstr "触感" msgid "Harassment, trolling, or intolerance" msgstr "骚扰、恶作剧或其他无法容忍的行为" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "标签" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "标签:#{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "任何疑问?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "帮助" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "通过上传图片或创建头像来帮助人们了解你不是机器人。" @@ -2827,56 +2895,56 @@ msgstr "通过上传图片或创建头像来帮助人们了解你不是机器人 msgid "Here is your app password." msgstr "这里是你的应用专用密码。" -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "隐藏列表" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "隐藏" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "隐藏" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "为我隐藏这条帖文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "隐藏所有人的回复" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "为我隐藏回复" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "隐藏内容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "隐藏这条帖文?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "隐藏这条回复?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "隐藏用户列表" @@ -2900,7 +2968,7 @@ msgstr "资讯源服务器返回错误的响应,请联系资讯源的维护者 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "无法找到该资讯源,似乎已被删除。" -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多详情。如果问题仍然存在,请联系我们。" @@ -2908,45 +2976,49 @@ msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多 msgid "Hmmmm, we couldn't load that moderation service." msgstr "无法加载此内容审核提供服务。" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "请稍等!我们正在逐步开放视频功能权限,你仍在等待队伍中。请稍后再回来查看!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "主页" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "主机:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "托管服务提供商" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "我们该如何打开这条链接?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "我有验证码" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "我有验证码" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "我有验证码" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "我拥有自己的域名" @@ -2959,19 +3031,15 @@ msgstr "我了解" msgid "If alt text is long, toggles alt text expanded state" msgstr "若替代文本过长,则切换替代文本的展开状态" -#: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "若不勾选,则默认为全年龄向。" - -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "如果你根据你所在国家的法律定义还不是成年人,则你的父母或法定监护人必须代表你阅读这些条款。" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "该列表删除后将无法恢复。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "该列表删除后将无法恢复。" @@ -2987,16 +3055,11 @@ msgstr "如果你想更改你的用户识别符或电子邮件,请在停用之 msgid "Illegal and Urgent" msgstr "违法" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "图片" -#: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "图片替代文本" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "图片已保存到你的照片图库!" @@ -3012,7 +3075,7 @@ msgstr "冒充他人、提供虚假信息或提出虚假声明" msgid "Inappropriate messages or explicit links" msgstr "不适当的消息或诱导性链接" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "输入发送到你电子邮箱的验证码以重置密码" @@ -3024,7 +3087,7 @@ msgstr "输入删除用户的验证码" msgid "Input name for app password" msgstr "输入应用专用密码名称" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "输入新的密码" @@ -3032,19 +3095,19 @@ msgstr "输入新的密码" msgid "Input password for account deletion" msgstr "输入密码以删除账户" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "输入发送至你电子邮箱的验证码" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "输入注册时使用的用户名或电子邮箱" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "输入你的密码" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "输入你首选的托管服务提供商" @@ -3052,15 +3115,15 @@ msgstr "输入你首选的托管服务提供商" msgid "Input your user handle" msgstr "输入你的用户识别符" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "互动受限" -#: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "介绍私信" +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "介绍全新的字体设置" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "无效的两步验证码。" @@ -3069,12 +3132,12 @@ msgstr "无效的两步验证码。" msgid "Invalid or unsupported post record" msgstr "帖文记录无效或不受支持" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "用户名或密码无效" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "验证码无效" @@ -3082,7 +3145,7 @@ msgstr "验证码无效" msgid "Invite a Friend" msgstr "邀请朋友" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "邀请码" @@ -3100,60 +3163,70 @@ msgstr "邀请码:1 个可用" #: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" -msgstr "邀请朋友使用此入门包!" +msgstr "邀请朋友使用此新手包!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "邀请你的朋友关注你喜欢的资讯源和用户" +msgstr "邀请朋友关注你喜欢的资讯源和用户" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "邀请,但保持私密" +msgstr "以个性化的方式邀请朋友加入" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "你可能输入了错误的电子邮箱地址。请确认是否输入正确?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "输入正确" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "现在就只有你了!通过上面的搜索将更多人添加到你的入门包中。" +msgstr "目前新手包里只有你!通过上面的列表将更多人添加到你的新手包中。" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "工作编号:{0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "加入 Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "加入对话" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "{0} 已加入" - #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "新闻学" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "由 {0} 标记。" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "由作者标记。" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "标记" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "已添加标记" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "标记是对特定内容及用户的提示。可以针对特定内容默认隐藏内容、显示警告或直接显示。" @@ -3170,50 +3243,60 @@ msgstr "你内容上的标记" msgid "Language selection" msgstr "选择语言" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "语言设置" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "语言设置" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "语言" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "更大" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "最新" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" -msgstr "了解详情" +msgstr "了解更多" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" -msgstr "了解更多关于 Bluesky 的详细信息" +msgstr "了解更多有关 Bluesky 的详细信息" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "了解更多有关自行托管 PDS 的详细信息。" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "了解更多有关审核应用于此内容的详细信息。" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" -msgstr "了解有关这个警告的更多详情" +msgstr "了解更多有关这个警告的详细信息" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." -msgstr "了解有关 Bluesky 公开内容的更多详情。" +msgstr "了解更多有关 Bluesky 公开内容的详细信息。" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." -msgstr "了解详情。" +msgstr "了解更多。" #: src/components/dms/LeaveConvoPrompt.tsx:50 msgid "Leave" @@ -3232,7 +3315,7 @@ msgstr "离开对话" msgid "Leave conversation" msgstr "离开对话" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "全部留空以查看所有语言的帖文。" @@ -3244,21 +3327,20 @@ msgstr "离开 Bluesky" msgid "left to go." msgstr "个人排在你前面。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "自定义" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "让我们来重置你的密码!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "让我们开始!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "亮色" @@ -3271,21 +3353,21 @@ msgstr "喜欢 10 条帖文" msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 条帖文,以训练 \"Discover\" 算法推送" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "喜欢这个资讯源" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "喜欢" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "喜欢" @@ -3297,7 +3379,7 @@ msgstr "喜欢了你的自定义资讯源" msgid "liked your post" msgstr "喜欢了你的帖文" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "喜欢" @@ -3305,24 +3387,24 @@ msgstr "喜欢" msgid "Likes on this post" msgstr "这条帖文的喜欢数" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "列表" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "列表头像" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "列表已屏蔽" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "列表由 {0} 创建" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "列表已删除" @@ -3330,32 +3412,31 @@ msgstr "列表已删除" msgid "List has been hidden" msgstr "列表已隐藏" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "隐藏列表" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "列表已隐藏" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "列表名称" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "解除对列表的屏蔽" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "解除对列表的隐藏" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "列表" @@ -3375,22 +3456,22 @@ msgstr "加载更多建议的资讯源" msgid "Load more suggested follows" msgstr "加载更多建议关注" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "加载新的通知" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "加载新的帖文" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "加载中..." -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "日志" @@ -3406,19 +3487,27 @@ msgstr "登录或注册" msgid "Log out" msgstr "登出" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "未登录用户可见性" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "登录未列出的账户" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "LOGO 由 <0/> 绘制" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "LOGO 由 <0>@sawaratsuki.bsky.social 绘制" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "长按来打开 #{tag} 标签菜单" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "看起来像是 XXXXX-XXXXX" @@ -3434,7 +3523,7 @@ msgstr "看起来你已取消固定所有资讯源。不过别担心,你仍然 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "看起来你似乎缺少\"正在关注\"资讯源。<0>点击这里来重新添加它。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "帮我选择" @@ -3451,30 +3540,35 @@ msgstr "管理你的隐藏词和标签" msgid "Mark as read" msgstr "标记为已读" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "媒体" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "对于一部分受众而言可能令人不安或造成不适的媒体内容。" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "提到的用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "提到的用户" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "菜单" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "私信 {0}" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "私信已删除" @@ -3482,23 +3576,23 @@ msgstr "私信已删除" msgid "Message from server: {0}" msgstr "来自服务器的信息:{0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "私信输入栏" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "私信过长" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "私信设置" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "私信" @@ -3510,64 +3604,60 @@ msgstr "误导性账户" msgid "Misleading Post" msgstr "误导性帖文" -#: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "模式" - -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "内容审核" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "内容审核详情" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "由 {0} 创建的内容审核列表" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" -msgstr "由 创建的内容审核列表" +msgstr "由 <0/> 创建的内容审核列表" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "你创建的内容审核列表" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "内容审核列表已创建" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "内容审核列表已更新" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "内容审核列表" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "内容审核设置" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "内容审核状态" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "内容审核工具" @@ -3576,7 +3666,7 @@ msgstr "内容审核工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "由内容审核服务提供方对这段内容设置的一般警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "更多" @@ -3584,28 +3674,29 @@ msgstr "更多" msgid "More feeds" msgstr "更多资讯源" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "更多选项" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "优先显示最多喜欢" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "电影" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "音乐" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/components/TagMenu/index.tsx:248 msgid "Mute" msgstr "隐藏" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 msgctxt "video" msgid "Mute" msgstr "隐藏" @@ -3614,16 +3705,16 @@ msgstr "隐藏" msgid "Mute {truncatedTag}" msgstr "隐藏 {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "隐藏账户" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "隐藏账户" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "隐藏所有 {displayTag} 的帖文" @@ -3636,11 +3727,11 @@ msgstr "隐藏对话" msgid "Mute in:" msgstr "隐藏:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "隐藏列表" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "隐藏这些账户?" @@ -3668,26 +3759,26 @@ msgstr "仅在标签中隐藏该词" msgid "Mute this word until you unmute it" msgstr "隐藏这个词语直到你取消为止" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "隐藏讨论串" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "隐藏词和标签" -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "已隐藏账户" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "已隐藏的账户将不会在你的通知或时间线中显示,被隐藏账户将不会收到通知。" @@ -3695,41 +3786,41 @@ msgstr "已隐藏的账户将不会在你的通知或时间线中显示,被隐 msgid "Muted by \"{0}\"" msgstr "被 \"{0}\" 隐藏" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "隐藏词汇和标签" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "被隐藏的账户将不会得知你已将他隐藏,已隐藏的账户将不会在你的通知或时间线中显示。" -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "自定义资讯源" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "我的个人资料" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "我保存的资讯源" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "我保存的资讯源" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "名称" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "名称是必填项" @@ -3741,60 +3832,64 @@ msgid "Name or Description Violates Community Standards" msgstr "名称或描述违反了社群准则" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "自然" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "转到 {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "转到入门包" - -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "转到下一页" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "转到个人资料" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "需要更改吗?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "需要举报侵犯版权行为吗?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "永远不会失去对你的关注者或数据的访问。" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" -msgstr "没关系,为我创建一个用户识别符" +msgstr "不用了,为我创建一个用户识别符" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "新建" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "新建" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "新私信" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "全新字体设置 ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "新私信" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "新的内容审核列表" @@ -3806,22 +3901,22 @@ msgstr "新密码" msgid "New Password" msgstr "新密码" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "新帖文" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "新帖文" @@ -3830,30 +3925,30 @@ msgstr "新帖文" msgid "New user info dialog" msgstr "新的用户信息对话框" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "新的用户列表" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "优先显示最新回复" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "新闻" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3863,35 +3958,39 @@ msgstr "下一步" msgid "Next image" msgstr "下一张图片" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "停用" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "没有描述" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "没有 DNS 面板" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "未找到精选 GIF,Tensor 可能存在问题。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "未找到资讯源,尝试搜索点别的。" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "目前还没有任何喜欢" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "不再关注 {0}" @@ -3899,11 +3998,11 @@ msgstr "不再关注 {0}" msgid "No longer than 253 characters" msgstr "不超过 253 个字符" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" msgstr "目前还没有任何私信" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "没有更多对话可显示" @@ -3911,10 +4010,8 @@ msgstr "没有更多对话可显示" msgid "No notifications yet!" msgstr "还没有通知!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "仅自己" @@ -3922,16 +4019,24 @@ msgstr "仅自己" msgid "No one but the author can quote this post." msgstr "仅限作者可引用这条帖文。" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "目前还没有任何帖文。" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "目前还没有任何引用" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "目前还没有任何转发" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "没有结果" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "没有结果" @@ -3939,37 +4044,49 @@ msgstr "没有结果" msgid "No results found" msgstr "未找到结果" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "未找到\"{query}\"的结果" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "未找到 {query} 的结果" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "未找到 \"{search}\" 的搜索结果。" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "这个帖文不包含媒体内容,因此无法添加标记。" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "不,谢谢" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "仅自己" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" -msgstr "目前还没有人喜欢,也许你应该成为第一个!" +msgstr "目前还没有任何人喜欢此帖文,或许你应该成为第一个!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "目前还没有任何人引用此帖文,或许你应该成为第一个!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "目前还没有任何人转发此帖文,或许你应该成为第一个!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "未找到用户,尝试搜索点别的。" @@ -3977,8 +4094,8 @@ msgstr "未找到用户,尝试搜索点别的。" msgid "Non-sexual Nudity" msgstr "非性暗示裸露" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "未找到" @@ -3987,49 +4104,48 @@ msgstr "未找到" msgid "Not right now" msgstr "暂时不需要" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "分享注意事项" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一个开放的公共网络。这个设置项仅限制你发布的内容在 Bluesky 应用和网站上的可见性,其他应用可能不遵从这个设置项,仍可能会向未登录的用户显示你的动态。" -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "这里什么也没有" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "通知过滤器" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "通知设置" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "通知设置" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "通知提示音" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "通知提示音" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "通知" @@ -4037,11 +4153,12 @@ msgstr "通知" msgid "now" msgstr "现在" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "现在" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "裸露" @@ -4053,45 +4170,40 @@ msgstr "未标记的裸露或成人内容" msgid "Off" msgstr "显示" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "糟糕!发生了一些错误。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "糟糕!我们无法生成图片供你分享。请放心,我们很高兴你还在这里 🦋" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "好的" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "好的" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "优先显示最旧的回复" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "于<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "重新开始引导流程" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "目前只支持上传 .jpg 或 .png 格式的图片文件" @@ -4103,7 +4215,11 @@ msgstr "仅限 {0} 可以回复。" msgid "Only contains letters, numbers, and hyphens" msgstr "仅限字母、数字和连字符" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "仅支持图片文件" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "仅支持 WebVTT(.vtt)格式" @@ -4112,42 +4228,46 @@ msgid "Oops, something went wrong!" msgstr "糟糕,发生了一些错误!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "Oops!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "开启" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "开启 {name} 个人资料快捷菜单" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "开启头像创建工具" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "开启对话选项" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "开启表情符号选择器" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "开启资讯源选项菜单" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "打开指向 {niceUrl} 的链接" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "在内置浏览器中打开链接" @@ -4155,7 +4275,7 @@ msgstr "在内置浏览器中打开链接" msgid "Open message options" msgstr "开启私信选项" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "开启隐藏词汇和标签设置" @@ -4163,20 +4283,20 @@ msgstr "开启隐藏词汇和标签设置" msgid "Open navigation" msgstr "打开导航" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "开启帖文选项菜单" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" -msgstr "开启入门包菜单" +msgstr "开启新手包菜单" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "开启系统日志" @@ -4184,53 +4304,57 @@ msgstr "开启系统日志" msgid "Opens {numItems} options" msgstr "开启 {numItems} 个选项" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 -msgid "Opens a dialog to choose who can reply to this thread" -msgstr "打开对话框以选择谁可以回复此讨论串" +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "开启对话框以向你的帖文内容添加警告" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "开启对话框以选择谁可以回复此讨论串" + +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "开启无障碍设置" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "开启调试记录的额外详细信息" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "开启外观设置" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "开启设备相机" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "开启私信设置" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "开启编辑器" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "开启可配置的语言设置" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "开启设备相册" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "开启外部嵌入设置" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "开启流程以创建一个新的 Bluesky 账户" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "开启流程以登录到你现有的 Bluesky 账户" @@ -4242,51 +4366,51 @@ msgstr "开启 GIF 选择对话框" msgid "Opens list of invite codes" msgstr "开启邀请码列表" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "开启账户停用确认界面" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "需要邮件验证以继续进行账户删除操作" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "开启密码修改界面" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "开启创建新的用户识别符界面" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "开启你的 Bluesky 用户资料(存储库)下载页面" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "开启电子邮箱确认界面" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "开启使用自定义域名的模式" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "开启内容审核设置" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "开启密码重置申请" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "开启包含所有已保存资讯源的界面" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "开启应用专用密码设置界面" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "开启\"正在关注\"资讯源首选项" @@ -4294,25 +4418,25 @@ msgstr "开启\"正在关注\"资讯源首选项" msgid "Opens the linked website" msgstr "开启链接的网页" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "开启系统日志界面" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "开启讨论串首选项" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "开启此个人资料" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "开启视频选择器" @@ -4320,8 +4444,8 @@ msgstr "开启视频选择器" msgid "Option {0} of {numItems}" msgstr "第 {0} 个选项,共 {numItems} 个" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "可选在下方提供额外信息:" @@ -4329,7 +4453,7 @@ msgstr "可选在下方提供额外信息:" msgid "Options:" msgstr "选项:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "或者选择组合这些选项:" @@ -4342,14 +4466,15 @@ msgid "Or, log into one of your other accounts." msgstr "或者使用你的其他账户登录。" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "其他" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "其他账户" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "其他账户" @@ -4357,21 +4482,21 @@ msgstr "其他账户" msgid "Other..." msgstr "其他..." -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "内容审核服务提供方已收到举报,并决定停用你的 Bluesky 私信功能。" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "无法找到这个页面" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "无法找到这个页面" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4381,42 +4506,42 @@ msgstr "密码" msgid "Password Changed" msgstr "密码已修改" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "密码已更新" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "密码已更新!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "暂停" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "暂停视频" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "用户" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "@{0} 关注的用户" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "关注 @{0} 的用户" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "需要照片图库的访问权限。" -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "照片图库的访问权限已被拒绝,请在系统设置中启用。" @@ -4425,60 +4550,69 @@ msgid "Person toggle" msgstr "切换用户" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "宠物" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "摄影" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "适合成年人的图像。" -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "固定到主页" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "固定到主页" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "固定到你的个人资料" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "已固定" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "固定资讯源列表" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" -msgstr "固定到你的资讯源" +msgstr "已固定到你的资讯源中" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "播放" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "播放或暂停 GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "播放视频" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "播放视频" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "播放 GIF" @@ -4487,7 +4621,7 @@ msgid "Please choose your handle." msgstr "请设置你的用户识别符。" #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "请设置你的密码。" @@ -4512,11 +4646,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "请输入一个有效的词、标签或短语" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "请输入你的电子邮箱。" -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "请输入你的邀请码。" @@ -4524,16 +4658,16 @@ msgstr "请输入你的邀请码。" msgid "Please enter your password as well:" msgstr "请输入你的密码:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "请解释为什么你认为这个标记是由 {0} 错误应用的" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "请解释为什么你认为你的私信被错误禁用" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "请以 @{0} 身份登录" @@ -4541,21 +4675,18 @@ msgstr "请以 @{0} 身份登录" msgid "Please Verify Your Email" msgstr "请验证你的电子邮箱" -#: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "请等待你的链接卡片加载完毕" - #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "政治" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "色情内容" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "发布" @@ -4569,17 +4700,21 @@ msgstr "帖文" msgid "Post by {0}" msgstr "{0} 的帖文" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "@{0} 的帖文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "已删除帖文" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "帖文上传失败,请检查您的互联网连接并重试。" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "已隐藏帖文" @@ -4594,7 +4729,7 @@ msgstr "帖文已被隐藏词汇所隐藏" msgid "Post Hidden by You" msgstr "帖文已由你隐藏" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "帖文互动选项" @@ -4602,7 +4737,7 @@ msgstr "帖文互动选项" msgid "Post language" msgstr "帖文语言" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "帖文语言" @@ -4611,12 +4746,24 @@ msgstr "帖文语言" msgid "Post not found" msgstr "无法找到帖文" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "贴文已固定" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "贴文已取消固定" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "正在发帖..." + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "帖文" @@ -4636,7 +4783,7 @@ msgstr "潜在误导性链接" msgid "Preference saved" msgstr "首选项已保存" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "点击以重试连接" @@ -4646,8 +4793,8 @@ msgstr "点击以变更托管提供商" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "点按重试" @@ -4659,79 +4806,79 @@ msgstr "点按以查看同样关注此账户的共同关注者" msgid "Previous image" msgstr "上一张图片" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "首选语言" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "优先显示关注者" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "优先通知" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隐私" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "隐私政策" -#: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "与其他用户开始私信。" +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "正在处理视频..." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "处理中..." -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "个人资料" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "个人资料" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "个人资料已更新" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "通过验证电子邮箱来保护你的账户。" -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "公开内容" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "公开且可共享的批量隐藏或屏蔽列表。" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "公开且可共享的列表,可作为资讯源使用。" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "发布帖文" +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish post" +#~ msgstr "发布帖文" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "发布回复" +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish reply" +#~ msgstr "发布回复" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4745,39 +4892,39 @@ msgstr "二维码已下载!" msgid "QR code saved to your camera roll!" msgstr "二维码已保存至你的照片图库!" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "引用帖文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "引用帖文已重新关联" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "引用帖文已成功分离" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "引用已关闭" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "引用已打开" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "引用选项" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "引用" @@ -4785,16 +4932,12 @@ msgstr "引用" msgid "Quotes of this post" msgstr "引用这条帖文" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "随机显示 (手气不错)" -#: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "比率" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "重新关联引用帖文" @@ -4802,46 +4945,47 @@ msgstr "重新关联引用帖文" msgid "Reactivate your account" msgstr "重新启用你的账户" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "浏览 Bluesky 博客" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "浏览 Bluesky 隐私设置" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "浏览 Bluesky 使用条款" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "结果:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "最近的搜索" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "重新连接" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "刷新通知" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "重新加载对话" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4849,17 +4993,17 @@ msgstr "移除" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "从你的入门包中删除 {displayName}" +msgstr "从你的新手包中删除 {displayName}" #: src/view/com/util/AccountDropdownBtn.tsx:26 msgid "Remove account" msgstr "删除账户" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "删除关联" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "删除头像" @@ -4867,7 +5011,7 @@ msgstr "删除头像" msgid "Remove Banner" msgstr "删除横幅图片" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "删除嵌入" @@ -4883,13 +5027,14 @@ msgstr "删除资讯源?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "从自定义资讯源中删除" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "从自定义资讯源中删除?" @@ -4902,7 +5047,7 @@ msgstr "从快速访问中删除?" msgid "Remove from saved feeds" msgstr "从已保存的资讯源中删除" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "删除图片" @@ -4910,24 +5055,24 @@ msgstr "删除图片" msgid "Remove mute word from your list" msgstr "从你的隐藏词汇列表中删除" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "删除个人资料" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "从搜索历史中删除个人资料" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "删除引用" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "删除转发" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "删除字幕文件" @@ -4935,16 +5080,16 @@ msgstr "删除字幕文件" msgid "Remove this feed from your saved feeds" msgstr "从保存的资讯源列表中删除这个资讯源" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" msgstr "已被作者删除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "已被你删除" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "从列表中删除" @@ -4958,25 +5103,21 @@ msgid "Removed from saved feeds" msgstr "已从保存的资讯源中删除" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "从你的自定义资讯源中删除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "删除引用的帖文" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "删除所有关联" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "替换为 \"Discover\"" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "回复" @@ -4988,7 +5129,7 @@ msgstr "回复已被禁用" msgid "Replies to this post are disabled." msgstr "这条帖文的回复已被关闭。" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "回复" @@ -5003,41 +5144,41 @@ msgstr "回复已被该讨论串的作者隐藏" msgid "Reply Hidden by You" msgstr "回复被你隐藏" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "回复选项" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "由讨论串的作者设置的回复选项" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "回复 <0><1/>" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "回复被屏蔽的帖文" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "回复这条帖文" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "对你回复" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "回复可见性已更新" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "回复已成功隐藏" @@ -5047,8 +5188,8 @@ msgstr "回复已成功隐藏" msgid "Report" msgstr "举报" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "举报账户" @@ -5058,16 +5199,16 @@ msgstr "举报账户" msgid "Report conversation" msgstr "举报对话" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "举报页面" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "举报资讯源" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "举报列表" @@ -5075,15 +5216,15 @@ msgstr "举报列表" msgid "Report message" msgstr "举报私信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "举报帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" -msgstr "举报入门包" +msgstr "举报新手包" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -5097,8 +5238,8 @@ msgstr "举报这个资讯源" msgid "Report this list" msgstr "举报这个列表" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "举报这条私信" @@ -5109,15 +5250,15 @@ msgstr "举报这条帖文" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "举报此入门包" +msgstr "举报此新手包" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" msgstr "举报这个用户" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "转发" @@ -5127,28 +5268,28 @@ msgstr "转发" msgid "Repost" msgstr "转发" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "转发或引用帖文" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "转发" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "由 {0} 转发" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 转发" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "由你转发" @@ -5168,9 +5309,9 @@ msgstr "请求变更" #: src/view/com/modals/ChangePassword.tsx:242 #: src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" -msgstr "确认码" +msgstr "验证码" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "发布时检查媒体是否存在替代文本" @@ -5178,54 +5319,60 @@ msgstr "发布时检查媒体是否存在替代文本" msgid "Require email code to log into your account" msgstr "需要电子邮件验证码才能登录到你的账户" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "服务提供者要求" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "你所在的地区有此要求" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "重新发送电子邮件" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "重新发送电子邮件" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "重新发送验证码电子邮件" #: src/view/com/modals/ChangePassword.tsx:186 msgid "Reset code" -msgstr "确认码" +msgstr "重设码" #: src/view/com/modals/ChangePassword.tsx:193 msgid "Reset Code" -msgstr "确认码" +msgstr "重设码" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "重置引导流程状态" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "重置密码" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "重置首选项状态" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "重置引导流程状态" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "重置首选项状态" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "重试登录" @@ -5234,16 +5381,16 @@ msgstr "重试登录" msgid "Retries the last action, which errored out" msgstr "重试上次出错的操作" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5253,51 +5400,54 @@ msgstr "重试" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "回到上一页" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "回到主页" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "回到上一页" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "保存" -#: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "保存替代文本" - -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "保存生日" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "保存更改" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "保存用户识别符更改" @@ -5306,92 +5456,77 @@ msgstr "保存用户识别符更改" msgid "Save image" msgstr "保存图片" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "保存图片裁切" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "保存二维码" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "保存到自定义资讯源" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "已保存资讯源" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "保存到你的照片图库" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "已保存到你的自定义资讯源" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "保存个人资料中所做的变更" - -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "保存用户识别符更改至 {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "保存图片裁剪设置" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" -msgstr "说嗨!" +msgstr "说句“你好”!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "科学" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "滚动到顶部" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "搜索" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "搜索 \"{query}\"" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "搜索 \"{searchText}\"" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "搜索 @{authorHandle} 带有 {displayTag} 的所有帖文" - -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "搜索所有带有 {displayTag} 的帖文" - -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "搜索来添加你想推荐给别人的资讯源。" @@ -5399,18 +5534,16 @@ msgstr "搜索来添加你想推荐给别人的资讯源。" msgid "Search for users" msgstr "搜索用户" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "搜索 GIF" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "搜索个人资料" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "搜索 Tenor" @@ -5426,23 +5559,23 @@ msgstr "查看 {truncatedTag} 的帖文" msgid "See {truncatedTag} posts by user" msgstr "按用户查看 {truncatedTag} 的帖文" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "查看 <0>{displayTag} 的帖文" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "查看该用户 <0>{displayTag} 的帖文" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "查看 Bluesky 的招聘职缺" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "查看指南" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "视频进度条" @@ -5454,7 +5587,7 @@ msgstr "选择 {item}" msgid "Select a color" msgstr "选择一个颜色" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "选择账户" @@ -5466,7 +5599,7 @@ msgstr "选择一个头像" msgid "Select an emoji" msgstr "选择一个表情符号" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "从现有账户中选择" @@ -5474,7 +5607,7 @@ msgstr "从现有账户中选择" msgid "Select GIF" msgstr "选择 GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "选择 GIF \"{0}\"" @@ -5482,15 +5615,15 @@ msgstr "选择 GIF \"{0}\"" msgid "Select how long to mute this word for." msgstr "选择将此词语隐藏多长时间。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "选择语言..." -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "选择语言" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "选择内容审核服务提供方" @@ -5498,7 +5631,7 @@ msgstr "选择内容审核服务提供方" msgid "Select option {i} of {numItems}" msgstr "选择 {numItems} 项中的第 {i} 项" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "选择字幕文件(.vtt)" @@ -5506,15 +5639,15 @@ msgstr "选择字幕文件(.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "选择 {emojiName} 表情符号作为你的头像" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "请选择你要向哪个内容审核服务提供方提交举报" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "选择托管你数据的服务器。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "选择视频" @@ -5522,23 +5655,23 @@ msgstr "选择视频" msgid "Select what content this mute word should apply to." msgstr "选择此隐藏词应用于哪些内容。" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "选择你希望订阅资讯源中所包含的语言。如果未选择任何语言,将默认显示所有语言。" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "选择你的应用语言,以显示应用中的默认文本。" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "输入你的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "下面选择你感兴趣的选项" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "选择你在订阅资讯源中希望进行翻译的目标首选语言。" @@ -5546,10 +5679,18 @@ msgstr "选择你在订阅资讯源中希望进行翻译的目标首选语言。 msgid "Send a neat website!" msgstr "发送一个你认为很有趣的网站!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "发送验证" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "发送验证电子邮件" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" -msgstr "发送确认电子邮件" +msgstr "发送验证电子邮件" #: src/view/com/modals/DeleteAccount.tsx:149 msgid "Send email" @@ -5560,37 +5701,37 @@ msgctxt "action" msgid "Send Email" msgstr "发送电子邮件" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "提交反馈" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "发送私信" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "发送私信给..." -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "提交举报" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "给 {0} 提交举报" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "发送验证电子邮件" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "通过私信发送" @@ -5598,35 +5739,35 @@ msgstr "通过私信发送" msgid "Sends email with confirmation code for account deletion" msgstr "发送包含账户删除验证码的电子邮件" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "服务器地址" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "设置生日" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "设置新密码" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "停用这个设置项将从资讯源中隐藏所有引用帖文,但转发仍将可见。" -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "停用这个设置项将从资讯源中隐藏所有回复。" -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "停用这个设置项将从资讯源中隐藏所有转发。" -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "启用这个设置项将在分层视图中显示回复。这是一个实验性功能。" -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "启用这个设置项将在\"正在关注\"资讯源中显示已保存资讯源的样例。这是一个实验性功能。" @@ -5634,35 +5775,22 @@ msgstr "启用这个设置项将在\"正在关注\"资讯源中显示已保存 msgid "Set up your account" msgstr "设置你的账户" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "设置 Bluesky 用户名" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "设置用于重置密码的电子邮箱" -#: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "将图片纵横比设置为正方形" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "将图片纵横比设置为高" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "将图片纵横比设置为宽" - -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "设置" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "性行为或性暗示裸露。" @@ -5670,20 +5798,19 @@ msgstr "性行为或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "分享" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "分享" @@ -5696,28 +5823,20 @@ msgstr "分享一个很酷的事!" msgid "Share a fun fact!" msgstr "分享一个有趣的事实!" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "分享资讯源" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "向外部分享图片" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "在帖文里分享图片" - #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "分享链接" @@ -5735,19 +5854,19 @@ msgstr "分享链接对话框" msgid "Share QR code" msgstr "分享二维码" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" -msgstr "分享这个入门包" +msgstr "分享这个新手包" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交网络。" +msgstr "分享这个新手包以帮助其他人加入你在 Bluesky 上的社交网络。" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "分享你最喜欢的资讯源!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "共享首选项测试器" @@ -5755,19 +5874,19 @@ msgstr "共享首选项测试器" msgid "Shares the linked website" msgstr "分享链接的网站" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "显示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "显示替代文本" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "仍然显示" @@ -5785,8 +5904,8 @@ msgstr "显示徽章并从资讯源中过滤" msgid "Show hidden replies" msgstr "显示已隐藏的回复" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "更少显示类似这样的" @@ -5794,14 +5913,14 @@ msgstr "更少显示类似这样的" msgid "Show list anyway" msgstr "仍然显示列表" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "显示更多" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "更多显示类似这样的" @@ -5809,32 +5928,32 @@ msgstr "更多显示类似这样的" msgid "Show muted replies" msgstr "显示已隐藏的回复" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "显示来自已储存资讯源的帖文" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "显示引用帖文" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "显示回复" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "将你关注的用户的回复置于其他回复之前。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "公开显示回复" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "显示转发" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "显示内容" @@ -5847,36 +5966,31 @@ msgstr "显示警告" msgid "Show warning and filter from feeds" msgstr "显示警告并从资讯源中过滤" -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "在你的资讯源中显示来自 {0} 的帖文" - #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "登录" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "以 {0} 登录" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "登录为..." @@ -5888,69 +6002,69 @@ msgstr "登录或创建你的账户以加入对话!" msgid "Sign into Bluesky or create a new account" msgstr "登录 Bluesky 或创建新账户" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "登出" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "登出所有账户" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "注册" -#: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "注册或登录以加入对话" - -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "需要登录" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "登录身份" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "以 @{0} 身份登录" #: src/view/com/notifications/FeedItem.tsx:218 msgid "signed up with your starter pack" -msgstr "使用你的入门包注册" +msgstr "使用你的新手包注册" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" -msgstr "注册但不使用入门包" +msgstr "注册但不使用新手包" #: src/components/FeedInterstitials.tsx:316 msgid "Similar accounts" msgstr "类似账户" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "跳过" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "跳过这段流程" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "更小" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "程序开发" @@ -5962,7 +6076,7 @@ msgstr "其他你可能喜欢的资讯源" msgid "Some people can reply" msgstr "一些人可以回复" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "出了点问题" @@ -5971,33 +6085,33 @@ msgstr "出了点问题" msgid "Something went wrong, please try again" msgstr "出了点问题,请重试" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "出了点问题!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "很抱歉,你的登录会话已过期,请重新登录。" -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "回复排序" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "对同一帖文的回复进行排序:" -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "来源: <0>{sourceName}" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "来源:" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6009,73 +6123,69 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾内容;过于频繁的提及或回复" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "运动" -#: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "方块" - -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "开始一个新私信" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "与 {displayName} 开始私信" -#: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "开始私信" - -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" -msgstr "入门包" +msgstr "新手包" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" -msgstr "由 {0} 创建的入门包" +msgstr "由 {0} 创建的新手包" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "由你创建的新手包" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" -msgstr "入门包无效" +msgstr "新手包无效" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" -msgstr "入门包" +msgstr "新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "入门包能让你更轻松地与朋友分享你最中意的资讯源和关注用户。" +msgstr "新手包能使你轻松与朋友分享你喜欢的用户和资讯源。" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "状态页" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" -msgstr "步骤 {1} 共 {0} 步" +msgstr "第 {0} 步(共 {1} 步)" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "已清除存储,请立即重启应用。" -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "提交" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "订阅" @@ -6083,18 +6193,22 @@ msgstr "订阅" msgid "Subscribe to @{0} to use these labels:" msgstr "订阅 @{0} 以使用这些标记:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "订阅标记者" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "订阅这个标记者" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "订阅这个列表" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "完成!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "建议的账户" @@ -6103,39 +6217,41 @@ msgstr "建议的账户" msgid "Suggested for you" msgstr "为你推荐" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "建议" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "支持" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "切换账户" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "切换到 {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "切换你登录的账户" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "系统" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "系统日志" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "标签菜单:{displayTag}" @@ -6143,23 +6259,19 @@ msgstr "标签菜单:{displayTag}" msgid "Tags only" msgstr "仅限标签" -#: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "高" - #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "点按关闭" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "点击进入全屏模式" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" msgstr "点击以播放或静音" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "点击切换声音播放" @@ -6177,7 +6289,7 @@ msgid "Teach our algorithm what you like" msgstr "告诉我们的算法你喜欢什么" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "科技" @@ -6185,23 +6297,23 @@ msgstr "科技" msgid "Tell a joke!" msgstr "讲个笑话!" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "跟大家介绍一下你自己" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "告诉我们更多" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "一千万" - #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "条款" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "服务条款" @@ -6216,25 +6328,25 @@ msgstr "用词违反了社群准则" msgid "Text & tags" msgstr "文本及标签" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "文本输入框" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "谢谢!您的电子邮箱已成功验证。" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "谢谢,你的举报已提交。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "感谢你成为我们的首批一千万用户的其中一份子。" +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "谢谢,你已成功验证邮箱地址,你现在可以关闭此对话框。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "谢谢,你已成功验证邮箱地址。" - -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "其中包含以下内容:" @@ -6242,21 +6354,21 @@ msgstr "其中包含以下内容:" msgid "That handle is already taken." msgstr "该用户识别符已被占用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." -msgstr "找不到此入门包。" +msgstr "找不到此新手包。" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "大功告成!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "解除屏蔽后,该账户将能够与你互动。" @@ -6265,15 +6377,15 @@ msgstr "解除屏蔽后,该账户将能够与你互动。" msgid "The author of this thread has hidden this reply." msgstr "这条讨论串的作者已隐藏这条回复。" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Bluesky 网页客户端" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "社群准则已迁移至 <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "版权许可已迁移至 <0/>" @@ -6286,7 +6398,7 @@ msgstr "\"Discover\" 资讯源" msgid "The Discover feed now knows what you like" msgstr "现在 \"Discover\" 资讯源已了解你的喜好" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用 App 的体验更好。立即下载 Bluesky,我们将从你上次中断的地方继续。" @@ -6311,63 +6423,59 @@ msgstr "以下步骤将帮助定制你的 Bluesky 体验。" msgid "The post may have been deleted." msgstr "这条帖文可能已被删除。" -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已迁移至 <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "选择的视频大小超过 50MB。" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "你尝试查看的入门包无效,你可以删除此入门包。" +msgstr "你尝试查看的新手包无效,你可以删除此新手包。" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "支持表单已被移除。如果你需要帮助,请<0/>或访问{HELP_DESK_URL}与我们联系。" -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "服务条款已迁移至" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "你提供的验证码无效,请检查你所使用的验证链接,或是申请新的验证链接。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "主题" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +#~ msgid "There are no self-labels that can be applied to this post." +#~ msgstr "没有适用于此帖文的内容标签。" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "停用账户没有时间限制,你可以随时决定回来。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "连接至服务器时出现问题,请检查你的互联网连接并重试。" - -#: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "删除资讯源时出现问题,请检查你的互联网连接并重试。" - -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试。" - -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "连接 Tenor 时出现问题。" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "连接服务器时出现问题" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "连接至服务器时出现问题,请检查你的互联网连接并重试。" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6377,39 +6485,49 @@ msgstr "连接服务器时出现问题" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "刷新列表时出现问题,点击重试。" #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "刷新列表时出现问题,点击重试。" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试。" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "提交举报时出现问题,请检查你的网络连接。" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试。" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "获取应用专用密码时出现问题" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "出现问题了!{0}" @@ -6417,16 +6535,15 @@ msgstr "出现问题了!{0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "出现问题了,请检查你的互联网连接并重试。" -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "应用发生意外错误,请联系我们进行错误反馈!" @@ -6434,11 +6551,11 @@ msgstr "应用发生意外错误,请联系我们进行错误反馈!" msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky 迎来了大量新用户!我们将尽快激活你的账户。" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被标记:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "这个账户要求登录后才能查看其个人资料。" @@ -6446,15 +6563,15 @@ msgstr "这个账户要求登录后才能查看其个人资料。" msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "这个账户已被你的一个或多个内容审核列表所屏蔽。要解除屏蔽,请从内容审核列表中删除这个账户。" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "这条申诉将提交给 <0>{sourceName}。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "此申诉将提交给 Bluesky 内容审核服务。" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "此私信已被断开" @@ -6466,7 +6583,7 @@ msgstr "此内容已被内容审核服务提供方所隐藏。" msgid "This content has received a general warning from moderators." msgstr "内容审核服务提供方已对此内容设置一般警告。" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "此内容由 {0} 托管。是否要启用外部媒体?" @@ -6479,11 +6596,11 @@ msgstr "由于其中一个用户屏蔽了另一个用户,此内容不可用。 msgid "This content is not viewable without a Bluesky account." msgstr "没有 Bluesky 账户,无法查看此内容。" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "此对话的参与者已停用或删除账户,点击以获取更多详情。" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "该功能正在测试,你可以在<0>这篇博客文章中获得关于导出数据的更多信息。" @@ -6496,8 +6613,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "这个资讯源是空的!你或许需要先关注更多的用户,或检查你的语言设置。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "这里是空的。" @@ -6505,7 +6622,7 @@ msgstr "这里是空的。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "这个资讯源已离线,我们将改为显示来自 <0>Discover 资讯源的内容。" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "这条信息不会分享给其他用户。" @@ -6513,15 +6630,15 @@ msgstr "这条信息不会分享给其他用户。" msgid "This is important in case you ever need to change your email or reset your password." msgstr "这很重要,以防你将来需要更改电子邮箱或重置密码。" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "这个标签是由 <0>{0} 标记的。" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." msgstr "这个标签是由该作者标记的。" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "这个标签是由你标记的。" @@ -6537,7 +6654,7 @@ msgstr "这条链接将带你到以下网站:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "这个列表由 <0>{0} 创建,其名称或描述可能违反了 Bluesky 社区准则。" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "这个列表为空!" @@ -6549,28 +6666,28 @@ msgstr "此内容审核提供服务不可用,请查看下方获取更多详情 msgid "This name is already in use" msgstr "该名称已被使用" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "这条帖文已被删除。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "这条帖文只对已登录用户可见,未登录的用户将无法看到。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "这条帖文将从资讯源和讨论串中隐藏。注意此操作无法撤消。" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." msgstr "这条帖文的作者已关闭引用帖文。" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "此个人资料只对已登录用户可见,未登录的用户将无法看到。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "这条回复将被归档到你帖文底部的隐藏显示部分,并且将隐藏后续回复的通知 - 无论是对你自己还是对其他人。" @@ -6578,7 +6695,7 @@ msgstr "这条回复将被归档到你帖文底部的隐藏显示部分,并且 msgid "This service has not provided terms of service or a privacy policy." msgstr "此服务没有提供服务条款或隐私政策。" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "应该在以下位置创建一个域名记录:" @@ -6623,28 +6740,28 @@ msgstr "这将从你的隐藏词汇中删除 \"{0}\"。你随时可以重新添 msgid "This will remove @{0} from the quick access list." msgstr "这将从你的快速访问列表中删除 @{0}。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "这将删除所有对你这条帖文的引用,并将其替换为占位符。" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "讨论串首选项" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "讨论串首选项" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "讨论串模式" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "讨论串首选项" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "在关闭电子邮件两步验证前,请先验证你的电子邮箱地址。" @@ -6652,41 +6769,37 @@ msgstr "在关闭电子邮件两步验证前,请先验证你的电子邮箱地 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "要举报对话,请在会话中选择一条私信并举报。这有助于使内容审核服务提供方了解有关问题的背景信息。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "要上传视频至 Bluesky,你必须首先验证邮箱地址。" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "你想将举报提交给谁?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "很高兴你能来到这里,让我们一起重新打造社交网络。" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "今天" #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "切换下拉式菜单" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "切换以启用或禁用成人内容" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "热门" -#: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "转换" - #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "翻译" @@ -6695,40 +6808,40 @@ msgctxt "action" msgid "Try again" msgstr "重试" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "电视节目" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "两步验证" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "在这里输入你的消息" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "类型:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "取消屏蔽列表" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "取消隐藏列表" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "无法连接到服务,请检查互联网连接。" -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "无法删除" @@ -6736,14 +6849,14 @@ msgstr "无法删除" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "取消屏蔽" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "取消屏蔽" @@ -6753,17 +6866,17 @@ msgstr "取消屏蔽" msgid "Unblock account" msgstr "取消屏蔽账户" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "取消屏蔽账户" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "取消屏蔽账户?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6774,26 +6887,26 @@ msgctxt "action" msgid "Unfollow" msgstr "取消关注" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "取消关注 {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "取消关注账户" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "取消喜欢这个资讯源" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "取消隐藏" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "取消隐藏" @@ -6802,12 +6915,12 @@ msgstr "取消隐藏" msgid "Unmute {truncatedTag}" msgstr "取消隐藏 {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "取消隐藏账户" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "取消隐藏所有 {displayTag} 帖文" @@ -6815,33 +6928,38 @@ msgstr "取消隐藏所有 {displayTag} 帖文" msgid "Unmute conversation" msgstr "取消隐藏对话" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "取消隐藏讨论串" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "取消隐藏视频" -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "取消固定" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "从主页取消固定" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "从个人资料取消固定" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "取消固定限制列表" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" -msgstr "从你的资讯源中取消固定" +msgstr "已从你的资讯源中取消固定" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "取消订阅" @@ -6850,7 +6968,7 @@ msgstr "取消订阅" msgid "Unsubscribe from list" msgstr "从列表取消订阅" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "取消订阅这个标记者" @@ -6858,7 +6976,7 @@ msgstr "取消订阅这个标记者" msgid "Unsubscribed from list" msgstr "已从列表中取消订阅" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "不支持的视频格式:{mimeType}" @@ -6868,75 +6986,88 @@ msgid "Unwanted Sexual Content" msgstr "不受欢迎的性内容" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "更新列表中的 {displayName}" +msgid "Update <0>{displayName} in Lists" +msgstr "更新列表中的 <0>{displayName}" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "更新至 {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "更新引用关联失败" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "更新回复可见性失败" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "更新中..." -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "上传图片" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "将文本文件上传至:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "从相机上传" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "从文件上传" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "从照片图库上传" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "正在上传图片..." + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "正在上传链接缩略图..." + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "正在上传视频..." + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "使用你服务器上的文件" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "使用应用专用密码登录到其他 Bluesky 客户端,而无需对其授予你账户或密码的完全访问权限。" -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "使用 bsky.social 作为域名提供商" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "使用默认提供商" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "使用内置浏览器" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "使用系统默认浏览器" @@ -6944,7 +7075,7 @@ msgstr "使用系统默认浏览器" msgid "Use recommended" msgstr "使用推荐" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "使用 DNS 面板" @@ -6981,36 +7112,36 @@ msgstr "用户屏蔽了你" msgid "User Blocks You" msgstr "用户屏蔽了你" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "{0} 的用户列表" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "<0/> 的用户列表" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "你的用户列表" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "用户列表已创建" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "用户列表已更新" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "用户列表" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "用户名或电子邮箱" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "用户" @@ -7018,46 +7149,45 @@ msgstr "用户" msgid "users followed by <0>@{0}" msgstr "关注 <0>@{0} 的用户" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "我关注的用户" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "\"{0}\"中的用户" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "已喜欢此内容或个人资料的账户" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "值:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "要求验证邮件地址" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "验证 DNS 记录" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "验证邮箱" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "验证邮箱对话框" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "验证我的邮箱" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "验证我的邮箱" @@ -7066,33 +7196,34 @@ msgstr "验证我的邮箱" msgid "Verify New Email" msgstr "验证新的邮箱" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "立即验证" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "验证文本文件" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "验证你的邮箱" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "视频" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "视频处理失败" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "电子游戏" @@ -7100,20 +7231,24 @@ msgstr "电子游戏" msgid "Video not found." msgstr "无法找到视频。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "视频设置" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "视频已上传" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "视频:{0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "视频必须短于60秒" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "查看{0}的头像" @@ -7126,15 +7261,23 @@ msgstr "查看{0}的个人资料" msgid "View {displayName}'s profile" msgstr "查看{displayName}的个人资料" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "查看所有由 @{authorHandle} 发布,并带有标签 {displayTag} 的帖文" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "查看所有带有标签 {displayTag} 的帖文" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "查看屏蔽账户的个人资料" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "查看博客文章以获取更多资讯" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "查看调试入口" @@ -7154,11 +7297,13 @@ msgstr "查看整个讨论串" msgid "View information about these labels" msgstr "查看这个标记的详情" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "查看个人资料" @@ -7166,28 +7311,28 @@ msgstr "查看个人资料" msgid "View the avatar" msgstr "查看头像" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "查看 @{0} 提供的标记服务。" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "查看这个资讯源被谁喜欢" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "查看你屏蔽的账户" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "查看自定义资讯源并探索更多" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "查看你的内容审核列表" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "查看你隐藏的账户" @@ -7210,11 +7355,11 @@ msgstr "警告内容" msgid "Warn content and filter from feeds" msgstr "警告内容并从资讯源中过滤" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "找不到任何与该标签相关的结果。" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "我们无法加载这个对话" @@ -7222,11 +7367,11 @@ msgstr "我们无法加载这个对话" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我们估计还需要 {estimatedTime} 才能完成你的账户准备。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "我们将发送另一封验证邮件至 <0>{0}。" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:" @@ -7234,19 +7379,19 @@ msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "我们已经看完了你关注的帖文。这是来自 <0/> 的最新消息。" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我们无法确定你是否有权上传视频,请重试。" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "我们无法加载你的生日首选项,请重试。" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "我们暂时无法记载你已配置的标记者。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我们无法连接到互联网,请重试以继续设置你的账户。如果仍继续失败,你可以选择跳过这段流程。" @@ -7254,19 +7399,23 @@ msgstr "我们无法连接到互联网,请重试以继续设置你的账户。 msgid "We will let you know when your account is ready." msgstr "我们会在你的账户准备好时通知你。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "我们将使用这些信息来帮助定制你的体验。" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "隆重推出全新的主题字体及字体大小调整功能。" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "我们非常高兴你加入我们!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "很抱歉,我们无法解析这个列表。如果问题持续发生,请联系列表创建者,@{handleOrDid}。" @@ -7274,20 +7423,20 @@ msgstr "很抱歉,我们无法解析这个列表。如果问题持续发生, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我们无法加载你的隐藏词汇列表。请重试。" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,无法完成你的搜索。请稍后再试。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!你所回复的帖文已被删除。" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我们找不到你正在寻找的页面。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "很抱歉!你目前只能订阅 20 个标记者,你已达到 20 个的限制。" @@ -7299,25 +7448,25 @@ msgstr "欢迎回来!" msgid "Welcome, friend!" msgstr "欢迎新天友!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "你感兴趣的是什么?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "你想如何命名你的入门包?" +msgstr "你想如何命名你的新手包?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "发生了什么新鲜事?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "这条帖文中使用了哪些语言?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "你想在算法资讯源中看到哪些语言?" @@ -7325,17 +7474,12 @@ msgstr "你想在算法资讯源中看到哪些语言?" msgid "Who can interact with this post?" msgstr "谁可以参与这条帖文的互动?" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "谁可以给你发送私信?" - #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "谁可以回复" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "糟糕!" @@ -7361,42 +7505,38 @@ msgstr "为什么应该审核这条帖文?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "为什么应该审核此入门包?" +msgstr "为什么应该审核此新手包?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" msgstr "为什么应该审核这个用户?" -#: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "宽" - -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "编写私信" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "撰写帖文" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "撰写你的回复" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "作家" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "启用" @@ -7405,15 +7545,15 @@ msgstr "启用" msgid "Yes, deactivate" msgstr "是的,请停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" -msgstr "是的,删除此入门包" +msgstr "是的,删除此新手包" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "是的,分离" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "是的,隐藏" @@ -7421,11 +7561,10 @@ msgstr "是的,隐藏" msgid "Yes, reactivate my account" msgstr "是的,重新启用我的账户" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "昨天,{time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "昨天" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "你" @@ -7438,7 +7577,7 @@ msgstr "你" msgid "You are in line." msgstr "轮到你了。" -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "你无法上传视频。" @@ -7446,6 +7585,10 @@ msgstr "你无法上传视频。" msgid "You are not following anyone." msgstr "你没有关注任何账户。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "你可以稍后在外观设置中重新调整这些设置。" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -7455,16 +7598,12 @@ msgstr "你也可以探索新的自定义资讯源来关注。" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "你也可以暂时停用你的账户,并在任何时间重新激活它。" -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "你可以随时修改此设置项。" - -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "无论你使用哪种设置,都不会影响已发起的对话。" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "你现在可以使用新密码登录。" @@ -7476,7 +7615,7 @@ msgstr "你可以重新激活你的账户以继续登录,其他用户将可以 msgid "You do not have any followers." msgstr "你目前还没有任何关注者。" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "您没有关注任何关注 @{name} 的用户。" @@ -7484,11 +7623,11 @@ msgstr "您没有关注任何关注 @{name} 的用户。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "你目前还没有邀请码!当你持续使用 Bluesky 一段时间后,我们将提供一些新的邀请码给你。" -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "你目前还没有任何固定的资讯源。" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "你目前还没有任何保存的资讯源。" @@ -7506,12 +7645,12 @@ msgstr "你已屏蔽这个用户" msgid "You have blocked this user. You cannot view their content." msgstr "你已屏蔽这个用户,你将无法查看他们发布的内容。" -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." -msgstr "你输入的确认码无效。它应该长得像这样 XXXXX-XXXXX。" +msgstr "你输入的验证码无效。它应该长得像这样 XXXXX-XXXXX。" #: src/lib/moderation/useModerationCauseDescription.ts:114 msgid "You have hidden this post" @@ -7530,7 +7669,7 @@ msgstr "你已隐藏这个账户。" msgid "You have muted this user" msgstr "你已隐藏这个用户" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "你还没有任何私信,立即与其他人展开对话吧!" @@ -7538,20 +7677,20 @@ msgstr "你还没有任何私信,立即与其他人展开对话吧!" msgid "You have no feeds." msgstr "你还没有建立任何资讯源。" -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "你还没有建立任何列表。" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "你还没有屏蔽任何账户。要屏蔽账户,请转到其个人资料并在其账户上的菜单中选择 \"屏蔽账户\"。" -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "你尚未创建任何应用专用密码,可以通过点击下面的按钮来创建一个。" -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "你还没有隐藏任何账户。要隐藏账户,请转到其个人资料并在其账户上的菜单中选择 \"隐藏账户\"。" @@ -7559,13 +7698,13 @@ msgstr "你还没有隐藏任何账户。要隐藏账户,请转到其个人资 msgid "You have reached the end" msgstr "你已经到末尾了" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "您已暂时达到视频上传的限制,请稍后重试。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" -msgstr "你还没有创建任何入门包!" +msgstr "你还没有创建任何新手包!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" @@ -7592,24 +7731,27 @@ msgstr "你最多只能添加 {STARTER_PACK_MAX_SIZE} 个个人资料" msgid "You may only add up to 3 feeds" msgstr "你最多只能添加 3 个资讯源" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "您最多只能选择 4 张图片" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "你必须年满13岁及以上才能注册。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "你必须至少关注 7 个人以创建入门包。" +msgstr "你必须至少关注 7 个人以创建新手包。" #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "你必须授权照片图库权限以保存二维码" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "你必须授权照片图库权限以保存图片。" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "你必须选择至少一个标记者进行举报" @@ -7617,47 +7759,51 @@ msgstr "你必须选择至少一个标记者进行举报" msgid "You previously deactivated @{0}." msgstr "你之前已停用 @{0}。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "你将不再收到这条讨论串的通知" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "你将收到这条讨论串的通知" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "你将收到一封带有确认码的电子邮件。请在此输入该确认码,然后输入你的新密码。" +msgstr "你将收到一封带有验证码的电子邮件。请在此输入该验证码,然后输入你的新密码。" -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "你:{0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "你:{defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "你:{short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "完成创建账户后,你将关注建议的用户和资讯源!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "完成创建帐户后,你将关注建议的用户!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "你将关注这些用户以及其他 {0} 位" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "你将立即关注这些人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "你将在 <0>{0} 收到一封电子邮件,以验证你的身份。" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "你将通过这些资讯源接收最新动态" @@ -7672,7 +7818,7 @@ msgstr "轮到你了" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "你已使用应用密码登录账户,请改用你的主密码登录以继续停用你的账户。" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "你已设置完成!" @@ -7685,15 +7831,15 @@ msgstr "你选择隐藏了这条帖文中的词汇或标签。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你已经浏览完你的订阅资讯源啦!寻找一些更多的账户关注吧。" -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "你已达到每日上传视频上限(文件太大)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你已达到每日上传视频上限(数量太多)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "你的账户" @@ -7701,15 +7847,15 @@ msgstr "你的账户" msgid "Your account has been deleted" msgstr "你的账户已删除" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你的账户注册时间过短,暂时无法上传视频。请过段时间再试。" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "你的账户数据库包含所有公共数据记录,它们将被导出为“CAR”文件。这个文件不包括帖文中的媒体,例如图像或你的隐私数据,这些数据需要另外获取。" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "你的生日" @@ -7717,17 +7863,17 @@ msgstr "你的生日" msgid "Your browser does not support the video format. Please try a different browser." msgstr "你的浏览器不支持此视频格式,请更换不同的浏览器。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "你的私信功能已被停用" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "你的选择将被保存,但可以稍后在设置中更改。" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "你的电子邮箱似乎无效。" @@ -7752,7 +7898,7 @@ msgstr "你的\"正在关注\"资讯源为空!关注更多用户去看看他 msgid "Your full handle will be" msgstr "你的完整用户识别符将修改为" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "你的完整用户识别符将修改为 <0>@{0}" @@ -7764,15 +7910,15 @@ msgstr "你的隐藏词汇" msgid "Your password has been changed successfully!" msgstr "你的密码已成功更改!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "你的帖文已发布" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "你的帖文、喜欢和屏蔽是公开可见的,而隐藏不可见。" -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "你的个人资料" @@ -7780,14 +7926,14 @@ msgstr "你的个人资料" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "其他 Bluesky 用户将无法再看到你的个人资料、帖文、列表与其他相关信息,你可以随时登录以重新激活你的账户。" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "你的回复已发布" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "你的举报将发送至 Bluesky 内容审核服务" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "你的用户识别符" diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po new file mode 100644 index 0000000000..362121041f --- /dev/null +++ b/src/locale/locales/zh-HK/messages.po @@ -0,0 +1,7939 @@ +msgid "" +msgstr "" +"POT-Creation-Date: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: yue\n" +"Project-Id-Version: Yue for bluesky-social-app\n" +"Report-Msgid-Bugs-To: Frudrax Cheng \n" +"PO-Revision-Date: 2024-10-20 10:14+0800\n" +"Last-Translator: Frudrax Cheng \n" +"Language-Team: Frudrax Cheng (auroursa), Quicpasta (quicpasta.bsky.social)\n" +"Plural-Forms: \n" + +#: src/screens/Messages/components/ChatListItem.tsx:130 +msgid "(contains embedded content)" +msgstr "(有嵌入內容)" + +#: src/view/com/modals/VerifyEmail.tsx:150 +msgid "(no email)" +msgstr "(無電郵)" + +#: src/view/com/notifications/FeedItem.tsx:232 +#: src/view/com/notifications/FeedItem.tsx:327 +msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" +msgstr "{0, plural, one {另外 {formattedCount} 個人} other {另外 {formattedCount} 個人}}" + +#: src/lib/hooks/useTimeAgo.ts:156 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "{0, plural, one {# 日} other {# 日}}" + +#: src/lib/hooks/useTimeAgo.ts:146 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "{0, plural, one {# 個鐘} other {# 個鐘}}" + +#: src/components/moderation/LabelsOnMe.tsx:54 +msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgstr "{0, plural, one {有 # 個標籤貼咗上去} other {有 # 個標籤貼咗上去}}" + +#: src/components/moderation/LabelsOnMe.tsx:60 +msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgstr "{0, plural, one {有 # 個標籤貼咗上去} other {有 # 個標籤貼咗上去}}" + +#: src/lib/hooks/useTimeAgo.ts:136 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "{0, plural, one {# 分鐘} other {# 分鐘}}" + +#: src/lib/hooks/useTimeAgo.ts:167 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "{0, plural, one {# 月} other {# 月}}" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "{0, plural, one {# 次轉發} other {# 次轉發}}" + +#: src/lib/hooks/useTimeAgo.ts:126 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "{0, plural, one {# 秒鐘} other {# 秒鐘}}" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "{0, plural, one {個追隨者} other {個追隨者}}" + +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 +msgid "{0, plural, one {following} other {following}}" +msgstr "{0, plural, one {個追蹤中} other {個追蹤中}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 +msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" +msgstr "{0, plural, one {讚(# 個讚)} other {讚(# 個讚)}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:434 +msgid "{0, plural, one {like} other {likes}}" +msgstr "{0, plural, one {讚} other {讚}}" + +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:300 +msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{0, plural,one {有 # 人讚過} other {有 # 人讚過}}" + +#: src/screens/Profile/Header/Metrics.tsx:59 +msgid "{0, plural, one {post} other {posts}}" +msgstr "{0, plural, one {則帖文} other {則帖文}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:418 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "{0, plural, one {引文} other {引文}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 +msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" +msgstr "{0, plural, one {回覆(# 個回覆)} other {回覆(# 個回覆)}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:400 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "{0, plural, one {轉發} other {轉發}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 +msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" +msgstr "{0, plural, one {刪讚(# 個讚)} other {刪讚(# 個讚)}}" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "{0} <0>喺<1>標籤裏面" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "{0} <0>喺<1>文字同標籤裏面" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 +msgid "{0} joined this week" +msgstr "呢星期有{0}人加入" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "{0} of {1}" +msgstr "{1}之中嘅第{0}個" + +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +msgid "{0} people have used this starter pack!" +msgstr "有{0}個人用過呢個新手包!" + +#: src/view/com/util/UserAvatar.tsx:435 +msgid "{0}'s avatar" +msgstr "{0} 嘅大頭相" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:68 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "有{0}鍾意嘅人同動態,快啲來加入!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:47 +msgid "{0}'s starter pack" +msgstr "{0} 嘅新手包" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:158 +msgid "{0}d" +msgstr "{0}日前" + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:148 +msgid "{0}h" +msgstr "{0}個鐘前" + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:138 +msgid "{0}m" +msgstr "{0}分鐘前" + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0}mo" +msgstr "{0}月前" + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:128 +msgid "{0}s" +msgstr "{0}秒鐘前" + +#: src/components/LabelingServiceCard/index.tsx:96 +msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{count, plural, one {有 # 人讚過} other {有 # 人讚過}}" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:183 +msgid "{displayName}'s Starter Pack" +msgstr "{displayName} 嘅新手包" + +#: src/screens/SignupQueued.tsx:207 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "{estimatedTimeHrs, plural, one {個鐘} other {個鐘}}" + +#: src/screens/SignupQueued.tsx:213 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "{estimatedTimeMins, plural, one {分鐘} other {分鐘}}" + +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 +msgid "{following} following" +msgstr "{following} 個追蹤中" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 +msgid "{handle} can't be messaged" +msgstr "無辦法傳信息畀 {handle}" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 +msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{likeCount, plural, one {有 # 人讚過} other {有 # 人讚過}}" + +#: src/view/shell/Drawer.tsx:477 +msgid "{numUnreadNotifications} unread" +msgstr "{numUnreadNotifications} 條通知未讀" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "{profileName} 喺 {0} 前加入咗 Bluesky" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "{profileName} 喺 {0} 前用新手包加入咗 Bluesky" + +#: src/screens/StarterPack/Wizard/index.tsx:475 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}、<1>{1}同{2, plural, one {另外 # } other {另外 # }}人已經喺你嘅新手包裏面" + +#: src/screens/StarterPack/Wizard/index.tsx:528 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}、<1>{1}同{2, plural, one {另外 # } other {另外 # }}個動態已經喺你嘅新手包裏面" + +#: src/view/shell/Drawer.tsx:97 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "<0>{0} {1, plural, one {個追隨者} other {個追隨者}}" + +#: src/view/shell/Drawer.tsx:108 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "<0>{0} {1, plural, one {個追蹤中} other {個追蹤中}}" + +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "<0>{0} 同<1> <2>{1} 已經喺你嘅新手包裏面" + +#: src/screens/StarterPack/Wizard/index.tsx:509 +msgid "<0>{0} is included in your starter pack" +msgstr "<0>{0} 已經喺你嘅新手包裏面" + +#: src/components/WhoCanReply.tsx:274 +msgid "<0>{0} members" +msgstr "<0>{0} 個成員" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} {time}" + +#: src/screens/StarterPack/Wizard/index.tsx:466 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>你同<1> <2>{0} 已經喺你嘅新手包裏面" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "⚠無效嘅帳戶頭銜" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "24 個鐘" + +#: src/screens/Login/LoginForm.tsx:250 +msgid "2FA Confirmation" +msgstr "雙重驗證" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "30 日" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "7 日" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 +msgid "Access navigation links and settings" +msgstr "存取導覽連結同設定" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 +msgid "Access profile and other navigation links" +msgstr "存取個人檔案同其他導覽連結" + +#: src/view/screens/Settings/index.tsx:464 +msgid "Accessibility" +msgstr "無障礙" + +#: src/view/screens/Settings/index.tsx:455 +msgid "Accessibility settings" +msgstr "無障礙設定" + +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 +msgid "Accessibility Settings" +msgstr "無障礙設定" + +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 +msgid "Account" +msgstr "帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:132 +msgid "Account blocked" +msgstr "已經封鎖帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:145 +msgid "Account followed" +msgstr "已經追蹤帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:108 +msgid "Account muted" +msgstr "已經靜音帳戶" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 +msgid "Account Muted" +msgstr "已經靜音帳戶" + +#: src/components/moderation/ModerationDetailsDialog.tsx:88 +msgid "Account Muted by List" +msgstr "帳戶已俾清單靜音" + +#: src/view/com/util/AccountDropdownBtn.tsx:43 +msgid "Account options" +msgstr "帳戶設定" + +#: src/view/com/util/AccountDropdownBtn.tsx:59 +msgid "Account removed from quick access" +msgstr "已經喺快速存取中移除帳戶" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 +msgid "Account unblocked" +msgstr "已經解除封鎖帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:157 +msgid "Account unfollowed" +msgstr "已經刪追帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:98 +msgid "Account unmuted" +msgstr "已經取消靜音帳戶" + +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 +msgid "Add" +msgstr "新增" + +#: src/screens/StarterPack/Wizard/index.tsx:577 +msgid "Add {0} more to continue" +msgstr "再新增至少 {0} 個以繼續" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "新增 {displayName} 至新手包" + +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 +msgid "Add a content warning" +msgstr "新增內容警告" + +#: src/view/screens/ProfileList.tsx:930 +msgid "Add a user to this list" +msgstr "將用戶新增到呢個清單" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:199 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 +msgid "Add account" +msgstr "新增帳戶" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 +msgid "Add alt text" +msgstr "新增 ALT 文字" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Add alt text (optional)" +msgstr "新增 ALT 文字(可選)" + +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 +msgid "Add App Password" +msgstr "新增 App 密碼" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word for configured settings" +msgstr "喺已經配置嘅設定裏面新增靜音文字" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "新增靜音文字同標籤" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "新增推薦嘅動態" + +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "Add some feeds to your starter pack!" +msgstr "加啲動態落你個新手包裏面!" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "只加你追蹤緊嘅人嘅預設動態" + +#: src/view/com/modals/ChangeHandle.tsx:403 +msgid "Add the following DNS record to your domain:" +msgstr "將以下 DNS 記錄新增到你嘅網域:" + +#: src/components/FeedCard.tsx:296 +msgid "Add this feed to your feeds" +msgstr "將佢新增到你嘅動態" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 +msgid "Add to Lists" +msgstr "新增至清單" + +#: src/view/com/feeds/FeedSourceCard.tsx:266 +msgid "Add to my feeds" +msgstr "加入到我嘅動態" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "新增至清單" + +#: src/view/com/feeds/FeedSourceCard.tsx:125 +msgid "Added to my feeds" +msgstr "加入到我嘅動態" + +#: src/components/moderation/ContentHider.tsx:83 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +msgid "Adult Content" +msgstr "成人內容" + +#: src/screens/Moderation/index.tsx:366 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "成人內容只可以透過網頁版 (<0>bsky.app) 啟用。" + +#: src/components/moderation/LabelPreference.tsx:241 +msgid "Adult content is disabled." +msgstr "成人內容已經停用。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "成人內容標籤" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 +msgid "Advanced" +msgstr "進階設定" + +#: src/state/shell/progress-guide.tsx:171 +msgid "Algorithm training complete!" +msgstr "演算法訓練完成!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:381 +msgid "All accounts have been followed!" +msgstr "已經追蹤所有帳戶!" + +#: src/view/screens/Feeds.tsx:735 +msgid "All the feeds you've saved, right in one place." +msgstr "以下係你儲存嘅動態。" + +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 +msgid "Allow access to your direct messages" +msgstr "允許存取你嘅私人訊息" + +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 +msgid "Allow new messages from" +msgstr "允許呢啲人向你發起聊天" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 +msgid "Allow replies from:" +msgstr "允許呢啲人回覆你嘅帖文:" + +#: src/view/screens/AppPasswords.tsx:272 +msgid "Allows access to direct messages" +msgstr "允許存取你嘅私人訊息" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 +msgid "Already have a code?" +msgstr "已經有驗證碼喇?" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "已經以 @{0} 身分登入" + +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +msgid "ALT" +msgstr "ALT" + +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 +msgid "Alt text" +msgstr "ALT 文字" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +msgid "Alt Text" +msgstr "ALT 文字" + +#: src/view/com/composer/photos/Gallery.tsx:252 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "ALT 文字會為盲人同低視力用戶描述圖片,同埋有助為每個人提供背景資料。" + +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "ALT 文字會俾截斷,限制:{0} 個字元。" + +#: src/view/com/modals/VerifyEmail.tsx:132 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "電郵已經發送到 {0}。請查閱郵件同埋喺下面輸入驗證碼。" + +#: src/view/com/modals/ChangeEmail.tsx:114 +msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." +msgstr "電郵已經發送到之前填寫嘅電郵地址 {0}。請查閱郵件同埋喺下面輸入驗證碼。" + +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "電郵已經發送!請查閱郵件同埋喺下面輸入驗證碼。" + +#: src/components/dialogs/GifSelect.tsx:266 +msgid "An error has occurred" +msgstr "發生錯誤" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 +msgid "An error occurred" +msgstr "發生錯誤" + +#: src/view/com/composer/state/video.ts:412 +msgid "An error occurred while compressing the video." +msgstr "壓縮影片嗰陣發生錯誤。" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "砌緊你嘅新手包嘅時候出咗錯。要唔要試多次?" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:135 +msgid "An error occurred while loading the video. Please try again later." +msgstr "載入影片嗰陣發生錯誤。請稍後再試。" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 +msgid "An error occurred while loading the video. Please try again." +msgstr "載入影片嗰陣發生錯誤。請再試一次。" + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "An error occurred while saving the QR code!" +msgstr "儲存 QR Code 時發生錯誤!" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 +msgid "An error occurred while selecting the video" +msgstr "揀影片嗰陣發生錯誤" + +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 +msgid "An error occurred while trying to follow all" +msgstr "追蹤所有帳戶時發生錯誤" + +#: src/view/com/composer/state/video.ts:449 +msgid "An error occurred while uploading the video." +msgstr "上載影片嗰陣發生錯誤。" + +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "問題唔喺上述選項" + +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "發起聊天時出現問題" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "開啟聊天室時出現問題" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 +msgid "An issue occurred, please try again." +msgstr "出現問題,請再試一次。" + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "出現未知錯誤" + +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +msgid "an unknown labeler" +msgstr "未知嘅標記者" + +#: src/components/WhoCanReply.tsx:295 +#: src/view/com/notifications/FeedItem.tsx:231 +#: src/view/com/notifications/FeedItem.tsx:324 +msgid "and" +msgstr "同" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 +msgid "Animals" +msgstr "動物" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +msgid "Animated GIF" +msgstr "GIF 動畫" + +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "反社會行為" + +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "任何語言" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "所有人都可以參與互動" + +#: src/view/screens/LanguageSettings.tsx:94 +msgid "App Language" +msgstr "App 語言" + +#: src/view/screens/AppPasswords.tsx:232 +msgid "App password deleted" +msgstr "刪除咗嘅 App 密碼" + +#: src/view/com/modals/AddAppPasswords.tsx:138 +msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." +msgstr "App 密碼嘅名稱只可以包含字母、數字、空格、破折號同下划線。" + +#: src/view/com/modals/AddAppPasswords.tsx:103 +msgid "App Password names must be at least 4 characters long." +msgstr "App 密碼嘅名稱必須至少有4個字元。" + +#: src/view/screens/Settings/index.tsx:664 +msgid "App password settings" +msgstr "App 密碼設定" + +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 +msgid "App Passwords" +msgstr "App 密碼" + +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +msgid "Appeal" +msgstr "上訴" + +#: src/components/moderation/LabelsOnMeDialog.tsx:243 +msgid "Appeal \"{0}\" label" +msgstr "上訴「{0}」標籤" + +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgid "Appeal submitted" +msgstr "上訴已經提交" + +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 +msgid "Appeal this decision" +msgstr "上訴呢個決定" + +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 +msgid "Appearance" +msgstr "外觀" + +#: src/view/screens/Settings/index.tsx:476 +msgid "Appearance settings" +msgstr "外觀設定" + +#: src/Navigation.tsx:325 +msgid "Appearance Settings" +msgstr "外觀設定" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "套用預設嘅推薦動態" + +#: src/view/screens/AppPasswords.tsx:283 +msgid "Are you sure you want to delete the app password \"{name}\"?" +msgstr "你確定要刪除呢個 App 密碼「{name}」嗎?" + +#: src/components/dms/MessageMenu.tsx:149 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "你確定要刪除呢個訊息?呢個訊息會為你刪除,但唔會為另一個參與者刪除。" + +#: src/screens/StarterPack/StarterPackScreen.tsx:632 +msgid "Are you sure you want to delete this starter pack?" +msgstr "你確定要刪走個新手包?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "你確定要棄置你嘅變更?" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "你確定要離開呢個對話?你嘅訊息會為你刪除,但唔會為其他參與者刪除。" + +#: src/view/com/feeds/FeedSourceCard.tsx:313 +msgid "Are you sure you want to remove {0} from your feeds?" +msgstr "你確定要喺你嘅動態裏面移除 {0} 嗎?" + +#: src/components/FeedCard.tsx:313 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "你確定要喺你嘅動態裏面移除呢個嗎?" + +#: src/view/com/composer/Composer.tsx:532 +msgid "Are you sure you'd like to discard this draft?" +msgstr "你確定要想棄置呢份草稿?" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "你確定嗎?" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 +msgid "Are you writing in <0>{0}?" +msgstr "你係咪用 <0>{0} 寫緊?" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 +msgid "Art" +msgstr "藝術" + +#: src/view/com/composer/labels/LabelsBtn.tsx:170 +msgid "Artistic or non-erotic nudity." +msgstr "藝術或者非情色嘅裸體。" + +#: src/screens/Signup/StepHandle.tsx:173 +msgid "At least 3 characters" +msgstr "至少有3個字元" + +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 +msgid "Back" +msgstr "返回" + +#: src/view/screens/Settings/index.tsx:442 +msgid "Basics" +msgstr "基礎設定" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "Birthday" +msgstr "生日" + +#: src/view/screens/Settings/index.tsx:348 +msgid "Birthday:" +msgstr "生日:" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +msgid "Block" +msgstr "封鎖" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Block account" +msgstr "封鎖帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 +msgid "Block Account" +msgstr "封鎖帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:324 +msgid "Block Account?" +msgstr "封鎖帳戶?" + +#: src/view/screens/ProfileList.tsx:643 +msgid "Block accounts" +msgstr "封鎖帳戶" + +#: src/view/screens/ProfileList.tsx:747 +msgid "Block list" +msgstr "封鎖清單" + +#: src/view/screens/ProfileList.tsx:742 +msgid "Block these accounts?" +msgstr "封鎖呢啲帳戶?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 +msgid "Blocked" +msgstr "已被封鎖" + +#: src/screens/Moderation/index.tsx:280 +msgid "Blocked accounts" +msgstr "封鎖咗帳戶" + +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 +msgid "Blocked Accounts" +msgstr "封鎖咗帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:336 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "俾封鎖嘅帳戶唔可以喺你嘅討論串裏面回覆、提及你或者以其他方式同你互動。" + +#: src/view/screens/ModerationBlockedAccounts.tsx:116 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "俾封鎖嘅帳戶唔可以喺你嘅討論串裏面回覆、提及你或者以其他方式同你互動。你唔會睇到佢哋嘅內容,而且佢哋會俾阻止睇到你嘅內容。" + +#: src/view/com/post-thread/PostThread.tsx:412 +msgid "Blocked post." +msgstr "封鎖咗嘅帖文。" + +#: src/screens/Profile/Sections/Labels.tsx:173 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "封鎖唔會阻止呢個標籤者喺你嘅帳戶上面放置標籤。" + +#: src/view/screens/ProfileList.tsx:744 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "封鎖係公開嘅。俾封鎖嘅帳戶唔可以喺你嘅討論串裏面回覆、提及你或者以其他方式同你互動。" + +#: src/view/com/profile/ProfileMenu.tsx:333 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "封鎖唔會阻止標籤喺你嘅帳戶上面套用,但係會阻止呢個帳戶喺你嘅討論串裏面回覆或者同你互動。" + +#: src/view/com/auth/SplashScreen.web.tsx:172 +msgid "Blog" +msgstr "網誌" + +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky 係一個開放嘅網絡,你可以喺嗰度揀你嘅 hosting 供應商。如果你係開發人員,你可以托管你自己嘅伺服器。" + +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky 同朋友一齊好啲!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "Bluesky 會喺你網絡裏面嘅人裏面揀一組推薦嘅帳戶。" + +#: src/screens/Moderation/index.tsx:571 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "Bluesky 唔會向已登出用戶顯示你嘅個人檔案同帖文,但其他 App 未必會聽佢支笛。你嘅帳戶唔會成為私帳。" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "模糊圖片" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "模糊圖片同埋喺動態裏面篩選" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 +msgid "Books" +msgstr "書" + +#: src/components/FeedInterstitials.tsx:350 +msgid "Browse more accounts on the Explore page" +msgstr "喺探索頁面瀏覽更多帳戶" + +#: src/components/FeedInterstitials.tsx:483 +msgid "Browse more feeds on the Explore page" +msgstr "喺探索頁面瀏覽更多動態" + +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 +msgid "Browse more suggestions" +msgstr "瀏覽更多建議" + +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 +msgid "Browse more suggestions on the Explore page" +msgstr "喺探索頁面瀏覽更多建議" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "瀏覽其他動態" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +msgid "Business" +msgstr "商業" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:160 +msgid "by —" +msgstr "由 —" + +#: src/components/LabelingServiceCard/index.tsx:62 +msgid "By {0}" +msgstr "由 {0}" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:164 +msgid "by <0/>" +msgstr "由 <0/>" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "建立帳戶,即係你同意<0>私隱政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "建立帳戶,即係你同意<0>服務條款同<1>私隱政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "建立帳戶,即係你同意<0>服務條款。" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:162 +msgid "by you" +msgstr "由你" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 +msgid "Camera" +msgstr "相機" + +#: src/view/com/modals/AddAppPasswords.tsx:180 +msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." +msgstr "只可以包含字母、數字、空格、破折號同下划線。必須至少有4個字元,但唔可以超過32個字元。" + +#: src/components/Menu/index.tsx:235 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 +#: src/screens/Deactivated.tsx:161 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 +#: src/view/com/modals/ChangeEmail.tsx:213 +#: src/view/com/modals/ChangeEmail.tsx:215 +#: src/view/com/modals/ChangeHandle.tsx:141 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 +#: src/view/com/modals/LinkWarning.tsx:105 +#: src/view/com/modals/LinkWarning.tsx:107 +#: src/view/com/modals/VerifyEmail.tsx:255 +#: src/view/com/modals/VerifyEmail.tsx:261 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 +msgid "Cancel" +msgstr "取消" + +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:296 +msgctxt "action" +msgid "Cancel" +msgstr "取消" + +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:292 +msgid "Cancel account deletion" +msgstr "取消帳戶刪除" + +#: src/view/com/modals/ChangeHandle.tsx:137 +msgid "Cancel change handle" +msgstr "取消變更帳戶頭銜" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "取消圖片裁剪" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 +msgid "Cancel quote post" +msgstr "取消引用" + +#: src/screens/Deactivated.tsx:155 +msgid "Cancel reactivation and log out" +msgstr "取消重新啟動同埋登出" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 +msgid "Cancel search" +msgstr "取消搜尋" + +#: src/view/com/modals/LinkWarning.tsx:106 +msgid "Cancels opening the linked website" +msgstr "取消打開連結咗嘅網站" + +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 +msgid "Cannot interact with a blocked user" +msgstr "同俾封鎖嘅用戶互動唔到" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 +msgid "Captions (.vtt)" +msgstr "字幕(.vtt)" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +msgid "Captions & alt text" +msgstr "字幕同 ALT 文字" + +#: src/view/com/modals/VerifyEmail.tsx:160 +msgid "Change" +msgstr "變更" + +#: src/view/screens/Settings/index.tsx:342 +msgctxt "action" +msgid "Change" +msgstr "變更" + +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "變更電郵" + +#: src/view/screens/Settings/index.tsx:685 +msgid "Change handle" +msgstr "變更帳戶頭銜" + +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 +msgid "Change Handle" +msgstr "變更帳戶頭銜" + +#: src/view/com/modals/VerifyEmail.tsx:155 +msgid "Change my email" +msgstr "變更我嘅電郵" + +#: src/view/screens/Settings/index.tsx:730 +msgid "Change password" +msgstr "變更密碼" + +#: src/view/com/modals/ChangePassword.tsx:142 +#: src/view/screens/Settings/index.tsx:741 +msgid "Change Password" +msgstr "變更密碼" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 +msgid "Change post language to {0}" +msgstr "將帖文語言改為 {0}" + +#: src/view/com/modals/ChangeEmail.tsx:104 +msgid "Change Your Email" +msgstr "變更你嘅電郵" + +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 +msgid "Chat" +msgstr "聊天室" + +#: src/components/dms/ConvoMenu.tsx:82 +msgid "Chat muted" +msgstr "聊天室靜音咗" + +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 +msgid "Chat settings" +msgstr "聊天室設定" + +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 +msgid "Chat Settings" +msgstr "聊天室設定" + +#: src/components/dms/ConvoMenu.tsx:84 +msgid "Chat unmuted" +msgstr "聊天室已經解除靜音" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "檢查我嘅狀態" + +#: src/screens/Login/LoginForm.tsx:275 +msgid "Check your email for a login code and enter it here." +msgstr "檢查你嘅電郵有無確認碼,然後喺呢度輸入。" + +#: src/view/com/modals/DeleteAccount.tsx:231 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "檢查一下你個收件箱有無收到一封夾住確認碼嘅電郵,然後喺下面輸入:" + +#: src/screens/StarterPack/Wizard/index.tsx:199 +msgid "Choose Feeds" +msgstr "揀動態" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 +msgid "Choose for me" +msgstr "幫我揀" + +#: src/screens/StarterPack/Wizard/index.tsx:195 +msgid "Choose People" +msgstr "揀人" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "揀你認為最適用於呢個媒體內容嘅標籤。如果唔揀,則預設為全年齡向。" + +#: src/view/com/auth/server-input/index.tsx:76 +msgid "Choose Service" +msgstr "揀服務" + +#: src/screens/Onboarding/StepFinished.tsx:271 +msgid "Choose the algorithms that power your custom feeds." +msgstr "揀啲可以為你嘅自訂動態提供支援嘅演算法。" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "揀呢個顏色做你嘅大頭相" + +#: src/screens/Signup/StepInfo/index.tsx:201 +msgid "Choose your password" +msgstr "揀你個密碼" + +#: src/view/screens/Settings/index.tsx:877 +msgid "Clear all storage data" +msgstr "清除所有儲存資料" + +#: src/view/screens/Settings/index.tsx:880 +msgid "Clear all storage data (restart after this)" +msgstr "清除所有儲存資料(之後重新啟動)" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "清除搜尋查詢" + +#: src/view/screens/Settings/index.tsx:878 +msgid "Clears all storage data" +msgstr "清除所有儲存資料" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "撳呢度" + +#: src/view/com/modals/DeleteAccount.tsx:208 +msgid "Click here for more information on deactivating your account" +msgstr "撳呢度睇多啲有關停用你個帳戶嘅資訊" + +#: src/view/com/modals/DeleteAccount.tsx:216 +msgid "Click here for more information." +msgstr "撳呢度睇多啲資訊。" + +#: src/components/TagMenu/index.web.tsx:152 +msgid "Click here to open tag menu for {tag}" +msgstr "撳呢度打開 {tag} 嘅標籤選單" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +msgid "Click to disable quote posts of this post." +msgstr "撳一下就可以停用呢篇帖文嘅引用。" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "撳一下就可以啟用呢篇帖文嘅引用。" + +#: src/components/dms/MessageItem.tsx:240 +msgid "Click to retry failed message" +msgstr "撳一下就可以試多一次傳送失敗嘅訊息" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "氣候" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "Clip 🐴 clop 🐴" + +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 +msgid "Close" +msgstr "閂咗" + +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 +msgid "Close active dialog" +msgstr "閂咗有效對話框" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "閂咗警示" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "閂咗底部抽屜" + +#: src/components/dialogs/GifSelect.tsx:276 +msgid "Close dialog" +msgstr "閂咗對話框" + +#: src/components/dialogs/GifSelect.tsx:169 +msgid "Close GIF dialog" +msgstr "閂咗 GIF 對話框" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 +msgid "Close image" +msgstr "閂咗圖片" + +#: src/view/com/lightbox/Lightbox.web.tsx:129 +msgid "Close image viewer" +msgstr "閂咗圖片檢視器" + +#: src/view/shell/index.web.tsx:67 +msgid "Close navigation footer" +msgstr "閂咗導覽頁尾" + +#: src/components/Menu/index.tsx:229 +#: src/components/TagMenu/index.tsx:261 +msgid "Close this dialog" +msgstr "閂咗呢個對話框" + +#: src/view/shell/index.web.tsx:68 +msgid "Closes bottom navigation bar" +msgstr "閂咗底部導覽列" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "閂咗密碼更新警示" + +#: src/view/com/composer/Composer.tsx:549 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "閂咗帖文編輯器同埋棄置帖文草稿" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 +msgid "Closes viewer for header image" +msgstr "閂咗標題圖片嘅檢視器" + +#: src/view/com/notifications/FeedItem.tsx:265 +msgid "Collapse list of users" +msgstr "收合用戶清單" + +#: src/view/com/notifications/FeedItem.tsx:470 +msgid "Collapses list of users for a given notification" +msgstr "收合特定通知嘅使用者清單" + +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "顏色模式" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 +msgid "Comedy" +msgstr "喜劇" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 +msgid "Comics" +msgstr "漫畫" + +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "社區指南" + +#: src/screens/Onboarding/StepFinished.tsx:284 +msgid "Complete onboarding and start using your account" +msgstr "完成呢個入門,然後開始使用你嘅帳戶" + +#: src/screens/Signup/index.tsx:144 +msgid "Complete the challenge" +msgstr "完成呢個挑戰" + +#: src/view/com/composer/Composer.tsx:632 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "撰寫長度最多為 {MAX_GRAPHEME_LENGTH} 字元嘅帖文" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +msgid "Compose reply" +msgstr "撰寫回覆" + +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "壓縮緊影片..." + +#: src/components/moderation/LabelPreference.tsx:81 +msgid "Configure content filtering setting for category: {name}" +msgstr "為 {name} 配置內容審核設定" + +#: src/components/moderation/LabelPreference.tsx:243 +msgid "Configured in <0>moderation settings." +msgstr "喺 <0>審核設定 裏面設定咗。" + +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 +#: src/view/com/modals/VerifyEmail.tsx:239 +#: src/view/com/modals/VerifyEmail.tsx:241 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 +msgid "Confirm" +msgstr "確認" + +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 +msgid "Confirm Change" +msgstr "確認變更" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 +msgid "Confirm content language settings" +msgstr "確認內容語言設定" + +#: src/view/com/modals/DeleteAccount.tsx:282 +msgid "Confirm delete account" +msgstr "確認刪除帳戶" + +#: src/screens/Moderation/index.tsx:314 +msgid "Confirm your age:" +msgstr "確認你嘅年齡:" + +#: src/screens/Moderation/index.tsx:305 +msgid "Confirm your birthdate" +msgstr "確認你嘅出生日期" + +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 +#: src/view/com/modals/ChangeEmail.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:238 +#: src/view/com/modals/DeleteAccount.tsx:244 +#: src/view/com/modals/VerifyEmail.tsx:173 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 +msgid "Confirmation code" +msgstr "確認碼" + +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "確認碼" + +#: src/screens/Login/LoginForm.tsx:309 +msgid "Connecting..." +msgstr "連接緊..." + +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 +msgid "Contact support" +msgstr "聯絡支援" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "內容俾封鎖" + +#: src/screens/Moderation/index.tsx:298 +msgid "Content filters" +msgstr "內容篩選器" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 +msgid "Content Languages" +msgstr "內容語言" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 +msgid "Content Not Available" +msgstr "內容唔可用" + +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 +msgid "Content Warning" +msgstr "內容警告" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "內容警告" + +#: src/components/Menu/index.web.tsx:83 +msgid "Context menu backdrop, click to close the menu." +msgstr "上下文選單背景,撳一下就可以閂咗選單。" + +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 +msgid "Continue" +msgstr "繼續" + +#: src/components/AccountList.tsx:121 +msgid "Continue as {0} (currently signed in)" +msgstr "以 {0} 繼續 (目前已登入)" + +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "繼續載入討論串..." + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "繼續去下一步" + +#: src/screens/Messages/components/ChatListItem.tsx:164 +msgid "Conversation deleted" +msgstr "對話刪除咗" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "煮緊嘢" + +#: src/view/com/modals/AddAppPasswords.tsx:221 +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "複製咗" + +#: src/view/screens/Settings/index.tsx:234 +msgid "Copied build version to clipboard" +msgstr "將構建版本複製到剪貼簿" + +#: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 +#: src/view/com/modals/AddAppPasswords.tsx:80 +#: src/view/com/modals/ChangeHandle.tsx:313 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 +msgid "Copied to clipboard" +msgstr "複製咗去剪貼簿" + +#: src/components/dialogs/Embed.tsx:136 +msgid "Copied!" +msgstr "複製咗!" + +#: src/view/com/modals/AddAppPasswords.tsx:215 +msgid "Copies app password" +msgstr "複製 App 密碼" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/view/com/modals/AddAppPasswords.tsx:214 +msgid "Copy" +msgstr "複製" + +#: src/view/com/modals/ChangeHandle.tsx:467 +msgid "Copy {0}" +msgstr "複製 {0}" + +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 +msgid "Copy code" +msgstr "複製代碼" + +#: src/components/StarterPack/ShareDialog.tsx:124 +msgid "Copy link" +msgstr "複製連結" + +#: src/components/StarterPack/ShareDialog.tsx:131 +msgid "Copy Link" +msgstr "複製連結" + +#: src/view/screens/ProfileList.tsx:487 +msgid "Copy link to list" +msgstr "將連結複製去清單" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +msgid "Copy link to post" +msgstr "將連結複製去帖文" + +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 +msgid "Copy message text" +msgstr "複製訊息文字" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +msgid "Copy post text" +msgstr "複製帖文文字" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Copy QR code" +msgstr "複製 QR code" + +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "版權政策" + +#: src/components/dms/LeaveConvoPrompt.tsx:39 +msgid "Could not leave chat" +msgstr "離開唔到聊天室" + +#: src/view/screens/ProfileFeed.tsx:104 +msgid "Could not load feed" +msgstr "載入唔到動態" + +#: src/view/screens/ProfileList.tsx:1020 +msgid "Could not load list" +msgstr "載入唔到清單" + +#: src/components/dms/ConvoMenu.tsx:88 +msgid "Could not mute chat" +msgstr "靜音唔到聊天室" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:56 +msgid "Could not process your video" +msgstr "處理唔到你嘅影片" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 +msgid "Create" +msgstr "建立" + +#: src/view/screens/Settings/index.tsx:403 +msgid "Create a new Bluesky account" +msgstr "建立一個 Bluesky 新帳戶" + +#: src/components/StarterPack/QrCodeDialog.tsx:153 +msgid "Create a QR code for a starter pack" +msgstr "為新手包建立 QR Code" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 +msgid "Create a starter pack" +msgstr "建立一個新手包" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 +msgid "Create a starter pack for me" +msgstr "幫我建立一個新手包" + +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "建立帳戶" + +#: src/screens/Signup/index.tsx:93 +msgid "Create Account" +msgstr "建立帳戶" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +msgid "Create an account" +msgstr "建立一個帳戶" + +#: src/screens/Onboarding/StepProfile/index.tsx:292 +msgid "Create an avatar instead" +msgstr "改為建立一個大頭相" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 +msgid "Create another" +msgstr "建立另一個" + +#: src/view/com/modals/AddAppPasswords.tsx:243 +msgid "Create App Password" +msgstr "建立 App 密碼" + +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "建立新帳戶" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:101 +msgid "Create report for {0}" +msgstr "為 {0} 建立上報" + +#: src/view/screens/AppPasswords.tsx:252 +msgid "Created {0}" +msgstr "建立咗 {0}" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 +msgid "Culture" +msgstr "文化" + +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "自訂" + +#: src/view/com/modals/ChangeHandle.tsx:375 +msgid "Custom domain" +msgstr "自訂網域" + +#: src/view/screens/Feeds.tsx:761 +#: src/view/screens/Search/Explore.tsx:391 +msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." +msgstr "由社群建立嘅自訂動態會為你帶嚟新嘅體驗,同埋幫你搵到你鍾意嘅內容。" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 +msgid "Customize media from external sites." +msgstr "從外部網站自訂媒體。" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 +msgid "Customize who can interact with this post." +msgstr "自訂邊個可以同呢篇帖文互動。" + +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 +msgid "Dark" +msgstr "深色" + +#: src/view/screens/Debug.tsx:70 +msgid "Dark mode" +msgstr "深色模式" + +#: src/screens/Settings/AppearanceSettings.tsx:122 +msgid "Dark theme" +msgstr "深色主題" + +#: src/screens/Signup/StepInfo/index.tsx:222 +msgid "Date of birth" +msgstr "出生日期" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +#: src/view/screens/Settings/index.tsx:773 +msgid "Deactivate account" +msgstr "停用帳戶" + +#: src/view/screens/Settings/index.tsx:785 +msgid "Deactivate my account" +msgstr "停用我嘅帳戶" + +#: src/view/screens/Settings/index.tsx:840 +msgid "Debug Moderation" +msgstr "調試審核" + +#: src/view/screens/Debug.tsx:90 +msgid "Debug panel" +msgstr "調試面板" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "預設" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 +msgid "Delete" +msgstr "刪除" + +#: src/view/screens/Settings/index.tsx:795 +msgid "Delete account" +msgstr "刪除帳戶" + +#: src/view/com/modals/DeleteAccount.tsx:105 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "刪除帳戶 <0>\"<1>{0}<2>\"" + +#: src/view/screens/AppPasswords.tsx:245 +msgid "Delete app password" +msgstr "刪除 App 密碼" + +#: src/view/screens/AppPasswords.tsx:281 +msgid "Delete app password?" +msgstr "刪除 App 密碼?" + +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 +msgid "Delete chat declaration record" +msgstr "刪除聊天室申報記錄" + +#: src/components/dms/MessageMenu.tsx:124 +msgid "Delete for me" +msgstr "幫我刪除" + +#: src/view/screens/ProfileList.tsx:530 +msgid "Delete List" +msgstr "刪除清單" + +#: src/components/dms/MessageMenu.tsx:147 +msgid "Delete message" +msgstr "刪除訊息" + +#: src/components/dms/MessageMenu.tsx:122 +msgid "Delete message for me" +msgstr "幫我刪除訊息" + +#: src/view/com/modals/DeleteAccount.tsx:285 +msgid "Delete my account" +msgstr "刪除我嘅帳戶" + +#: src/view/screens/Settings/index.tsx:807 +msgid "Delete My Account…" +msgstr "刪除我嘅帳戶…" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +msgid "Delete post" +msgstr "刪除帖文" + +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 +msgid "Delete starter pack" +msgstr "刪除新手包" + +#: src/screens/StarterPack/StarterPackScreen.tsx:629 +msgid "Delete starter pack?" +msgstr "刪除新手包?" + +#: src/view/screens/ProfileList.tsx:721 +msgid "Delete this list?" +msgstr "刪除呢個清單?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +msgid "Delete this post?" +msgstr "刪除呢篇帖文?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 +msgid "Deleted" +msgstr "刪除咗" + +#: src/view/com/post-thread/PostThread.tsx:398 +msgid "Deleted post." +msgstr "刪除咗嘅帖文。" + +#: src/view/screens/Settings/index.tsx:858 +msgid "Deletes the chat declaration record" +msgstr "刪除咗聊天室申報記錄" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 +msgid "Description" +msgstr "描述" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "描述太長" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "描述太長,最大字元數限制係 {DESCRIPTION_MAX_GRAPHEMES}。" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "描述 ALT 文字" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +msgid "Detach quote" +msgstr "拆開引用" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +msgid "Detach quote post?" +msgstr "拆開引文?" + +#: src/components/WhoCanReply.tsx:175 +msgid "Dialog: adjust who can interact with this post" +msgstr "對話框:調整邊個可以同呢篇帖文互動" + +#: src/view/com/composer/Composer.tsx:325 +msgid "Did you want to say anything?" +msgstr "你想唔想講啲咩?" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Dim" +msgstr "暗淡" + +#: src/view/screens/AccessibilitySettings.tsx:109 +msgid "Disable autoplay for videos and GIFs" +msgstr "停用影片同 GIF 嘅自動播放功能" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "停用電郵雙重驗證" + +#: src/view/screens/AccessibilitySettings.tsx:123 +msgid "Disable haptic feedback" +msgstr "停用觸覺反饋" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 +msgid "Disable subtitles" +msgstr "停用字幕" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 +msgid "Disabled" +msgstr "停用咗" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 +msgid "Discard" +msgstr "棄置" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "棄置變更?" + +#: src/view/com/composer/Composer.tsx:531 +msgid "Discard draft?" +msgstr "棄置草稿?" + +#: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "阻止 App 向登出嘅使用者顯示我嘅帳戶" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "發掘新嘅自訂動態" + +#: src/view/screens/Search/Explore.tsx:389 +msgid "Discover new feeds" +msgstr "發掘新嘅動態" + +#: src/view/screens/Feeds.tsx:758 +msgid "Discover New Feeds" +msgstr "發掘新嘅動態" + +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "跳過" + +#: src/view/com/composer/Composer.tsx:1265 +msgid "Dismiss error" +msgstr "跳過錯誤" + +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "跳過入門指南" + +#: src/view/screens/AccessibilitySettings.tsx:97 +msgid "Display larger alt text badges" +msgstr "顯示較大嘅 ALT 文字徽章" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 +msgid "Display name" +msgstr "名稱" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "名稱太長" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "名稱太長,最大字元數限制係 {DISPLAY_NAME_MAX_GRAPHEMES}。" + +#: src/view/com/modals/ChangeHandle.tsx:384 +msgid "DNS Panel" +msgstr "DNS 面板" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "唔好將呢個靜音字套用到你追蹤嘅用戶" + +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "唔包含成人內容。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "唔包含敏感或者令人不安嘅內容。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "唔包括裸體。" + +#: src/screens/Signup/StepHandle.tsx:159 +msgid "Doesn't begin or end with a hyphen" +msgstr "唔係用連字符開頭或者結尾" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "Domain Value" +msgstr "網域設定值" + +#: src/view/com/modals/ChangeHandle.tsx:475 +msgid "Domain verified!" +msgstr "網域已經驗證!" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/forms/DateField/index.tsx:77 +#: src/components/forms/DateField/index.tsx:83 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 +#: src/view/com/auth/server-input/index.tsx:170 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:243 +#: src/view/com/modals/CropImage.web.tsx:112 +#: src/view/com/modals/InviteCodes.tsx:81 +#: src/view/com/modals/InviteCodes.tsx:124 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 +msgid "Done" +msgstr "搞掂" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 +msgctxt "action" +msgid "Done" +msgstr "搞掂" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 +msgid "Done{extraText}" +msgstr "搞掂 {extraText}" + +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "撳兩下就可以閂呢個對話框" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "下載 Bluesky" + +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 +msgid "Download CAR file" +msgstr "下載 CAR 檔案" + +#: src/view/com/composer/text-input/TextInput.web.tsx:300 +msgid "Drop to add images" +msgstr "放低嚟加圖片" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "期間:" + +#: src/view/com/modals/ChangeHandle.tsx:245 +msgid "e.g. alice" +msgstr "例如:alice" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "例如:愛麗絲" + +#: src/view/com/modals/ChangeHandle.tsx:367 +msgid "e.g. alice.com" +msgstr "例如:alice.com" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "例如:藝術裸體。" + +#: src/view/com/modals/CreateOrEditList.tsx:263 +msgid "e.g. Great Posters" +msgstr "例如:好正嘅海報" + +#: src/view/com/modals/CreateOrEditList.tsx:264 +msgid "e.g. Spammers" +msgstr "例如:垃圾郵件發送者" + +#: src/view/com/modals/CreateOrEditList.tsx:292 +msgid "e.g. The posters who never miss." +msgstr "例如:永遠唔會錯過嘅海報。" + +#: src/view/com/modals/CreateOrEditList.tsx:293 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "例如:重複用廣告回覆嘅用戶。" + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "每個邀請碼只可以用一次。你會定期收到更多邀請碼。" + +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 +msgid "Edit" +msgstr "編輯" + +#: src/view/com/lists/ListMembers.tsx:146 +msgctxt "action" +msgid "Edit" +msgstr "編輯" + +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 +msgid "Edit avatar" +msgstr "編輯大頭相" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "編輯動態" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 +msgid "Edit image" +msgstr "編輯圖片" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +msgid "Edit interaction settings" +msgstr "編輯互動設定" + +#: src/view/screens/ProfileList.tsx:518 +msgid "Edit list details" +msgstr "編輯清單詳情" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "Edit Moderation List" +msgstr "編輯審核清單" + +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 +msgid "Edit My Feeds" +msgstr "編輯我嘅動態" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "編輯人物" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +msgid "Edit post interaction settings" +msgstr "編輯帖文互動設定" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 +msgid "Edit profile" +msgstr "編輯個人檔案" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 +msgid "Edit Profile" +msgstr "編輯個人檔案" + +#: src/screens/StarterPack/StarterPackScreen.tsx:565 +msgid "Edit starter pack" +msgstr "編輯新手包" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "Edit User List" +msgstr "編輯用戶清單" + +#: src/components/WhoCanReply.tsx:87 +msgid "Edit who can reply" +msgstr "編輯邊個可以回覆" + +#: src/Navigation.tsx:372 +msgid "Edit your starter pack" +msgstr "編輯你嘅新手包" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 +msgid "Education" +msgstr "教育" + +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 +msgid "Email" +msgstr "電郵" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 +msgid "Email 2FA disabled" +msgstr "停用咗電郵雙重驗證" + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "電郵地址" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "重新發送電郵" + +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 +msgid "Email updated" +msgstr "電郵更新咗" + +#: src/view/com/modals/ChangeEmail.tsx:106 +msgid "Email Updated" +msgstr "電郵更新咗" + +#: src/view/com/modals/VerifyEmail.tsx:85 +msgid "Email verified" +msgstr "電郵已經驗證" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "電郵已經驗證" + +#: src/view/screens/Settings/index.tsx:320 +msgid "Email:" +msgstr "電郵:" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed HTML code" +msgstr "嵌入 HTML 代碼" + +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +msgid "Embed post" +msgstr "嵌入帖文" + +#: src/components/dialogs/Embed.tsx:101 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "要將呢篇帖文嵌入你嘅網站,只需要複製以下呢節片段,然後將佢貼入你網站嘅 HTML代碼裏面。" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "只啟用 {0}" + +#: src/screens/Moderation/index.tsx:343 +msgid "Enable adult content" +msgstr "啟用成人內容" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "啟用外部媒體" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 +msgid "Enable media players for" +msgstr "啟用媒體播放器" + +#: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 +msgid "Enable priority notifications" +msgstr "啟用優先通知" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 +msgid "Enable subtitles" +msgstr "啟用字幕" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "只啟用呢個來源" + +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 +msgid "Enabled" +msgstr "啟用咗" + +#: src/screens/Profile/Sections/Feed.tsx:114 +msgid "End of feed" +msgstr "已經到底啦" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "確保你為每個字幕檔案揀咗一種語言。" + +#: src/view/com/modals/AddAppPasswords.tsx:161 +msgid "Enter a name for this App Password" +msgstr "輸入呢個 App 密碼嘅名稱" + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Enter a password" +msgstr "輸入個密碼" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "輸入字詞或者標籤" + +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "輸入確認碼" + +#: src/view/com/modals/VerifyEmail.tsx:113 +msgid "Enter Confirmation Code" +msgstr "輸入確認碼" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Enter the code you received to change your password." +msgstr "輸入你收到嘅驗證碼嚟更改你嘅密碼。" + +#: src/view/com/modals/ChangeHandle.tsx:357 +msgid "Enter the domain you want to use" +msgstr "輸入你想用嘅網域" + +#: src/screens/Login/ForgotPasswordForm.tsx:113 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "輸入你用嚟建立帳戶嘅電郵地址。我哋會傳送「驗證碼」畀你,等你可以設定新密碼。" + +#: src/components/dialogs/BirthDateSettings.tsx:107 +msgid "Enter your birth date" +msgstr "輸入你嘅出生日期" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 +msgid "Enter your email address" +msgstr "輸入你嘅電郵地址" + +#: src/view/com/modals/ChangeEmail.tsx:42 +msgid "Enter your new email above" +msgstr "喺上面輸入你嘅新電郵" + +#: src/view/com/modals/ChangeEmail.tsx:112 +msgid "Enter your new email address below." +msgstr "喺下面輸入你嘅新電郵地址。" + +#: src/screens/Login/index.tsx:98 +msgid "Enter your username and password" +msgstr "輸入你嘅用戶名同密碼" + +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "錯誤" + +#: src/view/screens/Settings/ExportCarDialog.tsx:46 +msgid "Error occurred while saving file" +msgstr "儲存檔案嗰陣發生錯誤" + +#: src/screens/Signup/StepCaptcha/index.tsx:56 +msgid "Error receiving captcha response." +msgstr "接收 CAPTCHA 回應嗰陣發生錯誤。" + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 +msgid "Error:" +msgstr "錯誤:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 +msgid "Everybody" +msgstr "任何人" + +#: src/components/WhoCanReply.tsx:67 +msgid "Everybody can reply" +msgstr "所有人都可以回覆" + +#: src/components/WhoCanReply.tsx:213 +msgid "Everybody can reply to this post." +msgstr "所有人都可以回覆呢篇帖文。" + +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 +msgid "Everyone" +msgstr "任何人" + +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "過度提及或回覆" + +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "過多或者不受歡迎嘅訊息" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "排除你追蹤嘅用戶" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "排除你追蹤嘅用戶" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 +msgid "Exit fullscreen" +msgstr "退出全螢幕" + +#: src/view/com/modals/DeleteAccount.tsx:293 +msgid "Exits account deletion process" +msgstr "退出帳戶刪除過程" + +#: src/view/com/modals/ChangeHandle.tsx:138 +msgid "Exits handle change process" +msgstr "退出帳戶頭銜變更過程" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "退出圖片裁剪過程" + +#: src/view/com/lightbox/Lightbox.web.tsx:130 +msgid "Exits image view" +msgstr "退出圖片檢視" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +msgid "Exits inputting search query" +msgstr "退出輸入搜尋查詢" + +#: src/view/com/lightbox/Lightbox.web.tsx:183 +msgid "Expand alt text" +msgstr "展開 ALT 文字" + +#: src/view/com/notifications/FeedItem.tsx:266 +msgid "Expand list of users" +msgstr "展開用戶清單" + +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 +msgid "Expand or collapse the full post you are replying to" +msgstr "展開或者收合你回覆緊嘅全部帖文" + +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "URI 應解析為記錄" + +#: src/view/screens/NotificationsSettings.tsx:78 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "實驗性選項:啟用呢個設定之後,你只會收到你追蹤嘅使用者嘅回覆同引用通知。我哋會隨住時間嘅推移繼續喺呢度加入更多控制項。" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "過咗期" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "過期時間 {0}" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +msgid "Explicit or potentially disturbing media." +msgstr "露骨或者可能令人不安嘅媒體。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "露骨嘅性圖像。" + +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "匯出我嘅數據" + +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "匯出我嘅數據" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "外部媒體" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "外部媒體可能會畀網站收集有關你同你部裝置嘅資料。喺你撳「播放」掣之前,系統唔會傳送或者要求任何資料。" + +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 +msgid "External Media Preferences" +msgstr "外部媒體設定" + +#: src/view/screens/Settings/index.tsx:637 +msgid "External media settings" +msgstr "外部媒體設定" + +#: src/view/com/modals/AddAppPasswords.tsx:119 +#: src/view/com/modals/AddAppPasswords.tsx:123 +msgid "Failed to create app password." +msgstr "建立唔到 App 密碼。" + +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 +msgid "Failed to create starter pack" +msgstr "建立唔到新手包" + +#: src/view/com/modals/CreateOrEditList.tsx:186 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "建立唔到個清單。檢查你嘅互聯網連線,然後試多一次。" + +#: src/components/dms/MessageMenu.tsx:73 +msgid "Failed to delete message" +msgstr "刪除唔到訊息" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Failed to delete post, please try again" +msgstr "刪除唔到帖文,請試多一次" + +#: src/screens/StarterPack/StarterPackScreen.tsx:697 +msgid "Failed to delete starter pack" +msgstr "刪除唔到新手包" + +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 +msgid "Failed to load feeds preferences" +msgstr "載入唔到動態設定" + +#: src/components/dialogs/GifSelect.tsx:224 +msgid "Failed to load GIFs" +msgstr "載入唔到 GIF" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "載入唔到過去嘅訊息" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 +msgid "Failed to load suggested feeds" +msgstr "載入唔到建議嘅動態" + +#: src/view/screens/Search/Explore.tsx:378 +msgid "Failed to load suggested follows" +msgstr "載入唔到建議追蹤" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "固定唔到帖文" + +#: src/view/com/lightbox/Lightbox.tsx:97 +msgid "Failed to save image: {0}" +msgstr "儲存唔到圖片:{0}" + +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "儲存唔到通知設定,請試多一次" + +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "儲存唔到帖文互動設定。你嘅帖文已經建立咗,但其他用戶可能仍然可以同佢互動。" + +#: src/components/dms/MessageItem.tsx:233 +msgid "Failed to send" +msgstr "傳送唔到" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "未能提交上訴,請試多一次。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +msgid "Failed to toggle thread mute, please try again" +msgstr "切換唔到討論串靜音,請試多一次" + +#: src/components/FeedCard.tsx:276 +msgid "Failed to update feeds" +msgstr "更新唔到動態" + +#: src/screens/Messages/Settings.tsx:36 +msgid "Failed to update settings" +msgstr "更新唔到設定" + +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 +msgid "Failed to upload video" +msgstr "上載唔到影片" + +#: src/Navigation.tsx:225 +msgid "Feed" +msgstr "動態" + +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:250 +msgid "Feed by {0}" +msgstr "由 {0} 建立嘅動態" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "切換動態" + +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:348 +msgid "Feedback" +msgstr "反饋" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "反饋已經傳送咗!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 +msgid "Feeds" +msgstr "動態" + +#: src/view/screens/SavedFeeds.tsx:205 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "動態係用戶用少少編碼專業知識建立嘅自訂算法。<0/> 想知多啲。" + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 +msgid "Feeds updated!" +msgstr "動態更新咗!" + +#: src/view/com/modals/ChangeHandle.tsx:468 +msgid "File Contents" +msgstr "檔案內容" + +#: src/view/screens/Settings/ExportCarDialog.tsx:42 +msgid "File saved successfully!" +msgstr "檔案儲存成功!" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "喺動態裏面篩選" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Finalizing" +msgstr "正在完成" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "搵帳戶嚟跟蹤" + +#: src/view/screens/Search/Search.tsx:612 +msgid "Find posts and users on Bluesky" +msgstr "喺 Bluesky 上面搵帖文同用戶" + +#: src/view/screens/PreferencesFollowingFeed.tsx:52 +msgid "Fine-tune the content you see on your Following feed." +msgstr "微調你喺「Following」裏面睇到嘅內容。" + +#: src/view/screens/PreferencesThreads.tsx:55 +msgid "Fine-tune the discussion threads." +msgstr "微調討論串。" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Finish" +msgstr "完成" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "健康" + +#: src/screens/Onboarding/StepFinished.tsx:267 +msgid "Flexible" +msgstr "靈活" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 +msgid "Follow" +msgstr "追蹤" + +#: src/view/com/profile/FollowButton.tsx:70 +msgctxt "action" +msgid "Follow" +msgstr "追蹤" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 +msgid "Follow {0}" +msgstr "追蹤 {0}" + +#: src/view/com/posts/AviFollowButton.tsx:68 +msgid "Follow {name}" +msgstr "追蹤 {name}" + +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "追蹤 7 個帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 +msgid "Follow Account" +msgstr "追蹤帳戶" + +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 +msgid "Follow all" +msgstr "追蹤所有" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "追蹤返嚟" + +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" +msgid "Follow Back" +msgstr "追蹤返嚟" + +#: src/view/screens/Search/Explore.tsx:334 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "追蹤更多帳戶,同你嘅興趣聯繫,同埋建立你嘅網絡。" + +#: src/components/KnownFollowers.tsx:231 +msgid "Followed by <0>{0}" +msgstr "俾 <0>{0} 追蹤" + +#: src/components/KnownFollowers.tsx:217 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "俾 <0>{0} 及{1, plural, one {另外 # 人追蹤} other {另外 # 人追蹤}}" + +#: src/components/KnownFollowers.tsx:204 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "俾 <0>{0} 及 <1>{1} 追蹤" + +#: src/components/KnownFollowers.tsx:186 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "俾 <0>{0}, <1>{1} 及{2, plural, one {另外 # 人追蹤} other {另外 # 人追蹤}}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 +msgid "Followed users" +msgstr "追蹤咗嘅用戶" + +#: src/view/com/notifications/FeedItem.tsx:207 +msgid "followed you" +msgstr "追蹤你" + +#: src/view/com/notifications/FeedItem.tsx:205 +msgid "followed you back" +msgstr "追蹤你返嚟" + +#: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 +msgid "Followers" +msgstr "追隨者" + +#: src/Navigation.tsx:186 +msgid "Followers of @{0} that you know" +msgstr "你識嘅 @{0} 追蹤" + +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 +msgid "Followers you know" +msgstr "你識嘅追隨者" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 +msgid "Following" +msgstr "追蹤中" + +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 +msgid "Following {0}" +msgstr "追蹤 {0}" + +#: src/view/com/posts/AviFollowButton.tsx:50 +msgid "Following {name}" +msgstr "追蹤 {name}" + +#: src/view/screens/Settings/index.tsx:540 +msgid "Following feed preferences" +msgstr "「Following」動態設定" + +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 +msgid "Following Feed Preferences" +msgstr "「Following」動態設定" + +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "追蹤你" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "追蹤你" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "字體" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "字體大小" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 +msgid "Food" +msgstr "嘢食" + +#: src/view/com/modals/DeleteAccount.tsx:129 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "為咗安全起見,我哋需要將確認碼傳送去你嘅電郵地址。" + +#: src/view/com/modals/AddAppPasswords.tsx:233 +msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." +msgstr "為咗安全起見,你唔可以再睇返呢個。如果你唔見咗呢個密碼,你需要生成一個新嘅密碼。" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "為咗獲得最佳體驗,我哋建議使用主題字體。" + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "永遠" + +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 +msgid "Forgot Password" +msgstr "唔記得咗密碼" + +#: src/screens/Login/LoginForm.tsx:230 +msgid "Forgot password?" +msgstr "唔記得咗密碼?" + +#: src/screens/Login/LoginForm.tsx:241 +msgid "Forgot?" +msgstr "唔記得咗?" + +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "經常發佈不受歡迎嘅內容" + +#: src/screens/Hashtag.tsx:117 +msgid "From @{sanitizedAuthor}" +msgstr "來自 @{sanitizedAuthor}" + +#: src/view/com/posts/FeedItem.tsx:273 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "來自 <0/>" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 +msgid "Fullscreen" +msgstr "全螢幕" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "相簿" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +msgid "Generate a starter pack" +msgstr "生成一個新手包" + +#: src/view/shell/Drawer.tsx:352 +msgid "Get help" +msgstr "搵人幫手" + +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 +msgid "Get Started" +msgstr "開始啦" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "開始啦" + +#: src/components/MediaPreview.tsx:122 +msgid "GIF" +msgstr "GIF" + +#: src/screens/Onboarding/StepProfile/index.tsx:234 +msgid "Give your profile a face" +msgstr "畀你個人檔案一個面孔" + +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "明顯違反法律或服務條款" + +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 +msgid "Go back" +msgstr "返去" + +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 +msgid "Go Back" +msgstr "返去" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "返去上一步" + +#: src/screens/StarterPack/Wizard/index.tsx:308 +msgid "Go back to the previous step" +msgstr "返去上一步" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "去首頁" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "去首頁" + +#: src/screens/Messages/components/ChatListItem.tsx:264 +msgid "Go to conversation with {0}" +msgstr "同 {0} 去對話" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Go to next" +msgstr "去下一個" + +#: src/components/dms/ConvoMenu.tsx:167 +msgid "Go to profile" +msgstr "去個人檔案" + +#: src/components/dms/ConvoMenu.tsx:164 +msgid "Go to user's profile" +msgstr "去用戶個人檔案" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 +msgid "Graphic Media" +msgstr "敏感媒體" + +#: src/state/shell/progress-guide.tsx:161 +msgid "Half way there!" +msgstr "去到一半喇!" + +#: src/view/com/modals/ChangeHandle.tsx:253 +msgid "Handle" +msgstr "帳戶頭銜" + +#: src/view/screens/AccessibilitySettings.tsx:118 +msgid "Haptics" +msgstr "觸覺" + +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "騷擾、惡搞或者其他唔容忍嘅行為" + +#: src/Navigation.tsx:332 +msgid "Hashtag" +msgstr "標籤" + +#: src/components/RichText.tsx:225 +msgid "Hashtag: #{tag}" +msgstr "標籤:#{tag}" + +#: src/screens/Signup/index.tsx:173 +msgid "Having trouble?" +msgstr "有冇麻煩?" + +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:361 +msgid "Help" +msgstr "幫手" + +#: src/screens/Onboarding/StepProfile/index.tsx:237 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "上載圖片或者整張大頭相,等大家知道你唔係機械人。" + +#: src/view/com/modals/AddAppPasswords.tsx:204 +msgid "Here is your app password." +msgstr "呢個係你嘅 App 密碼。" + +#: src/components/ListCard.tsx:130 +msgid "Hidden list" +msgstr "隱藏清單" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:134 +#: src/components/moderation/PostHider.tsx:122 +#: src/lib/moderation/useLabelBehaviorDescription.ts:15 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 +msgid "Hide" +msgstr "隱藏" + +#: src/view/com/notifications/FeedItem.tsx:477 +msgctxt "action" +msgid "Hide" +msgstr "隱藏" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +msgid "Hide post for me" +msgstr "幫我隱藏帖文" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +msgid "Hide reply for everyone" +msgstr "為所有人隱藏回覆" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +msgid "Hide reply for me" +msgstr "幫我隱藏回覆" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/components/moderation/PostHider.tsx:79 +msgid "Hide the content" +msgstr "隱藏內容" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +msgid "Hide this post?" +msgstr "隱藏呢篇帖文?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +msgid "Hide this reply?" +msgstr "隱藏呢個回覆?" + +#: src/view/com/notifications/FeedItem.tsx:468 +msgid "Hide user list" +msgstr "隱藏用戶清單" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "唔好意思,連線動態伺服器嗰陣發生咗某種問題,請話畀動態擁有者知呢個問題。" + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "唔好意思,動態伺服器似乎配置錯誤,請話畀動態擁有者知呢個問題。" + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "唔好意思,動態伺服器似乎離線,請話畀動態擁有者知呢個問題。" + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "唔好意思,動態伺服器畀咗個錯誤嘅回應,請話畀動態擁有者知呢個問題。" + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "唔好意思,我哋搵唔到呢個動態。可能已經刪除咗。" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "唔好意思,我哋似乎喺載入呢啲數據嗰陣遇到問題。詳情請睇下面。如果呢個問題持續,請聯絡我哋。" + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "唔好意思,我哋載入唔到嗰個審核服務。" + +#: src/view/com/composer/state/video.ts:427 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "忍住!我哋逐漸畀緊影片權限,而你仲排緊隊。快啲睇返啦!" + +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 +msgid "Home" +msgstr "首頁" + +#: src/view/com/modals/ChangeHandle.tsx:407 +msgid "Host:" +msgstr "Host:" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 +msgid "Hosting provider" +msgstr "Hosting 供應商" + +#: src/view/com/modals/InAppBrowserConsent.tsx:41 +msgid "How should we open this link?" +msgstr "我哋應該點樣打開呢個連結?" + +#: src/view/com/modals/VerifyEmail.tsx:222 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 +msgid "I have a code" +msgstr "我有驗證碼" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "我有確認碼" + +#: src/view/com/modals/VerifyEmail.tsx:224 +msgid "I have a confirmation code" +msgstr "我有確認碼" + +#: src/view/com/modals/ChangeHandle.tsx:271 +msgid "I have my own domain" +msgstr "我有我自己嘅網域" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 +msgid "I understand" +msgstr "我知悉" + +#: src/view/com/lightbox/Lightbox.web.tsx:185 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "如果替代文字好長,就會切換替代文字展開狀態" + +#: src/screens/Signup/StepInfo/Policies.tsx:110 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "如果你嘅年齡根據所在國家/地區嘅法律仲未夠秤嘅話,咁你父母或者法定監護人就必須代表你閱讀呢啲條款。" + +#: src/view/screens/ProfileList.tsx:723 +msgid "If you delete this list, you won't be able to recover it." +msgstr "如果你移除咗呢個清單,之後就無辦法恢復。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +msgid "If you remove this post, you won't be able to recover it." +msgstr "如果你移除咗呢篇帖文,之後就無辦法恢復。" + +#: src/view/com/modals/ChangePassword.tsx:149 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "如果你想更改你嘅密碼,我哋會傳送一個驗證碼畀你嚟驗證呢個係咪你嘅帳戶。" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "如果你想更改你嘅帳戶頭銜或者電郵,喺你停用之前先咁做。" + +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "非法" + +#: src/view/com/util/images/Gallery.tsx:57 +msgid "Image" +msgstr "圖片" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Image saved to your camera roll!" +msgstr "圖片儲存咗去你嘅相簿!" + +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "冒充或者虛假聲稱身份或是隸屬關係" + +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "冒充、虛假資訊或者虛假聲稱" + +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "唔恰當嘅訊息或者明確嘅連結" + +#: src/screens/Login/SetNewPasswordForm.tsx:121 +msgid "Input code sent to your email for password reset" +msgstr "輸入傳送去你電郵嘅驗證碼嚟重設密碼" + +#: src/view/com/modals/DeleteAccount.tsx:246 +msgid "Input confirmation code for account deletion" +msgstr "輸入刪除帳戶嘅確認碼" + +#: src/view/com/modals/AddAppPasswords.tsx:175 +msgid "Input name for app password" +msgstr "輸入 App 密碼嘅名稱" + +#: src/screens/Login/SetNewPasswordForm.tsx:145 +msgid "Input new password" +msgstr "輸入新密碼" + +#: src/view/com/modals/DeleteAccount.tsx:265 +msgid "Input password for account deletion" +msgstr "輸入密碼嚟刪除帳戶" + +#: src/screens/Login/LoginForm.tsx:270 +msgid "Input the code which has been emailed to you" +msgstr "輸入已經電郵畀你嘅驗證碼" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Input the username or email address you used at signup" +msgstr "輸入你喺申請嗰陣用嘅用戶名或者電郵地址" + +#: src/screens/Login/LoginForm.tsx:225 +msgid "Input your password" +msgstr "輸入你嘅密碼" + +#: src/view/com/modals/ChangeHandle.tsx:376 +msgid "Input your preferred hosting provider" +msgstr "輸入你首選嘅 hosting 供應商" + +#: src/screens/Signup/StepHandle.tsx:114 +msgid "Input your user handle" +msgstr "輸入你嘅帳戶頭銜" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 +msgid "Interaction limited" +msgstr "互動受到限制" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "介紹緊新嘅字體設定" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "雙重驗證確認碼無效。" + +#: src/view/com/post-thread/PostThreadItem.tsx:264 +msgid "Invalid or unsupported post record" +msgstr "無效或者唔受支援嘅帖文記錄" + +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 +msgid "Invalid username or password" +msgstr "無效嘅用戶名或者密碼" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "無效嘅驗證碼" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "邀請朋友" + +#: src/screens/Signup/StepInfo/index.tsx:151 +msgid "Invite code" +msgstr "邀請碼" + +#: src/screens/Signup/state.ts:258 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "唔接受邀請碼。檢查你輸入得啱唔啱,然後試多一次。" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "邀請碼:{0} 可用" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "邀請碼:1 可用" + +#: src/components/StarterPack/ShareDialog.tsx:97 +msgid "Invite people to this starter pack!" +msgstr "邀請人嚟呢個新手包!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:35 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "邀請你嘅朋友追蹤你最鍾意嘅動態同人物" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:32 +msgid "Invites, but personal" +msgstr "邀請朋友加入,同時保持個人化" + +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "你可能輸入錯咗你嘅電郵地址。你確定啱唔啱?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "係正確嘅" + +#: src/screens/StarterPack/Wizard/index.tsx:461 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "而家只有你!喺上面搜尋,將更多人加入你嘅新手包。" + +#: src/view/com/composer/Composer.tsx:1284 +msgid "Job ID: {0}" +msgstr "Job ID: {0}" + +#: src/view/com/auth/SplashScreen.web.tsx:177 +msgid "Jobs" +msgstr "工作" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 +msgid "Join Bluesky" +msgstr "加入 Bluesky" + +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "加入對話" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 +msgid "Journalism" +msgstr "新聞學" + +#: src/components/moderation/ContentHider.tsx:209 +msgid "Labeled by {0}." +msgstr "由 {0} 標記。" + +#: src/components/moderation/ContentHider.tsx:207 +msgid "Labeled by the author." +msgstr "由作者標記。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 +msgid "Labels" +msgstr "標籤" + +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "加咗標籤" + +#: src/screens/Profile/Sections/Labels.tsx:163 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "標籤係用戶同內容嘅註解。佢哋可以用嚟隱藏、警告同分類網絡。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:71 +msgid "Labels on your account" +msgstr "你個帳戶上面嘅標籤" + +#: src/components/moderation/LabelsOnMeDialog.tsx:73 +msgid "Labels on your content" +msgstr "你嘅內容上面嘅標籤" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:105 +msgid "Language selection" +msgstr "語言揀" + +#: src/view/screens/Settings/index.tsx:497 +msgid "Language settings" +msgstr "語言設定" + +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 +msgid "Language Settings" +msgstr "語言設定" + +#: src/view/screens/Settings/index.tsx:506 +msgid "Languages" +msgstr "語言" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "大啲" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 +msgid "Latest" +msgstr "最近" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "進一步瞭解" + +#: src/view/com/auth/SplashScreen.web.tsx:165 +msgid "Learn more about Bluesky" +msgstr "進一步瞭解關於 Bluesky 嘅資訊" + +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "進一步瞭解關於自行托管 PDS 嘅資訊。" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 +msgid "Learn more about the moderation applied to this content." +msgstr "進一步瞭解呢個內容所應用嘅審核。" + +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "進一步了解呢個警告" + +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 +msgid "Learn more about what is public on Bluesky." +msgstr "進一步了解 Bluesky 上面公開嘅內容。" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 +msgid "Learn more." +msgstr "進一步瞭解。" + +#: src/components/dms/LeaveConvoPrompt.tsx:50 +msgid "Leave" +msgstr "離開" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 +msgid "Leave chat" +msgstr "離開聊天室" + +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Leave conversation" +msgstr "離開對話" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 +msgid "Leave them all unchecked to see any language." +msgstr "留低佢哋全部唔勾選,就可以睇到任何語言。" + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Leaving Bluesky" +msgstr "離開 Bluesky" + +#: src/screens/SignupQueued.tsx:134 +msgid "left to go." +msgstr "個人排喺你前面。" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 +msgid "Let me choose" +msgstr "我自己來" + +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 +msgid "Let's get your password reset!" +msgstr "我哋重設你嘅密碼啦!" + +#: src/screens/Onboarding/StepFinished.tsx:287 +msgid "Let's go!" +msgstr "行啦我哋!" + +#: src/screens/Settings/AppearanceSettings.tsx:105 +msgid "Light" +msgstr "淺色" + +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "讚 10 個帖文" + +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 +msgid "Like 10 posts to train the Discover feed" +msgstr "你需要讚 10 個帖文嚟訓練「Discover」動態" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Like this feed" +msgstr "讚呢個動態" + +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 +msgid "Liked by" +msgstr "讚咗" + +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "讚咗" + +#: src/view/com/notifications/FeedItem.tsx:211 +msgid "liked your custom feed" +msgstr "讚你嘅自訂動態" + +#: src/view/com/notifications/FeedItem.tsx:178 +msgid "liked your post" +msgstr "讚你個帖文" + +#: src/view/screens/Profile.tsx:231 +msgid "Likes" +msgstr "讚好" + +#: src/view/com/post-thread/PostThreadItem.tsx:204 +msgid "Likes on this post" +msgstr "讚好呢篇帖文" + +#: src/Navigation.tsx:192 +msgid "List" +msgstr "清單" + +#: src/view/com/modals/CreateOrEditList.tsx:241 +msgid "List Avatar" +msgstr "清單大頭相" + +#: src/view/screens/ProfileList.tsx:422 +msgid "List blocked" +msgstr "清單俾封鎖" + +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:252 +msgid "List by {0}" +msgstr "{0} 建立嘅清單" + +#: src/view/screens/ProfileList.tsx:459 +msgid "List deleted" +msgstr "清單刪除咗" + +#: src/screens/List/ListHiddenScreen.tsx:126 +msgid "List has been hidden" +msgstr "清單已經隱藏咗" + +#: src/view/screens/ProfileList.tsx:170 +msgid "List Hidden" +msgstr "清單隱藏" + +#: src/view/screens/ProfileList.tsx:396 +msgid "List muted" +msgstr "清單靜音咗" + +#: src/view/com/modals/CreateOrEditList.tsx:255 +msgid "List Name" +msgstr "清單名稱" + +#: src/view/screens/ProfileList.tsx:435 +msgid "List unblocked" +msgstr "清單已經解除封鎖" + +#: src/view/screens/ProfileList.tsx:409 +msgid "List unmuted" +msgstr "清單已經取消靜音" + +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 +msgid "Lists" +msgstr "清單" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "封鎖緊呢個用戶清單:" + +#: src/view/screens/Search/Explore.tsx:131 +msgid "Load more" +msgstr "載入更多" + +#: src/view/screens/Search/Explore.tsx:219 +msgid "Load more suggested feeds" +msgstr "載入更多建議動態" + +#: src/view/screens/Search/Explore.tsx:217 +msgid "Load more suggested follows" +msgstr "載入更多建議追蹤" + +#: src/view/screens/Notifications.tsx:215 +msgid "Load new notifications" +msgstr "載入新通知" + +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 +msgid "Load new posts" +msgstr "載入新帖文" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +msgid "Loading..." +msgstr "載入緊..." + +#: src/Navigation.tsx:255 +msgid "Log" +msgstr "日誌" + +#: src/screens/Deactivated.tsx:214 +#: src/screens/Deactivated.tsx:220 +msgid "Log in or sign up" +msgstr "登入或者建立帳戶" + +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 +msgid "Log out" +msgstr "登出" + +#: src/screens/Moderation/index.tsx:480 +msgid "Logged-out visibility" +msgstr "登出咗嘅可見性" + +#: src/components/AccountList.tsx:65 +msgid "Login to account that is not listed" +msgstr "登入冇列出嘅帳戶" + +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "由 <0/> 畫嘅 LOGO" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "由 <0>@sawaratsuki.bsky.social 畫嘅 LOGO" + +#: src/components/RichText.tsx:226 +msgid "Long press to open tag menu for #{tag}" +msgstr "長按打開 #{tag} 嘅標籤選單" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "似係 XXXXX-XXXXXX" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "你好似冇儲存任何動態!用我哋嘅建議或者喺下面瀏覽更多。" + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "你好似取消咗所有動態嘅固定。但唔使擔心,你可以喺下面加啲 😄" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "你好似冇「Following」動態。<0>撳呢度嚟加一個。" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 +msgid "Make one for me" +msgstr "幫我整一個" + +#: src/view/com/modals/LinkWarning.tsx:79 +msgid "Make sure this is where you intend to go!" +msgstr "確保呢度係你打算去嘅地方!" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "管理你嘅靜音字詞同標籤" + +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 +msgid "Mark as read" +msgstr "標記為已讀" + +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 +msgid "Media" +msgstr "媒體" + +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "可能會令某啲受眾感到不安或者造成唔適嘅媒體內容。" + +#: src/components/WhoCanReply.tsx:254 +msgid "mentioned users" +msgstr "提到嘅用戶" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +msgid "Mentioned users" +msgstr "提到嘅用戶" + +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 +msgid "Menu" +msgstr "菜單" + +#: src/components/dms/MessageProfileButton.tsx:62 +msgid "Message {0}" +msgstr "訊息 {0}" + +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 +msgid "Message deleted" +msgstr "刪除咗訊息" + +#: src/view/com/posts/FeedErrorMessage.tsx:201 +msgid "Message from server: {0}" +msgstr "呢個伺服器嘅訊息:{0}" + +#: src/screens/Messages/components/MessageInput.tsx:140 +msgid "Message input field" +msgstr "訊息輸入欄位" + +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 +msgid "Message is too long" +msgstr "訊息太長" + +#: src/screens/Messages/ChatList.tsx:318 +msgid "Message settings" +msgstr "訊息設定" + +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 +msgid "Messages" +msgstr "聊天室" + +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "誤導性帳戶" + +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "誤導性帖文" + +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 +msgid "Moderation" +msgstr "審核" + +#: src/components/moderation/ModerationDetailsDialog.tsx:133 +msgid "Moderation details" +msgstr "審核詳情" + +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "由 {0} 建立嘅審核清單" + +#: src/view/screens/ProfileList.tsx:902 +msgid "Moderation list by <0/>" +msgstr "由 <0/> 建立嘅審核清單" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 +msgid "Moderation list by you" +msgstr "由你建立嘅審核清單" + +#: src/view/com/modals/CreateOrEditList.tsx:177 +msgid "Moderation list created" +msgstr "建立咗審核清單" + +#: src/view/com/modals/CreateOrEditList.tsx:163 +msgid "Moderation list updated" +msgstr "更新咗審核清單" + +#: src/screens/Moderation/index.tsx:250 +msgid "Moderation lists" +msgstr "審核清單" + +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "審核清單" + +#: src/components/moderation/LabelPreference.tsx:246 +msgid "moderation settings" +msgstr "審核設定" + +#: src/view/screens/Settings/index.tsx:522 +msgid "Moderation settings" +msgstr "審核設定" + +#: src/Navigation.tsx:245 +msgid "Moderation states" +msgstr "審核狀態" + +#: src/screens/Moderation/index.tsx:219 +msgid "Moderation tools" +msgstr "審核工具" + +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "審核服務提供者已經將呢個內容標記為普通警告。" + +#: src/view/com/post-thread/PostThreadItem.tsx:619 +msgid "More" +msgstr "更多" + +#: src/view/shell/desktop/Feeds.tsx:55 +msgid "More feeds" +msgstr "更多動態" + +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 +msgid "More options" +msgstr "更多揀" + +#: src/view/screens/PreferencesThreads.tsx:77 +msgid "Most-liked replies first" +msgstr "先顯示最多讚嘅回覆" + +#: src/screens/Onboarding/state.ts:92 +msgid "Movies" +msgstr "電影" + +#: src/screens/Onboarding/state.ts:93 +msgid "Music" +msgstr "音樂" + +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "靜音" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "靜音" + +#: src/components/TagMenu/index.web.tsx:116 +msgid "Mute {truncatedTag}" +msgstr "靜音 {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Mute Account" +msgstr "靜音帳戶" + +#: src/view/screens/ProfileList.tsx:631 +msgid "Mute accounts" +msgstr "靜音帳戶" + +#: src/components/TagMenu/index.tsx:205 +msgid "Mute all {displayTag} posts" +msgstr "將所有 {displayTag} 帖文靜音" + +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 +msgid "Mute conversation" +msgstr "靜音對話" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "靜音:" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Mute list" +msgstr "靜音清單" + +#: src/view/screens/ProfileList.tsx:732 +msgid "Mute these accounts?" +msgstr "將呢啲帳戶靜音?" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "將呢個字靜音24個鐘" + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "將呢個字靜音30日" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "將呢個字靜音7日" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "喺帖文同標籤裏面將呢個字靜音" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "只限標籤裏面將呢個字靜音" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "將呢個字靜音,直至你取消靜音為止" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +msgid "Mute thread" +msgstr "靜音討論串" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +msgid "Mute words & tags" +msgstr "靜音字詞同標籤" + +#: src/screens/Moderation/index.tsx:265 +msgid "Muted accounts" +msgstr "靜音咗帳戶" + +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 +msgid "Muted Accounts" +msgstr "靜音咗帳戶" + +#: src/view/screens/ModerationMutedAccounts.tsx:116 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "靜音帳戶嘅帖文會喺你嘅動態同通知裏面移除。靜音係完全私人嘅。" + +#: src/lib/moderation/useModerationCauseDescription.ts:90 +msgid "Muted by \"{0}\"" +msgstr "俾 \"{0}\" 靜音" + +#: src/screens/Moderation/index.tsx:235 +msgid "Muted words & tags" +msgstr "靜音字詞同標籤" + +#: src/view/screens/ProfileList.tsx:734 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "靜音係私人嘅。靜音帳戶可以同你互動,但係你唔會睇到佢哋嘅帖文或者收到佢哋嘅通知。" + +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 +msgid "My Birthday" +msgstr "我嘅生日" + +#: src/view/screens/Feeds.tsx:732 +msgid "My Feeds" +msgstr "我嘅動態" + +#: src/view/shell/desktop/LeftNav.tsx:85 +msgid "My Profile" +msgstr "我嘅個人檔案" + +#: src/view/screens/Settings/index.tsx:583 +msgid "My saved feeds" +msgstr "我儲存咗嘅動態" + +#: src/view/screens/Settings/index.tsx:589 +msgid "My Saved Feeds" +msgstr "我儲存嘅動態" + +#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/CreateOrEditList.tsx:270 +msgid "Name" +msgstr "名稱" + +#: src/view/com/modals/CreateOrEditList.tsx:135 +msgid "Name is required" +msgstr "你需要個名" + +#: src/lib/moderation/useReportOptions.ts:59 +#: src/lib/moderation/useReportOptions.ts:98 +#: src/lib/moderation/useReportOptions.ts:106 +#: src/lib/moderation/useReportOptions.ts:114 +msgid "Name or Description Violates Community Standards" +msgstr "名稱或描述違反社群標準" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 +msgid "Nature" +msgstr "自然" + +#: src/components/StarterPack/StarterPackCard.tsx:124 +msgid "Navigate to {0}" +msgstr "導覽去 {0}" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Navigates to the next screen" +msgstr "導覽去下一個畫面" + +#: src/view/shell/Drawer.tsx:72 +msgid "Navigates to your profile" +msgstr "導覽去到你嘅個人檔案" + +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "需要改嗎?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:130 +msgid "Need to report a copyright violation?" +msgstr "需要上報侵犯版權?" + +#: src/screens/Onboarding/StepFinished.tsx:255 +msgid "Never lose access to your followers or data." +msgstr "永遠唔好失去對你嘅追隨者或者資料嘅存取權。" + +#: src/view/com/modals/ChangeHandle.tsx:508 +msgid "Nevermind, create a handle for me" +msgstr "唔使喇,幫我建立個帳戶頭銜" + +#: src/view/screens/Lists.tsx:84 +msgctxt "action" +msgid "New" +msgstr "新建" + +#: src/view/screens/ModerationModlists.tsx:80 +msgid "New" +msgstr "新建" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 +msgid "New chat" +msgstr "新聊天室" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "新字體設定 ✨" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "新訊息" + +#: src/view/com/modals/CreateOrEditList.tsx:232 +msgid "New Moderation List" +msgstr "新審核名單" + +#: src/view/com/modals/ChangePassword.tsx:213 +msgid "New password" +msgstr "新密碼" + +#: src/view/com/modals/ChangePassword.tsx:218 +msgid "New Password" +msgstr "新密碼" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgctxt "action" +msgid "New post" +msgstr "發文" + +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 +msgid "New post" +msgstr "發文" + +#: src/view/shell/desktop/LeftNav.tsx:311 +msgctxt "action" +msgid "New Post" +msgstr "發文" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "新用戶資訊對話框" + +#: src/view/com/modals/CreateOrEditList.tsx:227 +msgid "New User List" +msgstr "新用戶清單" + +#: src/view/screens/PreferencesThreads.tsx:74 +msgid "Newest replies first" +msgstr "先顯示最新嘅回覆" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 +msgid "News" +msgstr "新聞" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 +msgid "Next" +msgstr "下一個" + +#: src/view/com/lightbox/Lightbox.web.tsx:169 +msgid "Next image" +msgstr "下一張圖片" + +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "No" +msgstr "停用" + +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 +msgid "No description" +msgstr "無描述" + +#: src/view/com/modals/ChangeHandle.tsx:392 +msgid "No DNS Panel" +msgstr "無 DNS 面板" + +#: src/components/dialogs/GifSelect.tsx:230 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "搵唔到精選 GIF,Tenor 可能出現問題。" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 +msgid "No feeds found. Try searching for something else." +msgstr "搵唔到任何動態,試下搵其他嘢。" + +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "仲未有讚" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 +msgid "No longer following {0}" +msgstr "唔再追蹤 {0}" + +#: src/screens/Signup/StepHandle.tsx:169 +msgid "No longer than 253 characters" +msgstr "唔超過253個字元" + +#: src/screens/Messages/components/ChatListItem.tsx:116 +msgid "No messages yet" +msgstr "仲未有任何訊息" + +#: src/screens/Messages/ChatList.tsx:271 +msgid "No more conversations to show" +msgstr "唔使再顯示對話" + +#: src/view/com/notifications/Feed.tsx:121 +msgid "No notifications yet!" +msgstr "仲未有通知!" + +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 +msgid "No one" +msgstr "冇人" + +#: src/components/WhoCanReply.tsx:237 +msgid "No one but the author can quote this post." +msgstr "只有作者可以引用呢篇帖文。" + +#: src/screens/Profile/Sections/Feed.tsx:65 +msgid "No posts yet." +msgstr "仲未有帖文。" + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "仲未有引用" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "仲未有轉發" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 +msgid "No result" +msgstr "無結果" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 +msgid "No results" +msgstr "無結果" + +#: src/components/Lists.tsx:215 +msgid "No results found" +msgstr "搵唔到結果" + +#: src/view/screens/Feeds.tsx:513 +msgid "No results found for \"{query}\"" +msgstr "搵唔到「{query}」嘅結果。" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 +msgid "No results found for {query}" +msgstr "搵唔到 {query} 嘅結果" + +#: src/components/dialogs/GifSelect.tsx:228 +msgid "No search results found for \"{search}\"." +msgstr "搵唔到「{search}」嘅搜尋結果。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "呢個貼文唔包含任何媒體內容,所以唔可以加入標記。" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "唔係,多謝" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 +msgid "Nobody" +msgstr "冇人" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "仲未有人讚喎,不如你做第一個?" + +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "仲未有人引用喎,不如你做第一個?" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "仲未有人轉發喎,不如你做第一個?" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 +msgid "Nobody was found. Try searching for someone else." +msgstr "冇人搵到,試下搵其他人。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "非性裸體" + +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 +msgid "Not Found" +msgstr "搵唔到" + +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 +msgid "Not right now" +msgstr "而家唔係" + +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 +msgid "Note about sharing" +msgstr "關於分享嘅注意事項" + +#: src/screens/Moderation/index.tsx:578 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "註:Bluesky 係一個開放同公開嘅網絡。呢個設定只會限制你嘅內容喺 Bluesky App 同網站上面嘅可見度,而其他 App 可能唔會尊重呢個設定。其他 App 同網站仍然可能會向登出嘅使用者顯示你嘅內容。" + +#: src/screens/Messages/ChatList.tsx:213 +msgid "Nothing here" +msgstr "呢度冇嘢" + +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Notification filters" +msgstr "通知篩選器" + +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 +msgid "Notification settings" +msgstr "通知設定" + +#: src/view/screens/NotificationsSettings.tsx:42 +msgid "Notification Settings" +msgstr "通知設定" + +#: src/screens/Messages/Settings.tsx:117 +msgid "Notification sounds" +msgstr "通知聲" + +#: src/screens/Messages/Settings.tsx:114 +msgid "Notification Sounds" +msgstr "通知聲" + +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 +msgid "Notifications" +msgstr "通知" + +#: src/lib/hooks/useTimeAgo.ts:122 +msgid "now" +msgstr "而家" + +#: src/components/dms/MessageItem.tsx:197 +msgid "Now" +msgstr "而家" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Nudity" +msgstr "裸體" + +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "無標籤嘅裸體或者成人內容" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +msgid "Off" +msgstr "閂" + +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "哎吔!" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "哎吔!有啲嘢出錯咗。" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 +msgid "OK" +msgstr "好嘅" + +#: src/screens/Login/PasswordUpdatedForm.tsx:38 +msgid "Okay" +msgstr "好嘅" + +#: src/view/screens/PreferencesThreads.tsx:73 +msgid "Oldest replies first" +msgstr "先顯示最老嘅回覆" + +#: src/components/StarterPack/QrCode.tsx:75 +msgid "on<0><1/><2><3/>" +msgstr "喺<0><1/><2><3/>" + +#: src/view/screens/Settings/index.tsx:227 +msgid "Onboarding reset" +msgstr "重新開始引導流程" + +#: src/view/com/composer/Composer.tsx:739 +msgid "One or more images is missing alt text." +msgstr "一張或者多張圖片缺少 ALT 文字。" + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "只支援 .jpg 同 .png 檔案" + +#: src/components/WhoCanReply.tsx:217 +msgid "Only {0} can reply." +msgstr "只有 {0} 可以回覆。" + +#: src/screens/Signup/StepHandle.tsx:152 +msgid "Only contains letters, numbers, and hyphens" +msgstr "只包含字母、數字同連字符" + +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "只支援圖片檔案" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "只支援 WebVTT(.vtt)檔案" + +#: src/components/Lists.tsx:88 +msgid "Oops, something went wrong!" +msgstr "哎呀,有啲嘢出事喇!" + +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 +msgid "Oops!" +msgstr "哎呀!" + +#: src/screens/Onboarding/StepFinished.tsx:251 +msgid "Open" +msgstr "打開" + +#: src/view/com/posts/AviFollowButton.tsx:86 +msgid "Open {name} profile shortcut menu" +msgstr "打開 {name} 個人檔案快捷選單" + +#: src/screens/Onboarding/StepProfile/index.tsx:286 +msgid "Open avatar creator" +msgstr "打開大頭相創作工具" + +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 +msgid "Open conversation options" +msgstr "打開對話選項" + +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 +msgid "Open emoji picker" +msgstr "打開 emoji 挑選器" + +#: src/view/screens/ProfileFeed.tsx:301 +msgid "Open feed options menu" +msgstr "打開動態選項選單" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "打開指向 {niceUrl} 嘅連結" + +#: src/view/screens/Settings/index.tsx:703 +msgid "Open links with in-app browser" +msgstr "用 App 內瀏覽器打開連結" + +#: src/components/dms/ActionsWrapper.tsx:87 +msgid "Open message options" +msgstr "打開訊息選項" + +#: src/screens/Moderation/index.tsx:231 +msgid "Open muted words and tags settings" +msgstr "打開靜音字詞同標籤設定" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +msgid "Open navigation" +msgstr "打開導航" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +msgid "Open post options menu" +msgstr "打開帖文選項選單" + +#: src/screens/StarterPack/StarterPackScreen.tsx:551 +msgid "Open starter pack menu" +msgstr "打開新手包選單" + +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 +msgid "Open storybook page" +msgstr "打開故事書頁面" + +#: src/view/screens/Settings/index.tsx:815 +msgid "Open system log" +msgstr "打開系統日誌" + +#: src/view/com/util/forms/DropdownButton.tsx:159 +msgid "Opens {numItems} options" +msgstr "打開 {numItems} 選項" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "打開對話框喺你嘅帖文加入內容警告" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "打開對話框嚟揀邊個可以回覆呢個討論串" + +#: src/view/screens/Settings/index.tsx:456 +msgid "Opens accessibility settings" +msgstr "打開無障礙功能設定" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "打開調試條目嘅額外詳情" + +#: src/view/screens/Settings/index.tsx:477 +msgid "Opens appearance settings" +msgstr "打開外觀設定" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +msgid "Opens camera on device" +msgstr "打開裝置上面嘅相機" + +#: src/view/screens/Settings/index.tsx:606 +msgid "Opens chat settings" +msgstr "打開聊天室設定" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 +msgid "Opens composer" +msgstr "打開帖文編輯器" + +#: src/view/screens/Settings/index.tsx:498 +msgid "Opens configurable language settings" +msgstr "打開語言設定" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "打開裝置相簿" + +#: src/view/screens/Settings/index.tsx:638 +msgid "Opens external embeds settings" +msgstr "打開外部嵌入設定" + +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "打開流程嚟建立一個新嘅 Bluesky 帳戶" + +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign into your existing Bluesky account" +msgstr "打開流程嚟登入你現有嘅 Bluesky 帳戶" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "打開 GIF 揀對話框" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "打開邀請碼清單" + +#: src/view/screens/Settings/index.tsx:775 +msgid "Opens modal for account deactivation confirmation" +msgstr "開啟帳戶停用確認模式" + +#: src/view/screens/Settings/index.tsx:797 +msgid "Opens modal for account deletion confirmation. Requires email code" +msgstr "開啟帳戶刪除確認模式,需要電郵驗證碼" + +#: src/view/screens/Settings/index.tsx:732 +msgid "Opens modal for changing your Bluesky password" +msgstr "開啟更改你嘅 Bluesky 密碼嘅模式" + +#: src/view/screens/Settings/index.tsx:687 +msgid "Opens modal for choosing a new Bluesky handle" +msgstr "開啟揀新嘅 Bluesky 帳戶頭銜嘅模式" + +#: src/view/screens/Settings/index.tsx:755 +msgid "Opens modal for downloading your Bluesky account data (repository)" +msgstr "開啟下載你嘅 Bluesky 帳戶資料嘅模式(存儲庫)" + +#: src/view/screens/Settings/index.tsx:963 +msgid "Opens modal for email verification" +msgstr "打開電郵驗證嘅模式" + +#: src/view/com/modals/ChangeHandle.tsx:269 +msgid "Opens modal for using custom domain" +msgstr "打開使用自訂網域嘅模式" + +#: src/view/screens/Settings/index.tsx:523 +msgid "Opens moderation settings" +msgstr "打開審核設定" + +#: src/screens/Login/LoginForm.tsx:231 +msgid "Opens password reset form" +msgstr "打開密碼重設表單" + +#: src/view/screens/Settings/index.tsx:584 +msgid "Opens screen with all saved feeds" +msgstr "打開所有儲存咗嘅動態嘅畫面" + +#: src/view/screens/Settings/index.tsx:665 +msgid "Opens the app password settings" +msgstr "打開 App 密碼設定" + +#: src/view/screens/Settings/index.tsx:541 +msgid "Opens the Following feed preferences" +msgstr "打開以下動態設定" + +#: src/view/com/modals/LinkWarning.tsx:93 +msgid "Opens the linked website" +msgstr "打開連結咗嘅網站" + +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 +msgid "Opens the storybook page" +msgstr "打開故事書頁面" + +#: src/view/screens/Settings/index.tsx:816 +msgid "Opens the system log page" +msgstr "打開系統日誌頁面" + +#: src/view/screens/Settings/index.tsx:562 +msgid "Opens the threads preferences" +msgstr "打開討論串設定" + +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 +msgid "Opens this profile" +msgstr "打開呢個個人檔案" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 +msgid "Opens video picker" +msgstr "打開影片挑選器" + +#: src/view/com/util/forms/DropdownButton.tsx:293 +msgid "Option {0} of {numItems}" +msgstr "{0} 選項,共 {numItems} 個" + +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 +msgid "Optionally provide additional information below:" +msgstr "可揀提供以下額外資料:" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "選項:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Or combine these options:" +msgstr "或者將呢啲選項組合埋一齊:" + +#: src/screens/Deactivated.tsx:211 +msgid "Or, continue with another account." +msgstr "或者,繼續用另一個帳戶。" + +#: src/screens/Deactivated.tsx:194 +msgid "Or, log into one of your other accounts." +msgstr "或者,登入你嘅其他帳戶。" + +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 +msgid "Other" +msgstr "其他" + +#: src/components/AccountList.tsx:83 +msgid "Other account" +msgstr "其他帳戶" + +#: src/view/screens/Settings/index.tsx:380 +msgid "Other accounts" +msgstr "其他帳戶" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:92 +msgid "Other..." +msgstr "其他..." + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "我哋嘅審核服務提供者已經睇咗上報,決定停用你喺 Bluesky 上面嘅聊天室功能存取權。" + +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "搵唔到頁面" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "搵唔到頁面" + +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:257 +#: src/view/com/modals/DeleteAccount.tsx:264 +msgid "Password" +msgstr "密碼" + +#: src/view/com/modals/ChangePassword.tsx:143 +msgid "Password Changed" +msgstr "密碼改咗" + +#: src/screens/Login/index.tsx:154 +msgid "Password updated" +msgstr "密碼更新咗" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "密碼更新咗!" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 +msgid "Pause" +msgstr "暫停" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 +msgid "Pause video" +msgstr "暫停影片" + +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 +msgid "People" +msgstr "用戶" + +#: src/Navigation.tsx:179 +msgid "People followed by @{0}" +msgstr "俾 @{0} 追蹤嘅人" + +#: src/Navigation.tsx:172 +msgid "People following @{0}" +msgstr "追蹤 @{0} 嘅人" + +#: src/view/com/lightbox/Lightbox.tsx:77 +msgid "Permission to access camera roll is required." +msgstr "我哋需要你相簿嘅權限。" + +#: src/view/com/lightbox/Lightbox.tsx:85 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "存取相簿嘅權限俾拒絕,請喺你嘅系統設定裏面啟用佢。" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "切換用戶" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 +msgid "Pets" +msgstr "寵物" + +#: src/screens/Onboarding/state.ts:97 +msgid "Photography" +msgstr "攝影" + +#: src/view/com/composer/labels/LabelsBtn.tsx:168 +msgid "Pictures meant for adults." +msgstr "圖片係畀大人睇嘅。" + +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 +msgid "Pin to home" +msgstr "固定到首頁" + +#: src/view/screens/ProfileFeed.tsx:296 +msgid "Pin to Home" +msgstr "固定到首頁" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "固定到你嘅個人檔案" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "固定咗" + +#: src/view/screens/SavedFeeds.tsx:130 +msgid "Pinned Feeds" +msgstr "固定嘅動態" + +#: src/view/screens/ProfileList.tsx:355 +msgid "Pinned to your feeds" +msgstr "固定喺你嘅動態" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 +msgid "Play" +msgstr "播放" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 +msgid "Play {0}" +msgstr "播放 {0}" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +msgid "Play or pause the GIF" +msgstr "播放或者暫停 GIF" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 +msgid "Play video" +msgstr "播放影片" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +msgid "Play Video" +msgstr "播放影片" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 +msgid "Plays the GIF" +msgstr "播放 GIF" + +#: src/screens/Signup/state.ts:217 +msgid "Please choose your handle." +msgstr "請輸入你嘅帳戶頭銜。" + +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 +msgid "Please choose your password." +msgstr "請輸入你嘅密碼。" + +#: src/screens/Signup/state.ts:231 +msgid "Please complete the verification captcha." +msgstr "請完成 CAPTCHA 驗證碼。" + +#: src/view/com/modals/ChangeEmail.tsx:65 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "請喺更改之前確認你嘅電郵。呢個係加入電郵更新工具嗰陣嘅暫時性要求,而且好快就會移除。" + +#: src/view/com/modals/AddAppPasswords.tsx:94 +msgid "Please enter a name for your app password. All spaces is not allowed." +msgstr "請輸入 App 密碼嘅名稱,唔准用空格。" + +#: src/view/com/modals/AddAppPasswords.tsx:151 +msgid "Please enter a unique name for this App Password or use our randomly generated one." +msgstr "請為呢個 App 密碼輸入一個獨特嘅名稱,或者用我哋隨機產生嘅密碼。" + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "請輸入有效嘅字詞、標籤或者短語嚟靜音" + +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 +msgid "Please enter your email." +msgstr "請輸入你嘅電郵地址。" + +#: src/screens/Signup/StepInfo/index.tsx:96 +msgid "Please enter your invite code." +msgstr "請輸入你嘅邀請碼。" + +#: src/view/com/modals/DeleteAccount.tsx:253 +msgid "Please enter your password as well:" +msgstr "請同時輸入密碼:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:265 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "請解釋你認為 {0} 唔應該套用呢個標記嘅原因" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "請解釋你認為我哋唔應該停用你聊天室功能嘅原因" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "請以 @{0} 身份登入" + +#: src/view/com/modals/VerifyEmail.tsx:109 +msgid "Please Verify Your Email" +msgstr "請驗證你嘅電郵" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 +msgid "Politics" +msgstr "政治" + +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 +msgid "Porn" +msgstr "色情" + +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 +msgctxt "action" +msgid "Post" +msgstr "發文" + +#: src/view/com/post-thread/PostThread.tsx:481 +msgctxt "description" +msgid "Post" +msgstr "帖文" + +#: src/view/com/post-thread/PostThreadItem.tsx:196 +msgid "Post by {0}" +msgstr "由 {0} 發表" + +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 +msgid "Post by @{0}" +msgstr "由 @{0} 發表" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Post deleted" +msgstr "帖文刪除咗" + +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "未能發文。請檢查你嘅互聯網連線,然後試多一次。" + +#: src/view/com/post-thread/PostThread.tsx:212 +msgid "Post hidden" +msgstr "帖文隱藏咗" + +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 +msgid "Post Hidden by Muted Word" +msgstr "帖文俾靜音字詞隱藏" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 +msgid "Post Hidden by You" +msgstr "你隱藏咗嘅帖文" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 +msgid "Post interaction settings" +msgstr "帖文互動設定" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:88 +msgid "Post language" +msgstr "帖文語言" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 +msgid "Post Languages" +msgstr "帖文語言" + +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 +msgid "Post not found" +msgstr "搵唔到帖文" + +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "帖文固定咗" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "帖文已經取消固定" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "發緊文..." + +#: src/components/TagMenu/index.tsx:252 +msgid "posts" +msgstr "帖文" + +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 +msgid "Posts" +msgstr "帖文" + +#: src/components/dialogs/MutedWords.tsx:115 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "可以根據字詞、標籤,又或者兩樣一齊去靜音帖文。我哋建議避開大量帖文裏面會出現嘅常見字詞,因為咁做就無帖文顯示得到。" + +#: src/view/com/posts/FeedErrorMessage.tsx:68 +msgid "Posts hidden" +msgstr "帖文隱藏咗" + +#: src/view/com/modals/LinkWarning.tsx:60 +msgid "Potentially Misleading Link" +msgstr "潛在誤導性嘅連結" + +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "設定儲存咗" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "撳一下就可以嘗試重新連線" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "Press to change hosting provider" +msgstr "撳一下就可以更改 hosting 供應商" + +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "撳嚟重試" + +#: src/components/KnownFollowers.tsx:124 +msgid "Press to view followers of this account that you also follow" +msgstr "撳一下就可以睇到你亦都追蹤緊嘅呢個帳戶嘅追隨者" + +#: src/view/com/lightbox/Lightbox.web.tsx:150 +msgid "Previous image" +msgstr "上一張圖片" + +#: src/view/screens/LanguageSettings.tsx:188 +msgid "Primary Language" +msgstr "首選語言" + +#: src/view/screens/PreferencesThreads.tsx:92 +msgid "Prioritize Your Follows" +msgstr "優先處理你嘅追隨者" + +#: src/view/screens/NotificationsSettings.tsx:60 +msgid "Priority notifications" +msgstr "優先通知" + +#: src/view/screens/Settings/index.tsx:621 +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Privacy" +msgstr "私隱" + +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 +msgid "Privacy Policy" +msgstr "私隱政策" + +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "處理緊影片..." + +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "處理緊..." + +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 +msgid "profile" +msgstr "個人檔案" + +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 +msgid "Profile" +msgstr "個人檔案" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 +msgid "Profile updated" +msgstr "個人檔案更新咗" + +#: src/view/screens/Settings/index.tsx:976 +msgid "Protect your account by verifying your email." +msgstr "驗證你嘅電郵嚟保護你嘅帳戶。" + +#: src/screens/Onboarding/StepFinished.tsx:237 +msgid "Public" +msgstr "公開" + +#: src/view/screens/ModerationModlists.tsx:63 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "公開而且可以共享嘅用戶列表,可以批量靜音或者封鎖。" + +#: src/view/screens/Lists.tsx:69 +msgid "Public, shareable lists which can drive feeds." +msgstr "公開而且可以共享嘅列表,可以作為動態使用。" + +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish post" +#~ msgstr "發佈帖文" + +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish reply" +#~ msgstr "發佈回覆" + +#: src/components/StarterPack/QrCodeDialog.tsx:128 +msgid "QR code copied to your clipboard!" +msgstr "QR code 複製咗去你嘅剪貼簿!" + +#: src/components/StarterPack/QrCodeDialog.tsx:106 +msgid "QR code has been downloaded!" +msgstr "QR code 已經下載咗!" + +#: src/components/StarterPack/QrCodeDialog.tsx:107 +msgid "QR code saved to your camera roll!" +msgstr "QR code 儲存咗去你嘅相簿!" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +msgid "Quote post" +msgstr "引文" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +msgid "Quote post was re-attached" +msgstr "引文已經重新附上" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +msgid "Quote post was successfully detached" +msgstr "引文已經成功拆開" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +msgid "Quote posts disabled" +msgstr "停用咗引文" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 +msgid "Quote posts enabled" +msgstr "啟用咗引文" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 +msgid "Quote settings" +msgstr "引用設定" + +#: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 +msgid "Quotes" +msgstr "引用" + +#: src/view/com/post-thread/PostThreadItem.tsx:230 +msgid "Quotes of this post" +msgstr "引用呢篇帖文" + +#: src/view/screens/PreferencesThreads.tsx:81 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "隨機顯示(又名試試手氣)" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +msgid "Re-attach quote" +msgstr "重新附上引文" + +#: src/screens/Deactivated.tsx:144 +msgid "Reactivate your account" +msgstr "重新啟動你嘅帳戶" + +#: src/view/com/auth/SplashScreen.web.tsx:170 +msgid "Read the Bluesky blog" +msgstr "睇下 Bluesky 網誌" + +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 +msgid "Read the Bluesky Privacy Policy" +msgstr "睇下 Bluesky 私隱政策" + +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 +msgid "Read the Bluesky Terms of Service" +msgstr "睇下 Bluesky 服務條款" + +#: src/components/dms/ReportDialog.tsx:169 +msgid "Reason:" +msgstr "原因:" + +#: src/view/screens/Search/Search.tsx:1056 +msgid "Recent Searches" +msgstr "最近嘅搜尋" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "重新連接" + +#: src/view/screens/Notifications.tsx:144 +msgid "Refresh notifications" +msgstr "重新整理通知" + +#: src/screens/Messages/ChatList.tsx:198 +msgid "Reload conversations" +msgstr "重新載入對話" + +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/view/com/feeds/FeedSourceCard.tsx:316 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +#: src/view/com/util/AccountDropdownBtn.tsx:61 +msgid "Remove" +msgstr "移除" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "喺新手包裏面移除 {displayName}" + +#: src/view/com/util/AccountDropdownBtn.tsx:26 +msgid "Remove account" +msgstr "移除帳戶" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 +msgid "Remove attachment" +msgstr "移除附上" + +#: src/view/com/util/UserAvatar.tsx:403 +msgid "Remove Avatar" +msgstr "移除大頭相" + +#: src/view/com/util/UserBanner.tsx:155 +msgid "Remove Banner" +msgstr "移除橫額" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 +msgid "Remove embed" +msgstr "移除嵌入" + +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +msgid "Remove feed" +msgstr "移除動態" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 +msgid "Remove feed?" +msgstr "移除動態?" + +#: src/view/com/feeds/FeedSourceCard.tsx:187 +#: src/view/com/feeds/FeedSourceCard.tsx:265 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 +msgid "Remove from my feeds" +msgstr "喺我嘅動態裏面移除" + +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:311 +msgid "Remove from my feeds?" +msgstr "喺我嘅動態裏面移除?" + +#: src/view/com/util/AccountDropdownBtn.tsx:53 +msgid "Remove from quick access?" +msgstr "喺快速存取中移除?" + +#: src/screens/List/ListHiddenScreen.tsx:156 +msgid "Remove from saved feeds" +msgstr "喺儲存咗嘅動態裏面移除" + +#: src/view/com/composer/photos/Gallery.tsx:200 +msgid "Remove image" +msgstr "移除圖片" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "喺你嘅清單裏面移除靜音字詞" + +#: src/view/screens/Search/Search.tsx:1100 +msgid "Remove profile" +msgstr "移除個人檔案" + +#: src/view/screens/Search/Search.tsx:1102 +msgid "Remove profile from search history" +msgstr "喺搜尋記錄裏面移除個人檔案" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 +msgid "Remove quote" +msgstr "移除引文" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 +msgid "Remove repost" +msgstr "移除轉發" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 +msgid "Remove subtitle file" +msgstr "移除字幕檔案" + +#: src/view/com/posts/FeedErrorMessage.tsx:211 +msgid "Remove this feed from your saved feeds" +msgstr "喺你儲存咗嘅動態裏面移除呢個動態" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 +msgid "Removed by author" +msgstr "由作者移除咗" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 +msgid "Removed by you" +msgstr "由你移除咗" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "喺清單裏面移除咗" + +#: src/view/com/feeds/FeedSourceCard.tsx:138 +msgid "Removed from my feeds" +msgstr "喺我嘅動態裏面移除咗" + +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 +msgid "Removed from saved feeds" +msgstr "喺儲存咗嘅動態裏面移除咗" + +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 +msgid "Removed from your feeds" +msgstr "喺你嘅動態裏面移除咗" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +msgid "Removes quoted post" +msgstr "移除引文" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "用「Discover」取代" + +#: src/view/screens/Profile.tsx:229 +msgid "Replies" +msgstr "回覆" + +#: src/components/WhoCanReply.tsx:69 +msgid "Replies disabled" +msgstr "停用咗回覆" + +#: src/components/WhoCanReply.tsx:215 +msgid "Replies to this post are disabled." +msgstr "呢篇帖文嘅回覆已經停用。" + +#: src/view/com/composer/Composer.tsx:708 +msgctxt "action" +msgid "Reply" +msgstr "回覆" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 +msgid "Reply Hidden by Thread Author" +msgstr "回覆由呢個討論串嘅發佈者所隱藏" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 +msgid "Reply Hidden by You" +msgstr "回覆由你隱藏咗" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 +msgid "Reply settings" +msgstr "回覆設定" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Reply settings are chosen by the author of the thread" +msgstr "回覆設定係由討論串嘅作者揀嘅" + +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "回覆畀 <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:535 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "回覆俾封鎖嘅帖文" + +#: src/view/com/posts/FeedItem.tsx:537 +msgctxt "description" +msgid "Reply to a post" +msgstr "回覆帖文" + +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 +msgctxt "description" +msgid "Reply to you" +msgstr "回覆你" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +msgid "Reply visibility updated" +msgstr "更新咗回覆可見度" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +msgid "Reply was successfully hidden" +msgstr "回覆已經成功隱藏" + +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "Report" +msgstr "上報" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 +msgid "Report Account" +msgstr "上報帳戶" + +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 +msgid "Report conversation" +msgstr "上報對話" + +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "上報對話框" + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 +msgid "Report feed" +msgstr "上報動態" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Report List" +msgstr "上報清單" + +#: src/components/dms/MessageMenu.tsx:130 +msgid "Report message" +msgstr "上報訊息" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +msgid "Report post" +msgstr "上報帖文" + +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 +msgid "Report starter pack" +msgstr "上報新手包" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:43 +msgid "Report this content" +msgstr "上報呢個內容" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:56 +msgid "Report this feed" +msgstr "上報呢個動態" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:53 +msgid "Report this list" +msgstr "上報呢個清單" + +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 +msgid "Report this message" +msgstr "上報呢個訊息" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:50 +msgid "Report this post" +msgstr "上報呢篇帖文" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +msgid "Report this starter pack" +msgstr "上報呢個新手包" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:47 +msgid "Report this user" +msgstr "上報呢個用戶" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 +msgctxt "action" +msgid "Repost" +msgstr "轉發" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Repost" +msgstr "轉發" + +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +msgid "Repost or quote post" +msgstr "轉發或者引文" + +#: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 +msgid "Reposted By" +msgstr "轉發" + +#: src/view/com/posts/FeedItem.tsx:294 +msgid "Reposted by {0}" +msgstr "由 {0} 轉發" + +#: src/view/com/posts/FeedItem.tsx:313 +msgid "Reposted by <0><1/>" +msgstr "由 <0><1/> 轉發" + +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 +msgid "Reposted by you" +msgstr "由你轉發" + +#: src/view/com/notifications/FeedItem.tsx:180 +msgid "reposted your post" +msgstr "轉發咗你嘅帖文" + +#: src/view/com/post-thread/PostThreadItem.tsx:209 +msgid "Reposts of this post" +msgstr "呢篇帖文嘅轉發" + +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 +msgid "Request Change" +msgstr "要求更改" + +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 +msgid "Request Code" +msgstr "要求驗證碼" + +#: src/view/screens/AccessibilitySettings.tsx:90 +msgid "Require alt text before posting" +msgstr "發佈之前要求附上 ALT 文字" + +#: src/view/screens/Settings/Email2FAToggle.tsx:51 +msgid "Require email code to log into your account" +msgstr "登入時要求電郵驗證碼" + +#: src/screens/Signup/StepInfo/index.tsx:159 +msgid "Required for this provider" +msgstr "呢個供應商要求必填" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "你所在嘅區域必填" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 +msgid "Resend email" +msgstr "重新發送電郵" + +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "重新發送電郵" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "重新發送驗證電郵" + +#: src/view/com/modals/ChangePassword.tsx:186 +msgid "Reset code" +msgstr "重設驗證碼" + +#: src/view/com/modals/ChangePassword.tsx:193 +msgid "Reset Code" +msgstr "重設驗證碼" + +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 +msgid "Reset onboarding state" +msgstr "重設初始設定狀態" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "重設密碼" + +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 +msgid "Reset preferences state" +msgstr "重設設定狀態" + +#: src/view/screens/Settings/index.tsx:868 +msgid "Resets the onboarding state" +msgstr "重設初始設定狀態" + +#: src/view/screens/Settings/index.tsx:848 +msgid "Resets the preferences state" +msgstr "重設設定狀態" + +#: src/screens/Login/LoginForm.tsx:296 +msgid "Retries login" +msgstr "重試登入" + +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 +msgid "Retries the last action, which errored out" +msgstr "重試最後一個動作,但係出錯咗" + +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +msgid "Retry" +msgstr "重試" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 +msgid "Return to previous page" +msgstr "返去上一頁" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "返去首頁" + +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 +msgid "Returns to previous page" +msgstr "返去上一頁" + +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save" +msgstr "儲存" + +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 +msgctxt "action" +msgid "Save" +msgstr "儲存" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +msgid "Save birthday" +msgstr "儲存生日" + +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "儲存變更" + +#: src/view/com/modals/ChangeHandle.tsx:158 +msgid "Save handle change" +msgstr "儲存帳戶頭銜變更" + +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 +msgid "Save image" +msgstr "儲存圖片" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "儲存圖片裁剪" + +#: src/components/StarterPack/QrCodeDialog.tsx:179 +msgid "Save QR code" +msgstr "儲存 QR code" + +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 +msgid "Save to my feeds" +msgstr "儲存去我嘅動態" + +#: src/view/screens/SavedFeeds.tsx:171 +msgid "Saved Feeds" +msgstr "儲存咗動態" + +#: src/view/com/lightbox/Lightbox.tsx:95 +msgid "Saved to your camera roll" +msgstr "儲存咗去你嘅相簿" + +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 +msgid "Saved to your feeds" +msgstr "儲存咗去你嘅動態" + +#: src/view/com/modals/ChangeHandle.tsx:159 +msgid "Saves handle change to {handle}" +msgstr "將帳戶頭銜變更為 {handle}" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "儲存圖片裁剪設定" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 +msgid "Say hello!" +msgstr "打招呼!" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 +msgid "Science" +msgstr "科學" + +#: src/view/screens/ProfileList.tsx:986 +msgid "Scroll to top" +msgstr "捲動去頂部" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 +msgid "Search" +msgstr "搜尋" + +#: src/view/shell/desktop/Search.tsx:201 +msgid "Search for \"{query}\"" +msgstr "搜尋「{query}」" + +#: src/view/screens/Search/Search.tsx:999 +msgid "Search for \"{searchText}\"" +msgstr "搜尋「{searchText}」" + +#: src/screens/StarterPack/Wizard/index.tsx:500 +msgid "Search for feeds that you want to suggest to others." +msgstr "搜尋你想向其他人推薦嘅動態。" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 +msgid "Search for users" +msgstr "搜尋用戶" + +#: src/components/dialogs/GifSelect.tsx:177 +msgid "Search GIFs" +msgstr "搜尋 GIF" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +msgid "Search profiles" +msgstr "搜尋個人檔案" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search Tenor" +msgstr "搜尋 Tenor" + +#: src/view/com/modals/ChangeEmail.tsx:105 +msgid "Security Step Required" +msgstr "需要安全步驟" + +#: src/components/TagMenu/index.web.tsx:77 +msgid "See {truncatedTag} posts" +msgstr "睇下 {truncatedTag} 帖文" + +#: src/components/TagMenu/index.web.tsx:94 +msgid "See {truncatedTag} posts by user" +msgstr "睇下用戶嘅 {truncatedTag} 帖文" + +#: src/components/TagMenu/index.tsx:132 +msgid "See <0>{displayTag} posts" +msgstr "睇下 <0>{displayTag} 帖文" + +#: src/components/TagMenu/index.tsx:183 +msgid "See <0>{displayTag} posts by this user" +msgstr "睇下呢個用戶嘅 <0>{displayTag} 帖文" + +#: src/view/com/auth/SplashScreen.web.tsx:175 +msgid "See jobs at Bluesky" +msgstr "喺 Bluesky 搵工" + +#: src/view/screens/SavedFeeds.tsx:212 +msgid "See this guide" +msgstr "睇下呢個指南" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 +msgid "Seek slider" +msgstr "搵滑桿" + +#: src/view/com/util/Selector.tsx:106 +msgid "Select {item}" +msgstr "揀 {item}" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "揀一個顏色" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "揀帳戶" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "揀個大頭相" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "揀個表情符號" + +#: src/screens/Login/index.tsx:117 +msgid "Select from an existing account" +msgstr "喺現有帳戶裏面揀" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "揀 GIF" + +#: src/components/dialogs/GifSelect.tsx:307 +msgid "Select GIF \"{0}\"" +msgstr "揀 GIF「{0}」" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "揀將呢個字詞靜音幾耐。" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 +msgid "Select language..." +msgstr "揀語言..." + +#: src/view/screens/LanguageSettings.tsx:301 +msgid "Select languages" +msgstr "揀語言" + +#: src/components/ReportDialog/SelectLabelerView.tsx:29 +msgid "Select moderator" +msgstr "揀審核服務提供者" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select option {i} of {numItems}" +msgstr "揀 {numItems} 個項目中嘅第 {i} 項" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "揀字幕檔案(.vtt)" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "揀 {emojiName} emoji 做你嘅大頭相" + +#: src/components/ReportDialog/SubmitView.tsx:140 +msgid "Select the moderation service(s) to report to" +msgstr "揀要上報嘅審核服務" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Select the service that hosts your data." +msgstr "揀 host 你資料嘅服務。" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 +msgid "Select video" +msgstr "揀影片" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "揀呢個靜音字詞應該適用喺邊啲內容。" + +#: src/view/screens/LanguageSettings.tsx:283 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "揀你想訂閱嘅動態提供包含邊啲語言。如果冇揀,就會顯示所有語言。" + +#: src/view/screens/LanguageSettings.tsx:97 +msgid "Select your app language for the default text to display in the app." +msgstr "揀你嘅 App 語言,喺 App 裏面顯示預設文字。" + +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Select your date of birth" +msgstr "揀你嘅出生日期" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +msgid "Select your interests from the options below" +msgstr "喺下面嘅選項裏面揀你嘅興趣" + +#: src/view/screens/LanguageSettings.tsx:191 +msgid "Select your preferred language for translations in your feed." +msgstr "揀你發文所用嘅語言。" + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "送個整齊嘅網站!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "傳送確認電郵" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "傳送確認電郵" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 +msgid "Send Confirmation Email" +msgstr "傳送確認電郵" + +#: src/view/com/modals/DeleteAccount.tsx:149 +msgid "Send email" +msgstr "傳送電郵" + +#: src/view/com/modals/DeleteAccount.tsx:162 +msgctxt "action" +msgid "Send Email" +msgstr "傳送電郵" + +#: src/view/shell/Drawer.tsx:341 +msgid "Send feedback" +msgstr "傳送反饋" + +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 +msgid "Send message" +msgstr "發送訊息" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "發文去..." + +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 +msgid "Send report" +msgstr "傳送上報" + +#: src/components/ReportDialog/SelectLabelerView.tsx:43 +msgid "Send report to {0}" +msgstr "將上報發送去 {0}" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 +msgid "Send verification email" +msgstr "傳送驗證電郵" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +msgid "Send via direct message" +msgstr "透過聊天室傳送" + +#: src/view/com/modals/DeleteAccount.tsx:151 +msgid "Sends email with confirmation code for account deletion" +msgstr "傳送電郵,裏面有確認碼,用嚟刪除帳戶" + +#: src/view/com/auth/server-input/index.tsx:111 +msgid "Server address" +msgstr "伺服器地址" + +#: src/screens/Moderation/index.tsx:317 +msgid "Set birthdate" +msgstr "設定出生日期" + +#: src/screens/Login/SetNewPasswordForm.tsx:96 +msgid "Set new password" +msgstr "設定新密碼" + +#: src/view/screens/PreferencesFollowingFeed.tsx:122 +msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." +msgstr "將呢個設定為「停用」就可以喺你嘅動態裏面隱藏所有引文。轉發仍然會顯示。" + +#: src/view/screens/PreferencesFollowingFeed.tsx:64 +msgid "Set this setting to \"No\" to hide all replies from your feed." +msgstr "將呢個設定為「停用」就可以隱藏所有喺你嘅動態裏面嘅回覆。" + +#: src/view/screens/PreferencesFollowingFeed.tsx:88 +msgid "Set this setting to \"No\" to hide all reposts from your feed." +msgstr "將呢個設定為「停用」就可以隱藏你嘅動態裏面嘅所有轉發。" + +#: src/view/screens/PreferencesThreads.tsx:117 +msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." +msgstr "呢個係實驗功能:將呢個設定為「啟用」回覆就會以串文形式顯示。" + +#: src/view/screens/PreferencesFollowingFeed.tsx:158 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "呢個係實驗功能:將呢個設定為「啟用」就可以喺「Following」動態裏面顯示你儲存咗嘅動態嘅樣本。" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "設定你嘅帳戶" + +#: src/view/com/modals/ChangeHandle.tsx:254 +msgid "Sets Bluesky username" +msgstr "設定 Bluesky 用戶名" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "設定電郵嚟重設密碼" + +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 +msgid "Settings" +msgstr "設定" + +#: src/view/com/composer/labels/LabelsBtn.tsx:172 +msgid "Sexual activity or erotic nudity." +msgstr "性活動或者色情裸體。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "性暗示" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 +msgid "Share" +msgstr "分享" + +#: src/view/com/lightbox/Lightbox.tsx:176 +msgctxt "action" +msgid "Share" +msgstr "分享" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "分享一個好正嘅故事!" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "分享一個有趣嘅事實!" + +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 +msgid "Share anyway" +msgstr "點都要分享" + +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 +msgid "Share feed" +msgstr "分享動態" + +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 +msgid "Share link" +msgstr "分享連結" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Share Link" +msgstr "分享連結" + +#: src/components/StarterPack/ShareDialog.tsx:88 +msgid "Share link dialog" +msgstr "分享連結對話框" + +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 +msgid "Share QR code" +msgstr "分享 QR code" + +#: src/screens/StarterPack/StarterPackScreen.tsx:415 +msgid "Share this starter pack" +msgstr "分享呢個新手包" + +#: src/components/StarterPack/ShareDialog.tsx:100 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "分享呢個新手包,幫啲人加入你嘅 Bluesky 社群。" + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "分享你最鍾意嘅動態!" + +#: src/Navigation.tsx:250 +msgid "Shared Preferences Tester" +msgstr "共用設定測試器" + +#: src/view/com/modals/LinkWarning.tsx:92 +msgid "Shares the linked website" +msgstr "分享連結咗嘅網站" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:136 +#: src/components/moderation/PostHider.tsx:122 +#: src/view/screens/Settings/index.tsx:352 +msgid "Show" +msgstr "顯示" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +msgid "Show alt text" +msgstr "顯示 ALT 文字" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 +msgid "Show anyway" +msgstr "點都要顯示" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "顯示徽章" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "喺動態裏面顯示徽章同埋篩選器" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show hidden replies" +msgstr "顯示隱藏嘅回覆" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +msgid "Show less like this" +msgstr "顯示少啲噉嘅嘢" + +#: src/screens/List/ListHiddenScreen.tsx:172 +msgid "Show list anyway" +msgstr "點都要顯示呢個清單" + +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 +msgid "Show More" +msgstr "顯示更多" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +msgid "Show more like this" +msgstr "顯示多啲噉嘅嘢" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show muted replies" +msgstr "顯示靜音回覆" + +#: src/view/screens/PreferencesFollowingFeed.tsx:155 +msgid "Show Posts from My Feeds" +msgstr "顯示我嘅動態裏面嘅帖文" + +#: src/view/screens/PreferencesFollowingFeed.tsx:119 +msgid "Show Quote Posts" +msgstr "顯示引文" + +#: src/view/screens/PreferencesFollowingFeed.tsx:61 +msgid "Show Replies" +msgstr "顯示回覆" + +#: src/view/screens/PreferencesThreads.tsx:95 +msgid "Show replies by people you follow before all other replies." +msgstr "喺所有其他回覆之前顯示你追蹤嘅人嘅回覆。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +msgid "Show reply for everyone" +msgstr "為所有人顯示回覆" + +#: src/view/screens/PreferencesFollowingFeed.tsx:85 +msgid "Show Reposts" +msgstr "顯示轉發" + +#: src/components/moderation/ContentHider.tsx:130 +#: src/components/moderation/PostHider.tsx:79 +msgid "Show the content" +msgstr "顯示內容" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "顯示警告" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "喺動態裏面顯示警告同埋篩選器" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "登入" + +#: src/components/AccountList.tsx:122 +msgid "Sign in as {0}" +msgstr "以 {0} 身份登入" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "以..." + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "登入或者建立帳戶嚟加入對話!" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign into Bluesky or create a new account" +msgstr "登入 Bluesky 或者建立新帳戶" + +#: src/view/screens/Settings/index.tsx:433 +msgid "Sign out" +msgstr "登出" + +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 +msgid "Sign out of all accounts" +msgstr "登出所有帳戶" + +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Sign up" +msgstr "建立帳戶" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "需要登入" + +#: src/view/screens/Settings/index.tsx:362 +msgid "Signed in as" +msgstr "登入為" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "以 @{0} 身份登入" + +#: src/view/com/notifications/FeedItem.tsx:218 +msgid "signed up with your starter pack" +msgstr "用你嘅新手包註冊咗" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 +msgid "Signup without a starter pack" +msgstr "建立帳戶但唔使用新手包" + +#: src/components/FeedInterstitials.tsx:316 +msgid "Similar accounts" +msgstr "相似帳戶" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Skip" +msgstr "跳過" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "跳過呢個流程" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "細啲" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 +msgid "Software Dev" +msgstr "軟件開發" + +#: src/components/FeedInterstitials.tsx:447 +msgid "Some other feeds you might like" +msgstr "你可能鍾意嘅其他動態" + +#: src/components/WhoCanReply.tsx:70 +msgid "Some people can reply" +msgstr "有啲人可以回覆" + +#: src/screens/Messages/Conversation.tsx:109 +msgid "Something went wrong" +msgstr "有啲嘢出錯" + +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "有啲嘢出錯,請試多一次" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 +#: src/screens/Profile/Sections/Labels.tsx:87 +msgid "Something went wrong, please try again." +msgstr "有啲嘢出錯,請試多一次。" + +#: src/components/Lists.tsx:200 +#: src/view/screens/NotificationsSettings.tsx:49 +msgid "Something went wrong!" +msgstr "有啲嘢出錯!" + +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 +msgid "Sorry! Your session expired. Please log in again." +msgstr "對唔住!你嘅登入已經過期,請試下再登入。" + +#: src/view/screens/PreferencesThreads.tsx:64 +msgid "Sort Replies" +msgstr "回覆排序" + +#: src/view/screens/PreferencesThreads.tsx:67 +msgid "Sort replies to the same post by:" +msgstr "排序同一個帖文嘅回覆:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "來源:" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "垃圾訊息" + +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "垃圾訊息、過度提及或回覆" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 +msgid "Sports" +msgstr "運動" + +#: src/components/dms/dialogs/NewChatDialog.tsx:61 +msgid "Start a new chat" +msgstr "開始新嘅聊天室" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 +msgid "Start chat with {displayName}" +msgstr "開始同 {displayName} 聊天" + +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Starter Pack" +msgstr "新手包" + +#: src/components/StarterPack/StarterPackCard.tsx:81 +msgid "Starter pack by {0}" +msgstr "由 {0} 建立嘅新手包" + +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "由你建立嘅新手包" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 +msgid "Starter pack is invalid" +msgstr "新手包無效" + +#: src/view/screens/Profile.tsx:233 +msgid "Starter Packs" +msgstr "新手包" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "新手包可以畀你輕鬆同你嘅朋友分享你最鍾意嘅動態同人物。" + +#: src/view/screens/Settings/index.tsx:918 +msgid "Status Page" +msgstr "狀態頁面" + +#: src/screens/Signup/index.tsx:130 +msgid "Step {0} of {1}" +msgstr "第 {0} 步(共 {1} 步)" + +#: src/view/screens/Settings/index.tsx:279 +msgid "Storage cleared, you need to restart the app now." +msgstr "儲存空間已經清除,你而家需要重新啟動 App。" + +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 +msgid "Storybook" +msgstr "故事書" + +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "提交" + +#: src/view/screens/ProfileList.tsx:703 +msgid "Subscribe" +msgstr "訂閱" + +#: src/screens/Profile/Sections/Labels.tsx:201 +msgid "Subscribe to @{0} to use these labels:" +msgstr "訂閱 @ {0} 就可以用呢啲標籤:" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +msgid "Subscribe to Labeler" +msgstr "訂閱標籤製作者" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +msgid "Subscribe to this labeler" +msgstr "訂閱呢個標籤製作者" + +#: src/view/screens/ProfileList.tsx:699 +msgid "Subscribe to this list" +msgstr "訂閱呢個清單" + +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "搞掂!" + +#: src/view/screens/Search/Explore.tsx:332 +msgid "Suggested accounts" +msgstr "建議帳戶" + +#: src/components/FeedInterstitials.tsx:318 +msgid "Suggested for you" +msgstr "建議畀你" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Suggestive" +msgstr "建議" + +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "支持" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "切換帳戶" + +#: src/view/screens/Settings/index.tsx:131 +msgid "Switch to {0}" +msgstr "切換去 {0}" + +#: src/view/screens/Settings/index.tsx:132 +msgid "Switches the account you are logged in to" +msgstr "切換你登入咗嘅帳戶" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "System" +msgstr "系統" + +#: src/view/screens/Settings/index.tsx:818 +msgid "System log" +msgstr "系統日誌" + +#: src/components/TagMenu/index.tsx:87 +msgid "Tag menu: {displayTag}" +msgstr "標籤選單:{displayTag}" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "只限標籤" + +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "㩒一下就可以閂咗" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 +msgid "Tap to enter full screen" +msgstr "㩒一下就可以進入全螢幕" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 +msgid "Tap to play or pause" +msgstr "㩒一下就可以播放或者暫停" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 +msgid "Tap to toggle sound" +msgstr "㩒一下就可以切換聲音" + +#: src/view/com/util/images/AutoSizedImage.tsx:219 +#: src/view/com/util/images/AutoSizedImage.tsx:239 +msgid "Tap to view full image" +msgstr "㩒一下就可以睇到完整圖片" + +#: src/state/shell/progress-guide.tsx:166 +msgid "Task complete - 10 likes!" +msgstr "任務完成 - 10 個讚!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "教我哋嘅算法你鍾意啲咩" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 +msgid "Tech" +msgstr "科技" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "講個笑話!" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "講下你自己" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" +msgstr "講多少少畀我哋聽" + +#: src/view/shell/desktop/RightNav.tsx:90 +msgid "Terms" +msgstr "條款" + +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 +msgid "Terms of Service" +msgstr "服務條款" + +#: src/lib/moderation/useReportOptions.ts:60 +#: src/lib/moderation/useReportOptions.ts:99 +#: src/lib/moderation/useReportOptions.ts:107 +#: src/lib/moderation/useReportOptions.ts:115 +msgid "Terms used violate community standards" +msgstr "所用嘅條款違反社群標準" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "字詞同標籤" + +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "文字輸入欄位" + +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "多謝!你嘅電郵已經成功驗證。" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 +msgid "Thank you. Your report has been sent." +msgstr "多謝,你嘅上報已經寄出。" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "多謝,你已經成功驗證咗你嘅電郵地址。而家你可以閂呢個對話框。" + +#: src/view/com/modals/ChangeHandle.tsx:452 +msgid "That contains the following:" +msgstr "當中包含以下內容:" + +#: src/screens/Signup/StepHandle.tsx:51 +msgid "That handle is already taken." +msgstr "嗰個帳戶頭銜已經攞咗。" + +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 +msgid "That starter pack could not be found." +msgstr "搵唔到嗰個新手包。" + +#: src/view/com/post-thread/PostQuotes.tsx:133 +msgid "That's all, folks!" +msgstr "就咁先!" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "The account will be able to interact with you after unblocking." +msgstr "呢個帳戶喺解除封鎖之後就可以同你互動。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "The author of this thread has hidden this reply." +msgstr "呢個討論串嘅作者隱藏咗呢個回覆。" + +#: src/screens/Moderation/index.tsx:369 +msgid "The Bluesky web application" +msgstr "Bluesky 網頁 App" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "社群指南已經移至 <0/>" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "版權政策已經移至 <0/>" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "「Discover」動態" + +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 +msgid "The Discover feed now knows what you like" +msgstr "「Discover」動態而家知道你鍾意啲咩" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "喺應用程式裏面嘅體驗會更好。即刻下載 Bluesky ,我哋會喺你停咗嘅地方繼續。" + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "呢個動態已經用「Discover」取代。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:58 +msgid "The following labels were applied to your account." +msgstr "以下標籤已經套用到你嘅帳戶。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your content." +msgstr "以下標籤已經套用到你嘅內容。" + +#: src/screens/Onboarding/Layout.tsx:58 +msgid "The following steps will help customize your Bluesky experience." +msgstr "以下步驟會幫你自訂你嘅 Bluesky 體驗。" + +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 +msgid "The post may have been deleted." +msgstr "呢篇帖文可能已經刪除咗。" + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "私隱政策已經移至 <0/>" + +#: src/view/com/composer/state/video.ts:409 +msgid "The selected video is larger than 50MB." +msgstr "所選影片大過 50MB。" + +#: src/screens/StarterPack/StarterPackScreen.tsx:724 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "你想睇嘅新手包無效。你可以刪除呢個新手包。" + +#: src/view/screens/Support.tsx:37 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "支援表格已經移動咗。如果你需要幫助,請 <0/> 或者去 {HELP_DESK_URL} 同我哋聯絡。" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "服務條款已經移至" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "你提供嘅驗證碼無效。請確保你用咗正確嘅驗證連結,或者要求新嘅驗證連結。" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "主題" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +#~ msgid "There are no self-labels that can be applied to this post." +#~ msgstr "呢篇帖文冇任何內容標籤可以套用。" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "帳戶停用無時間限制,隨時返嚟。" + +#: src/components/dialogs/GifSelect.tsx:225 +msgid "There was an issue connecting to Tenor." +msgstr "連接 Tenor 出現問題。" + +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 +msgid "There was an issue contacting the server" +msgstr "連接伺服器出現問題" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "聯絡伺服器時出現問題,請檢查你嘅互聯網連線,然後試多一次。" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 +msgid "There was an issue contacting your server" +msgstr "連接你嘅伺服器出現問題" + +#: src/view/com/notifications/Feed.tsx:129 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "攞通知嗰陣出現問題,㩒呢度試多一次。" + +#: src/view/com/posts/Feed.tsx:473 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "攞帖文出現問題,㩒呢度試多一次。" + +#: src/view/com/lists/ListMembers.tsx:169 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "攞清單出現問題,㩒呢度試多一次。" + +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "攞清單出現問題,㩒呢度試多一次。" + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "移除呢個動態出現問題。請檢查你嘅互聯網連線,然後試多一次。" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "傳送你嘅上報出現問題,請檢查你嘅互聯網連線。" + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "更新你嘅動態嗰陣出現問題,請檢查你嘅互聯網連線,然後試多一次。" + +#: src/view/screens/AppPasswords.tsx:75 +msgid "There was an issue with fetching your app passwords" +msgstr "擷取你嘅 App 密碼嗰陣出現問題" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 +msgid "There was an issue! {0}" +msgstr "{0} 出現問題!" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "出現問題。請檢查你嘅互聯網連線,然後試多一次。" + +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "一個估唔到嘅問題。如果你發生呢件事,請話我哋知!" + +#: src/screens/SignupQueued.tsx:112 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "新用戶湧入 Bluesky !我哋會盡快啟動你嘅帳戶。" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "呢個 {screenDescription} 已經俾標記咗:" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "呢個帳戶要求用戶登入嚟睇佢哋嘅個人檔案。" + +#: src/components/dms/BlockedByListDialog.tsx:34 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "呢個帳戶俾你嘅一個或者多個審核清單封鎖。如果要解除封鎖,請直接去清單同埋移除呢個用戶。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "呢個上訴會傳送去 <0>{sourceName} 。" + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "呢個上訴會傳送去 Bluesky 嘅審核服務。" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "呢個聊天室已經斷咗連線" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "呢個內容已經俾審核服務提供者隱藏咗。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "呢個內容已經套用咗審核服務提供者所標記嘅普通警告。" + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "呢個內容由 {0} 托管。你想唔想啟用外部媒體?" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "呢個內容唔可以用,因為其中一個涉及嘅使用者封鎖咗另一個。" + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This content is not viewable without a Bluesky account." +msgstr "如果冇 Bluesky 帳戶,呢啲內容就睇唔到。" + +#: src/screens/Messages/components/ChatListItem.tsx:266 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "呢個對話係同一個刪除咗或者停用咗嘅帳戶進行。撳一下就可以睇到選項。" + +#: src/view/screens/Settings/ExportCarDialog.tsx:92 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "呢個功能係測試版。你可以喺 <0>呢篇網誌文章 睇到更多有關存儲庫匯出嘅資訊。" + +#: src/view/com/posts/FeedErrorMessage.tsx:120 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "呢個動態而家流量好大,暫時唔可以用。請遲啲再試。" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:37 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "呢個動態係空嘅!你可能需要追蹤更多用戶或者調整你嘅語言設定。" + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 +msgid "This feed is empty." +msgstr "呢個動態係空嘅。" + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "呢個動態唔再可用,我哋改為顯示 <0>Discover。" + +#: src/components/dialogs/BirthDateSettings.tsx:40 +msgid "This information is not shared with other users." +msgstr "呢啲資料唔會同其他用戶分享。" + +#: src/view/com/modals/VerifyEmail.tsx:127 +msgid "This is important in case you ever need to change your email or reset your password." +msgstr "呢個係好重要嘅,以免你需要更改你嘅電郵或者重設你嘅密碼。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 +msgid "This label was applied by <0>{0}." +msgstr "呢個標籤係由 <0>{0} 套用嘅。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:146 +msgid "This label was applied by the author." +msgstr "呢個標籤係由作者套用嘅。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +msgid "This label was applied by you." +msgstr "呢個標籤係由你套用嘅。" + +#: src/screens/Profile/Sections/Labels.tsx:188 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "呢個標記者仲未發佈嘅標籤,而且可能唔會生效。" + +#: src/view/com/modals/LinkWarning.tsx:72 +msgid "This link is taking you to the following website:" +msgstr "呢個連結會帶你去以下嘅網站:" + +#: src/screens/List/ListHiddenScreen.tsx:136 +msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "呢個清單 - 由 <0>{0} 建立 - 喺佢嘅名稱或者描述裏面可能違反咗 Bluesky 嘅社群指引。" + +#: src/view/screens/ProfileList.tsx:966 +msgid "This list is empty!" +msgstr "呢個清單係空嘅!" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "呢個審核服務唔可用,詳情請睇下面。如果呢個問題持續,請聯絡我哋。" + +#: src/view/com/modals/AddAppPasswords.tsx:110 +msgid "This name is already in use" +msgstr "呢個名已經用緊" + +#: src/view/com/post-thread/PostThreadItem.tsx:139 +msgid "This post has been deleted." +msgstr "呢篇帖文已經刪除咗。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 +msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "呢篇帖文只會畀登入咗嘅用戶睇到,未登入嘅人唔會睇到。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "呢篇帖文將會喺討論串及動態中俾隱藏,呢個操作無法撤銷。" + +#: src/view/com/composer/Composer.tsx:364 +msgid "This post's author has disabled quote posts." +msgstr "呢篇帖文嘅發佈者已經停用引文。" + +#: src/view/com/profile/ProfileMenu.tsx:350 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "只有登入咗嘅用戶先可以睇到呢個帳號,登出咗嘅人就唔會睇到。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "呢個回覆會俾分類到你討論串底部嘅隱藏部分,並且會為你自己同其他人靜音後續回覆嘅通知。" + +#: src/screens/Signup/StepInfo/Policies.tsx:37 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "呢個服務冇提供服務條款或者私隱政策。" + +#: src/view/com/modals/ChangeHandle.tsx:432 +msgid "This should create a domain record at:" +msgstr "呢個應該會喺以下位置建立一個網域記錄:" + +#: src/view/com/profile/ProfileFollowers.tsx:96 +msgid "This user doesn't have any followers." +msgstr "呢個用戶無任何追蹤。" + +#: src/components/dms/MessagesListBlockedFooter.tsx:60 +msgid "This user has blocked you" +msgstr "呢個用戶鎖咗你" + +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "This user has blocked you. You cannot view their content." +msgstr "呢個用戶鎖咗你,你睇唔到佢哋嘅內容。" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "呢個用戶要求只向登入咗嘅用戶顯示佢哋嘅內容。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:58 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "呢個用戶包括喺你已經將佢封鎖嘅 <0>{0} 清單裏面。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:90 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "呢個用戶包括喺你已經將佢靜音嘅 <0>{0} 清單裏面。" + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "呢個用戶係呢度嘅新用戶,撳一下就可以睇到佢哋幾時加入嘅更多資訊。" + +#: src/view/com/profile/ProfileFollows.tsx:96 +msgid "This user isn't following anyone." +msgstr "呢個用戶冇追蹤任何人。" + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "噉樣會喺你啲靜音字裏面刪除「{0}」,你遲啲可以隨時加返佢。" + +#: src/view/com/util/AccountDropdownBtn.tsx:55 +msgid "This will remove @{0} from the quick access list." +msgstr "噉樣會喺快速存取清單裏面移除 @{0}。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "噉樣會刪除所有對你呢篇帖文嘅引文,同埋將佢換成一個佔位符。" + +#: src/view/screens/Settings/index.tsx:561 +msgid "Thread preferences" +msgstr "討論串設定" + +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 +msgid "Thread Preferences" +msgstr "討論串設定" + +#: src/view/screens/PreferencesThreads.tsx:114 +msgid "Threaded Mode" +msgstr "討論串模式" + +#: src/Navigation.tsx:303 +msgid "Threads Preferences" +msgstr "討論串設定" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "如果要停用電郵雙重驗證,請驗證你對電郵地址嘅存取權。" + +#: src/components/dms/ReportConversationPrompt.tsx:20 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "需要上報對話嘅話,請喺對話頁面裏面抽取其中一條去上報,咁樣我哋嘅管理員就知道件事嘅來龍去脈。" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 +msgid "To upload videos to Bluesky, you must first verify your email." +msgstr "如果要上載影片去 Bluesky ,你必須先驗證你嘅電郵。" + +#: src/components/ReportDialog/SelectLabelerView.tsx:32 +msgid "To whom would you like to send this report?" +msgstr "你想將呢份上報寄畀邊個?" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "今日" + +#: src/view/com/util/forms/DropdownButton.tsx:255 +msgid "Toggle dropdown" +msgstr "切換下拉式選單" + +#: src/screens/Moderation/index.tsx:346 +msgid "Toggle to enable or disable adult content" +msgstr "切換嚟啟用或者停用成人內容" + +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 +msgid "Top" +msgstr "TOP" + +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +msgid "Translate" +msgstr "翻譯" + +#: src/view/com/util/error/ErrorScreen.tsx:82 +msgctxt "action" +msgid "Try again" +msgstr "再試多次" + +#: src/screens/Onboarding/state.ts:102 +msgid "TV" +msgstr "TV" + +#: src/view/screens/Settings/index.tsx:712 +msgid "Two-factor authentication" +msgstr "雙重驗證" + +#: src/screens/Messages/components/MessageInput.tsx:141 +msgid "Type your message here" +msgstr "喺呢度輸入你嘅訊息" + +#: src/view/com/modals/ChangeHandle.tsx:415 +msgid "Type:" +msgstr "種類:" + +#: src/view/screens/ProfileList.tsx:594 +msgid "Un-block list" +msgstr "解除封鎖清單" + +#: src/view/screens/ProfileList.tsx:579 +msgid "Un-mute list" +msgstr "取消靜音清單" + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "連接唔到你嘅服務,請檢查你嘅互聯網連線。" + +#: src/screens/StarterPack/StarterPackScreen.tsx:648 +msgid "Unable to delete" +msgstr "刪除唔到" + +#: src/components/dms/MessagesListBlockedFooter.tsx:89 +#: src/components/dms/MessagesListBlockedFooter.tsx:96 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/dms/MessagesListBlockedFooter.tsx:111 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 +msgid "Unblock" +msgstr "解除封鎖" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 +msgctxt "action" +msgid "Unblock" +msgstr "解除封鎖" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Unblock account" +msgstr "解除封鎖帳戶" + +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 +msgid "Unblock Account" +msgstr "解除封鎖帳戶" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Unblock Account?" +msgstr "解除封鎖帳戶?" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Undo repost" +msgstr "取消轉發" + +#: src/view/com/profile/FollowButton.tsx:61 +msgctxt "action" +msgid "Unfollow" +msgstr "刪追" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 +msgid "Unfollow {0}" +msgstr "刪追 {0}" + +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 +msgid "Unfollow Account" +msgstr "刪追帳戶" + +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Unlike this feed" +msgstr "刪讚呢個動態" + +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "取消靜音" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "取消靜音" + +#: src/components/TagMenu/index.web.tsx:115 +msgid "Unmute {truncatedTag}" +msgstr "取消靜音 {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 +msgid "Unmute Account" +msgstr "取消靜音帳號" + +#: src/components/TagMenu/index.tsx:204 +msgid "Unmute all {displayTag} posts" +msgstr "取消對所有 {displayTag} 帖文的靜音" + +#: src/components/dms/ConvoMenu.tsx:176 +msgid "Unmute conversation" +msgstr "取消靜音對話" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +msgid "Unmute thread" +msgstr "取消靜音討論串" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Unmute video" +msgstr "取消靜音影片" + +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 +msgid "Unpin" +msgstr "取消固定" + +#: src/view/screens/ProfileFeed.tsx:293 +msgid "Unpin from home" +msgstr "喺首頁取消固定" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "喺個人檔案取消固定" + +#: src/view/screens/ProfileList.tsx:559 +msgid "Unpin moderation list" +msgstr "取消固定審核清單" + +#: src/view/screens/ProfileList.tsx:356 +msgid "Unpinned from your feeds" +msgstr "喺你嘅動態裏面取消固定" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 +msgid "Unsubscribe" +msgstr "取消訂閱" + +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 +msgid "Unsubscribe from list" +msgstr "取消訂閱清單" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +msgid "Unsubscribe from this labeler" +msgstr "取消訂閱呢個標記者" + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "已經喺清單裏面取消訂閱" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 +msgid "Unsupported video type: {mimeType}" +msgstr "唔支援嘅影片類型:{mimeType}" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "不受歡迎嘅色情內容" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "喺清單裏面更新 <0>{displayName}" + +#: src/view/com/modals/ChangeHandle.tsx:495 +msgid "Update to {handle}" +msgstr "更新到 {handle}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +msgid "Updating quote attachment failed" +msgstr "更新引用附上狀態失敗" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +msgid "Updating reply visibility failed" +msgstr "更新回覆可見度失敗" + +#: src/screens/Login/SetNewPasswordForm.tsx:180 +msgid "Updating..." +msgstr "更新緊..." + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Upload a photo instead" +msgstr "改為上載圖片" + +#: src/view/com/modals/ChangeHandle.tsx:441 +msgid "Upload a text file to:" +msgstr "上載文字檔案去:" + +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 +#: src/view/com/util/UserBanner.tsx:126 +msgid "Upload from Camera" +msgstr "喺相機上載" + +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 +msgid "Upload from Files" +msgstr "從檔案上載" + +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 +#: src/view/com/util/UserBanner.tsx:138 +msgid "Upload from Library" +msgstr "喺檔案庫上載" + +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "上載緊圖片..." + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "上載緊連結縮圖..." + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "上載緊影片..." + +#: src/view/com/modals/ChangeHandle.tsx:395 +msgid "Use a file on your server" +msgstr "喺你嘅伺服器上面用檔案" + +#: src/view/screens/AppPasswords.tsx:205 +msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." +msgstr "使用 App 密碼登入其他 Bluesky 用戶端,而唔需要完全存取你嘅帳戶或密碼。" + +#: src/view/com/modals/ChangeHandle.tsx:506 +msgid "Use bsky.social as hosting provider" +msgstr "用 bsky.social 作為 hosting 供應商" + +#: src/view/com/modals/ChangeHandle.tsx:505 +msgid "Use default provider" +msgstr "使用預設供應商" + +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 +msgid "Use in-app browser" +msgstr "使用 App 內瀏覽器" + +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 +msgid "Use my default browser" +msgstr "用我嘅預設瀏覽器" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "使用建議選項" + +#: src/view/com/modals/ChangeHandle.tsx:387 +msgid "Use the DNS panel" +msgstr "用 DNS 面板" + +#: src/view/com/modals/AddAppPasswords.tsx:206 +msgid "Use this to sign into the other app along with your handle." +msgstr "用呢個嚟登入另一個 App 同埋你嘅帳戶頭銜。" + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "使用者:" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 +msgid "User Blocked" +msgstr "用戶已經俾封鎖" + +#: src/lib/moderation/useModerationCauseDescription.ts:53 +msgid "User Blocked by \"{0}\"" +msgstr "用戶已經俾「{0}」封鎖" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "用戶已經俾清單封鎖" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +msgid "User Blocked by List" +msgstr "用戶已經俾清單封鎖" + +#: src/lib/moderation/useModerationCauseDescription.ts:71 +msgid "User Blocking You" +msgstr "用戶封鎖緊你" + +#: src/components/moderation/ModerationDetailsDialog.tsx:76 +msgid "User Blocks You" +msgstr "用戶封鎖緊你" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "{0} 嘅用戶清單" + +#: src/view/screens/ProfileList.tsx:890 +msgid "User list by <0/>" +msgstr "<0/> 嘅用戶清單" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 +msgid "User list by you" +msgstr "你嘅用戶清單" + +#: src/view/com/modals/CreateOrEditList.tsx:176 +msgid "User list created" +msgstr "建立咗用戶清單" + +#: src/view/com/modals/CreateOrEditList.tsx:162 +msgid "User list updated" +msgstr "更新咗用戶清單" + +#: src/view/screens/Lists.tsx:66 +msgid "User Lists" +msgstr "用戶清單" + +#: src/screens/Login/LoginForm.tsx:183 +msgid "Username or email address" +msgstr "用戶名或者電郵地址" + +#: src/view/screens/ProfileList.tsx:924 +msgid "Users" +msgstr "用戶" + +#: src/components/WhoCanReply.tsx:258 +msgid "users followed by <0>@{0}" +msgstr "俾 <0>@{0} 追蹤嘅用戶" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Users I follow" +msgstr "我追蹤嘅用戶" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 +msgid "Users in \"{0}\"" +msgstr "「{0}」中嘅用戶" + +#: src/components/LikesDialog.tsx:83 +msgid "Users that have liked this content or profile" +msgstr "讚呢個內容或者個人檔案嘅用戶" + +#: src/view/com/modals/ChangeHandle.tsx:423 +msgid "Value:" +msgstr "值:" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 +msgid "Verified email required" +msgstr "需要驗證電郵" + +#: src/view/com/modals/ChangeHandle.tsx:497 +msgid "Verify DNS Record" +msgstr "驗證 DNS 記錄" + +#: src/view/screens/Settings/index.tsx:937 +msgid "Verify email" +msgstr "驗證電郵" + +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "驗證電郵對話框" + +#: src/view/screens/Settings/index.tsx:962 +msgid "Verify my email" +msgstr "驗證我嘅電郵" + +#: src/view/screens/Settings/index.tsx:971 +msgid "Verify My Email" +msgstr "驗證我嘅電郵" + +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 +msgid "Verify New Email" +msgstr "驗證新電郵" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 +msgid "Verify now" +msgstr "而家驗證" + +#: src/view/com/modals/ChangeHandle.tsx:498 +msgid "Verify Text File" +msgstr "驗證文字檔案" + +#: src/components/dialogs/VerifyEmailDialog.tsx:71 +#: src/view/com/modals/VerifyEmail.tsx:111 +msgid "Verify Your Email" +msgstr "驗證你嘅電郵" + +#: src/view/screens/Settings/index.tsx:890 +msgid "Version {appVersion} {bundleInfo}" +msgstr "版本 {appVersion} {bundleInfo}" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +msgid "Video" +msgstr "影片" + +#: src/view/com/composer/state/video.ts:372 +msgid "Video failed to process" +msgstr "影片處理唔到" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 +msgid "Video Games" +msgstr "電子遊戲" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 +msgid "Video not found." +msgstr "搵唔到影片。" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 +msgid "Video settings" +msgstr "影片設定" + +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "影片上載咗" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +msgid "Video: {0}" +msgstr "影片:{0}" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 +msgid "Videos must be less than 60 seconds long" +msgstr "影片長度一定要少過60秒鐘" + +#: src/screens/Profile/Header/Shell.tsx:128 +msgid "View {0}'s avatar" +msgstr "睇下 {0} 嘅大頭相" + +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:273 +msgid "View {0}'s profile" +msgstr "睇下 {0} 嘅個人檔案" + +#: src/components/dms/MessagesListHeader.tsx:160 +msgid "View {displayName}'s profile" +msgstr "睇下 {displayName} 嘅個人檔案" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "用標籤 {displayTag} 睇返 @{authorHandle} 嘅所有帖文" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "用標籤 {displayTag} 睇返所有帖文" + +#: src/components/ProfileHoverCard/index.web.tsx:433 +msgid "View blocked user's profile" +msgstr "睇下俾封鎖用戶嘅個人檔案" + +#: src/view/screens/Settings/ExportCarDialog.tsx:96 +msgid "View blogpost for more details" +msgstr "睇下網誌文章嚟了解更多詳情" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "睇下調試條目" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:139 +msgid "View details" +msgstr "睇下詳情" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:134 +msgid "View details for reporting a copyright violation" +msgstr "睇下報告侵犯版權嘅詳情" + +#: src/view/com/posts/FeedSlice.tsx:136 +msgid "View full thread" +msgstr "睇下完整嘅討論串" + +#: src/components/moderation/LabelsOnMe.tsx:47 +msgid "View information about these labels" +msgstr "睇下有關呢啲標籤嘅資料" + +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 +msgid "View profile" +msgstr "睇下個人檔案" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:127 +msgid "View the avatar" +msgstr "睇下大頭相" + +#: src/components/LabelingServiceCard/index.tsx:162 +msgid "View the labeling service provided by @{0}" +msgstr "睇下 @{0} 提供嘅標籤服務" + +#: src/view/screens/ProfileFeed.tsx:588 +msgid "View users who like this feed" +msgstr "睇下讚呢個動態嘅用戶" + +#: src/screens/Moderation/index.tsx:275 +msgid "View your blocked accounts" +msgstr "睇下你封鎖咗嘅帳戶" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 +msgid "View your feeds and explore more" +msgstr "睇下你嘅動態同埋探索更多" + +#: src/screens/Moderation/index.tsx:245 +msgid "View your moderation lists" +msgstr "睇下你嘅審核清單" + +#: src/screens/Moderation/index.tsx:260 +msgid "View your muted accounts" +msgstr "睇下你嘅靜音帳戶" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Visit Site" +msgstr "去網站" + +#: src/components/moderation/LabelPreference.tsx:135 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "警告" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "警告內容" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "警告內容同埋喺動態裏面篩選" + +#: src/screens/Hashtag.tsx:218 +msgid "We couldn't find any results for that hashtag." +msgstr "我哋搵唔到嗰個標籤嘅任何結果。" + +#: src/screens/Messages/Conversation.tsx:110 +msgid "We couldn't load this conversation" +msgstr "我哋載入唔到呢個對話" + +#: src/screens/SignupQueued.tsx:139 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "我哋估計仲需要 {estimatedTime} 先可以準備好你嘅帳號。" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "我哋已經傳送咗另一封驗證電郵去 <0>{0}。" + +#: src/screens/Onboarding/StepFinished.tsx:229 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "我哋希望你有個美好嘅時光。記住,Bluesky 係:" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "我哋用完你嘅追蹤嘅帖文。呢個係 <0/> 嘅最新消息。" + +#: src/view/com/composer/state/video.ts:431 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "我哋決定唔到你係咪可以上載影片,請再試多次。" + +#: src/components/dialogs/BirthDateSettings.tsx:51 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "我哋載入唔到你嘅出生日期偏好設定,請再試多次。" + +#: src/screens/Moderation/index.tsx:420 +msgid "We were unable to load your configured labelers at this time." +msgstr "我哋宜家加載唔到你設定咗嘅標籤者。" + +#: src/screens/Onboarding/StepInterests/index.tsx:129 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "連接唔到,請再試一次繼續設定你嘅帳戶。如果佢繼續失敗,你可以略過呢個流程。" + +#: src/screens/SignupQueued.tsx:143 +msgid "We will let you know when your account is ready." +msgstr "我哋會喺你嘅帳戶準備好嗰陣通知你。" + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "我哋會用呢個嚟幫你自訂你嘅體驗。" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 +msgid "We're having network issues, try again" +msgstr "我哋遇到網絡問題,試多一次" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "我哋推出咗一個新嘅主題字體,同埋可調整嘅字體大細。" + +#: src/screens/Signup/index.tsx:94 +msgid "We're so excited to have you join us!" +msgstr "我哋好興奮你可以加入 Bluesky!" + +#: src/view/screens/ProfileList.tsx:113 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "對唔住,但係我哋用唔到呢個清單。如果呢個情況持續,請聯絡清單創建者 @{handleOrDid}。" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "對唔住,我哋宜家載入唔到你啲靜音字詞。唔該再試多次。" + +#: src/view/screens/Search/Search.tsx:212 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "對唔住,但係你嘅搜尋完成唔到。請喺幾分鐘之後再試。" + +#: src/view/com/composer/Composer.tsx:361 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "對唔住!你回覆緊嘅帖文已經刪除咗。" + +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "對唔住!我哋搵唔到你搵緊嘅頁面。" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "對唔住!你只可以訂閱20個標籤者,而你已經達到咗20個嘅上限。" + +#: src/screens/Deactivated.tsx:128 +msgid "Welcome back!" +msgstr "歡迎返嚟!" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "歡迎你,朋友!" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "你有咩興趣?" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:42 +msgid "What do you want to call your starter pack?" +msgstr "你想點叫你嘅新手包?" + +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 +msgid "What's up?" +msgstr "有咩新鮮事?" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 +msgid "Which languages are used in this post?" +msgstr "呢篇帖文用咗邊啲語言?" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "你想喺你嘅算法動態裏面睇到邊啲語言?" + +#: src/components/WhoCanReply.tsx:179 +msgid "Who can interact with this post?" +msgstr "邊個可以同呢篇帖文互動?" + +#: src/components/WhoCanReply.tsx:87 +msgid "Who can reply" +msgstr "邊個可以回覆" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:183 +msgid "Whoops!" +msgstr "嘩!" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:44 +msgid "Why should this content be reviewed?" +msgstr "點解要審查呢個內容?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Why should this feed be reviewed?" +msgstr "點解要審查呢個動態?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Why should this list be reviewed?" +msgstr "點解要審查呢個清單?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:63 +msgid "Why should this message be reviewed?" +msgstr "點解要審查呢個訊息?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Why should this post be reviewed?" +msgstr "點解要審查呢篇帖文?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Why should this starter pack be reviewed?" +msgstr "點解要審查呢個新手包?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Why should this user be reviewed?" +msgstr "點解要審查呢個用戶?" + +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 +msgid "Write a message" +msgstr "寫個訊息" + +#: src/view/com/composer/Composer.tsx:630 +msgid "Write post" +msgstr "寫個帖文" + +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 +msgid "Write your reply" +msgstr "寫你嘅回覆" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 +msgid "Writers" +msgstr "作家" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 +msgid "Yes" +msgstr "啟用" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "係,停用" + +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Yes, delete this starter pack" +msgstr "係,刪除呢個新手包" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +msgid "Yes, detach" +msgstr "係,分離" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +msgid "Yes, hide" +msgstr "係,隱藏" + +#: src/screens/Deactivated.tsx:150 +msgid "Yes, reactivate my account" +msgstr "係,重新啟動我嘅帳戶" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "尋日" + +#: src/screens/List/ListHiddenScreen.tsx:140 +msgid "you" +msgstr "你" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "你" + +#: src/screens/SignupQueued.tsx:136 +msgid "You are in line." +msgstr "你排緊隊。" + +#: src/view/com/composer/state/video.ts:424 +msgid "You are not allowed to upload videos." +msgstr "你唔可以上載影片。" + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "You are not following anyone." +msgstr "你冇追蹤任何用戶。" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "你遲啲可以喺你嘅外觀設定裏面調整呢啲。" + +#: src/view/com/posts/FollowingEmptyState.tsx:63 +#: src/view/com/posts/FollowingEndOfFeed.tsx:64 +msgid "You can also discover new Custom Feeds to follow." +msgstr "你亦可以發現新嘅自訂動態嚟追蹤。" + +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "你亦可以暫時停用你嘅帳戶,同埋隨時重新啟動佢。" + +#: src/screens/Messages/Settings.tsx:105 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "無論你揀邊個設定,你都可以繼續進行緊嘅對話。" + +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +msgid "You can now sign in with your new password." +msgstr "你而家可以用你嘅新密碼登入。" + +#: src/screens/Deactivated.tsx:136 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "你可以重新啟動你嘅帳戶嚟繼續登入,你嘅個人檔案同帖文會畀其他用戶睇到。" + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "You do not have any followers." +msgstr "你冇任何追隨者。" + +#: src/screens/Profile/KnownFollowers.tsx:100 +msgid "You don't follow any users who follow @{name}." +msgstr "你唔會追蹤任何追蹤 @{name} 嘅用戶。" + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "你仲未有任何邀請碼!當你上咗 Bluesky 耐咗少少之後,我哋會送啲畀你。" + +#: src/view/screens/SavedFeeds.tsx:144 +msgid "You don't have any pinned feeds." +msgstr "你冇任何固定嘅動態。" + +#: src/view/screens/SavedFeeds.tsx:184 +msgid "You don't have any saved feeds." +msgstr "你冇任何儲存咗嘅動態。" + +#: src/view/com/post-thread/PostThread.tsx:214 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "你已經封鎖咗作者,或者你已經俾作者封鎖咗。" + +#: src/components/dms/MessagesListBlockedFooter.tsx:58 +msgid "You have blocked this user" +msgstr "你已經封鎖咗呢個用戶" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "You have blocked this user. You cannot view their content." +msgstr "你已經封鎖咗呢個用戶,你睇唔到佢哋嘅內容。" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "你輸入咗個無效嘅驗證碼。應該係 XXXXX-XXXXX 嘅樣。" + +#: src/lib/moderation/useModerationCauseDescription.ts:114 +msgid "You have hidden this post" +msgstr "你隱藏咗呢篇帖文" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +msgid "You have hidden this post." +msgstr "你隱藏咗呢篇帖文。" + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 +msgid "You have muted this account." +msgstr "你已經將呢個帳戶靜音咗。" + +#: src/lib/moderation/useModerationCauseDescription.ts:91 +msgid "You have muted this user" +msgstr "你已經將呢個用戶靜音" + +#: src/screens/Messages/ChatList.tsx:223 +msgid "You have no conversations yet. Start one!" +msgstr "你仲未有對話,開始一個!" + +#: src/view/com/feeds/ProfileFeedgens.tsx:138 +msgid "You have no feeds." +msgstr "你仲冇任何動態。" + +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 +msgid "You have no lists." +msgstr "你仲冇清單。" + +#: src/view/screens/ModerationBlockedAccounts.tsx:133 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "你仲未封鎖任何帳號。如果要封鎖帳號,請去佢個人檔案,並喺佢帳號上面嘅選單裏面揀「封鎖帳號」。" + +#: src/view/screens/AppPasswords.tsx:96 +msgid "You have not created any app passwords yet. You can create one by pressing the button below." +msgstr "你仲未建立任何 App 密碼。你可以撳下面個掣嚟建立一個。" + +#: src/view/screens/ModerationMutedAccounts.tsx:132 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "你仲未靜音任何帳號。如果要靜音帳號,請去佢個人檔案,並喺佢帳號上面嘅選單裏面揀「靜音帳號」" + +#: src/components/Lists.tsx:52 +msgid "You have reached the end" +msgstr "你已經去到盡頭" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "你暫時已經達到上載影片嘅上限,請遲啲再試。" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 +msgid "You haven't created a starter pack yet!" +msgstr "你仲未建立新手包!" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "你仲未將任何字詞或者標籤靜音" + +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "You hid this reply." +msgstr "你隱藏咗呢個回覆。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "如果你覺得呢啲標籤放錯咗,而且標記並唔係由你新增,你可以上訴。" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "如果你覺得呢啲標籤放錯咗,你可以上訴。" + +#: src/screens/StarterPack/Wizard/State.tsx:79 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" +msgstr "你只可以加到 {STARTER_PACK_MAX_SIZE} 個個人檔案" + +#: src/screens/StarterPack/Wizard/State.tsx:97 +msgid "You may only add up to 3 feeds" +msgstr "你最多只可以加3個動態" + +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "你最多只可以揀4張圖片" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 +msgid "You must be 13 years of age or older to sign up." +msgstr "你一定要年滿13歲先可以建立帳戶。" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "你必須追蹤至少七個人先可以產生新手包。" + +#: src/components/StarterPack/QrCodeDialog.tsx:60 +msgid "You must grant access to your photo library to save a QR code" +msgstr "你必須授予你嘅相簿權限先可以儲存 QR code" + +#: src/components/StarterPack/ShareDialog.tsx:69 +msgid "You must grant access to your photo library to save the image." +msgstr "你必須授予你嘅相簿權限先可以儲存圖片。" + +#: src/components/ReportDialog/SubmitView.tsx:210 +msgid "You must select at least one labeler for a report" +msgstr "你必須選擇至少一個標記者嚟提交上報" + +#: src/screens/Deactivated.tsx:131 +msgid "You previously deactivated @{0}." +msgstr "你之前停用咗 @{0}。" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +msgid "You will no longer receive notifications for this thread" +msgstr "你唔會再收到呢個討論串嘅通知" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +msgid "You will now receive notifications for this thread" +msgstr "你而家會收到呢個討論串嘅通知" + +#: src/screens/Login/SetNewPasswordForm.tsx:98 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "你會收到一封包含「驗證碼」嘅電郵。請喺呢度輸入呢個驗證碼,然後輸入你嘅新密碼。" + +#: src/screens/Messages/components/ChatListItem.tsx:124 +msgid "You: {0}" +msgstr "你:{0}" + +#: src/screens/Messages/components/ChatListItem.tsx:153 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "你:{defaultEmbeddedContentMessage}" + +#: src/screens/Messages/components/ChatListItem.tsx:146 +msgid "You: {short}" +msgstr "你:{short}" + +#: src/screens/Signup/index.tsx:107 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "建立完帳戶之後,你就會追蹤建議嘅使用者同動態!" + +#: src/screens/Signup/index.tsx:112 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "建立完帳戶之後,你就會追蹤建議嘅使用者!" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 +msgid "You'll follow these people and {0} others" +msgstr "你會追蹤呢啲人同另外 {0} 人" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "You'll follow these people right away" +msgstr "你會即刻追蹤呢啲人" + +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "你會喺 <0>{0} 收到一封電郵嚟驗證係你。" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "你會緊貼呢啲動態" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 +msgid "You're in line" +msgstr "你排緊隊" + +#: src/screens/Deactivated.tsx:89 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." +msgstr "你用咗個 App 密碼登入咗。請用你嘅主要密碼登入嚟繼續停用你嘅帳戶。" + +#: src/screens/Onboarding/StepFinished.tsx:226 +msgid "You're ready to go!" +msgstr "你準備好出發喇!" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "You've chosen to hide a word or tag within this post." +msgstr "你揀咗喺呢篇帖文裏面隱藏字詞或者標籤。" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "你已經去到你嘅動態嘅最後喇!搵多啲帳戶嚟追蹤。" + +#: src/view/com/composer/state/video.ts:435 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "你已經達到每日上載影片嘅上限(總計影片大小過大)" + +#: src/view/com/composer/state/video.ts:439 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "你已經達到每日上載影片嘅上限(影片數量過多)" + +#: src/screens/Signup/index.tsx:140 +msgid "Your account" +msgstr "你個帳戶" + +#: src/view/com/modals/DeleteAccount.tsx:88 +msgid "Your account has been deleted" +msgstr "你個帳戶已經刪除咗" + +#: src/view/com/composer/state/video.ts:443 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "你嘅帳戶仲未夠上載影片。請遲啲再試。" + +#: src/view/screens/Settings/ExportCarDialog.tsx:64 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "你嘅帳戶存儲庫包含所有公開資料記錄,可以以 \"CAR\" 檔案形式下載。呢個檔案唔包括媒體嵌入,例如圖片或者你嘅私人資料,呢啲資料必須單獨擷取。" + +#: src/screens/Signup/StepInfo/index.tsx:211 +msgid "Your birth date" +msgstr "你嘅出生日期" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "你個瀏覽器唔支援呢個影片格式,請試下用唔同嘅瀏覽器。" + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "你嘅聊天室已經停用咗" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "你嘅揀會儲存,但係遲啲可以喺設定裏面更改。" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:108 +#: src/view/com/modals/ChangePassword.tsx:55 +msgid "Your email appears to be invalid." +msgstr "你嘅電郵似乎無效。" + +#: src/view/com/modals/ChangeEmail.tsx:120 +msgid "Your email has been updated but not verified. As a next step, please verify your new email." +msgstr "你嘅電郵已經更新咗,但係未驗證。下一步,請驗證你嘅新電郵。" + +#: src/view/com/modals/VerifyEmail.tsx:122 +msgid "Your email has not yet been verified. This is an important security step which we recommend." +msgstr "你嘅電郵仲未驗證。呢個係我哋建議嘅重要安全步驟。" + +#: src/state/shell/progress-guide.tsx:156 +msgid "Your first like!" +msgstr "你嘅第一個讚!" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "你嘅「Following」動態係空嘅!追蹤更多用戶嚟睇下發生緊啲咩事。" + +#: src/screens/Signup/StepHandle.tsx:125 +msgid "Your full handle will be" +msgstr "你嘅完整帳戶頭銜會係" + +#: src/view/com/modals/ChangeHandle.tsx:258 +msgid "Your full handle will be <0>@{0}" +msgstr "你嘅完整帳戶頭銜會係 <0>@{0}" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "你設定咗嘅靜音字" + +#: src/view/com/modals/ChangePassword.tsx:158 +msgid "Your password has been changed successfully!" +msgstr "你個密碼已經成功改咗!" + +#: src/view/com/composer/Composer.tsx:405 +msgid "Your post has been published" +msgstr "你嘅帖文已經發佈咗" + +#: src/screens/Onboarding/StepFinished.tsx:241 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "你嘅帖文、讚同封鎖都係公開嘅。靜音係私人嘅。" + +#: src/view/screens/Settings/index.tsx:119 +msgid "Your profile" +msgstr "你嘅個人檔案" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "你嘅個人檔案、帖文、動態同埋清單唔會再畀其他 Bluesky 用戶睇到。你可以隨時登入重新啟動你嘅帳戶。" + +#: src/view/com/composer/Composer.tsx:404 +msgid "Your reply has been published" +msgstr "你嘅回覆已經發佈咗" + +#: src/components/dms/ReportDialog.tsx:157 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "你嘅上報會傳送去 Bluesky 審核服務" + +#: src/screens/Signup/index.tsx:142 +msgid "Your user handle" +msgstr "你嘅帳戶頭銜" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index f9b760f378..0418c71e70 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: zh-TW for bluesky-social-app\n" "POT-Creation-Date: \n" "Report-Msgid-Bugs-To: Kuwa Lee , Frudrax Cheng \n" -"PO-Revision-Date: 2024-09-13 09:16+0800\n" +"PO-Revision-Date: 2024-10-17 17:45+0800\n" "Last-Translator: \n" "Language-Team: Frudrax Cheng , Kuwa Lee , noeFly, snowleo208, Kisaragi Hiu, Yi-Jyun Pan, toto6038, cirx1e\n" "Language: zh_TW\n" @@ -13,7 +13,7 @@ msgstr "" "X-Generator: @lingui/cli\n" "Plural-Forms: \n" -#: src/screens/Messages/List/ChatListItem.tsx:120 +#: src/screens/Messages/components/ChatListItem.tsx:130 msgid "(contains embedded content)" msgstr "(含有嵌入內容)" @@ -22,7 +22,7 @@ msgid "(no email)" msgstr "(沒有電子郵件)" #: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:323 +#: src/view/com/notifications/FeedItem.tsx:327 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 個人} other {其他 {formattedCount} 個人}}" @@ -50,7 +50,7 @@ msgstr "{0, plural, one {# 分} other {# 分}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# 月} other {# 月}}" -#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# 個轉貼} other {# 個轉貼}}" @@ -68,15 +68,15 @@ msgstr "{0, plural, one {個跟隨者} other {個跟隨者}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {個跟隨中} other {個跟隨中}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:312 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:300 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {喜歡(# 個喜歡)} other {喜歡(# 個喜歡)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:439 +#: src/view/com/post-thread/PostThreadItem.tsx:434 msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜歡} other {喜歡}}" -#: src/components/FeedCard.tsx:210 +#: src/components/FeedCard.tsx:213 #: src/view/com/feeds/FeedSourceCard.tsx:300 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural,one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" @@ -85,19 +85,19 @@ msgstr "{0, plural,one {# 個用戶表示喜歡} other {# 個用戶表示喜歡} msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {則貼文} other {則貼文}}" -#: src/view/com/post-thread/PostThreadItem.tsx:419 +#: src/view/com/post-thread/PostThreadItem.tsx:418 msgid "{0, plural, one {quote} other {quotes}}" msgstr "{0, plural, one {引用} other {引用}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:269 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:257 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {回覆(# 個回覆)} other {回覆(# 個回覆)}}" -#: src/view/com/post-thread/PostThreadItem.tsx:397 +#: src/view/com/post-thread/PostThreadItem.tsx:400 msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {轉貼} other {轉貼}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:308 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:296 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}" @@ -111,19 +111,19 @@ msgstr "{0} <0>在<1>標籤中" msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>在<1>文字和標籤中" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 msgid "{0} joined this week" msgstr "本週加入了 {0} 人" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:637 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 msgid "{0} of {1}" msgstr "第 {0} 個(共 {1} 個)" -#: src/screens/StarterPack/StarterPackScreen.tsx:467 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 msgid "{0} people have used this starter pack!" -msgstr "{0} 人已使用此入門包!" +msgstr "{0} 人已使用此新手包!" -#: src/view/com/util/UserAvatar.tsx:425 +#: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" msgstr "「{0}」的頭像" @@ -133,41 +133,41 @@ msgstr "「{0}」最喜歡的動態和人物 - 加入我的行列吧!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "「{0}」的入門包" +msgstr "「{0}」的新手包" #. How many days have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:158 msgid "{0}d" -msgstr "{0}天" +msgstr "{0}天前" #. How many hours have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:148 msgid "{0}h" -msgstr "{0}時" +msgstr "{0}小時前" #. How many minutes have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:138 msgid "{0}m" -msgstr "{0}分" +msgstr "{0}分鐘前" #. How many months have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:169 msgid "{0}mo" -msgstr "{0}月" +msgstr "{0}個月前" #. How many seconds have passed, displayed in a narrow form #: src/lib/hooks/useTimeAgo.ts:128 msgid "{0}s" -msgstr "{0}秒" +msgstr "{0}秒前" -#: src/components/LabelingServiceCard/index.tsx:71 +#: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{count, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" #: src/lib/generate-starterpack.ts:108 -#: src/screens/StarterPack/Wizard/index.tsx:174 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "{displayName}'s Starter Pack" -msgstr "「{displayName}」的入門包" +msgstr "「{displayName}」的新手包" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -177,22 +177,22 @@ msgstr "{estimatedTimeHrs, plural, one {時} other {時}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 個跟隨中" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:405 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:384 msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:590 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:297 +#: src/view/screens/ProfileFeed.tsx:591 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" -#: src/view/shell/Drawer.tsx:466 +#: src/view/shell/Drawer.tsx:477 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 個未讀通知" @@ -202,47 +202,47 @@ msgstr "「{profileName}」在 {0} 前加入了 Bluesky" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "「{profileName}」在 {0} 前使用入門包加入了 Bluesky" +msgstr "「{profileName}」在 {0} 前使用新手包加入了 Bluesky" -#: src/screens/StarterPack/Wizard/index.tsx:466 +#: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}、<1>{1}和{2, plural, one {其他 # } other {其他 # }}人已在您的入門包中" +msgstr "<0>{0}、<1>{1}和{2, plural, one {其他 # } other {其他 # }}人已在您的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:519 +#: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}、<1>{1}和{2, plural, one {其他 # } other {其他 # }}個動態源已在您的入門包中" +msgstr "<0>{0}、<1>{1}和{2, plural, one {其他 # } other {其他 # }}個動態源已在您的新手包中" -#: src/view/shell/Drawer.tsx:109 +#: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {個跟隨者} other {個跟隨者}}" -#: src/view/shell/Drawer.tsx:124 +#: src/view/shell/Drawer.tsx:108 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" -#: src/screens/StarterPack/Wizard/index.tsx:507 +#: src/screens/StarterPack/Wizard/index.tsx:516 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "<0>{0} 和<1> <2>{1} 已在您的入門包中" +msgstr "<0>{0} 和<1> <2>{1} 已在您的新手包中" -#: src/screens/StarterPack/Wizard/index.tsx:500 +#: src/screens/StarterPack/Wizard/index.tsx:509 msgid "<0>{0} is included in your starter pack" -msgstr "<0>{0} 已在您的入門包中" +msgstr "<0>{0} 已在您的新手包中" #: src/components/WhoCanReply.tsx:274 msgid "<0>{0} members" msgstr "<0>{0} 個成員" -#: src/view/com/modals/SelfLabel.tsx:135 -msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "<0>不適用。 此警告只適用於附帶媒體的貼文。" +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} {time}" -#: src/screens/StarterPack/Wizard/index.tsx:457 +#: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "<0>您和<1> <2>{0} 已在您的入門包中" +msgstr "<0>您和<1> <2>{0} 已在您的新手包中" -#: src/screens/Profile/Header/Handle.tsx:50 +#: src/screens/Profile/Header/Handle.tsx:53 msgid "⚠Invalid Handle" msgstr "⚠無效的帳號代碼" @@ -250,7 +250,7 @@ msgstr "⚠無效的帳號代碼" msgid "24 hours" msgstr "24 小時" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:250 msgid "2FA Confirmation" msgstr "雙重驗證" @@ -262,8 +262,8 @@ msgstr "30 天" msgid "7 days" msgstr "7 天" -#: src/view/com/util/ViewHeader.tsx:92 -#: src/view/screens/Search/Search.tsx:684 +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:882 msgid "Access navigation links and settings" msgstr "存取導覽連結和設定" @@ -271,35 +271,34 @@ msgstr "存取導覽連結和設定" msgid "Access profile and other navigation links" msgstr "存取個人檔案和其他導覽連結" -#: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:463 +#: src/view/screens/Settings/index.tsx:464 msgid "Accessibility" msgstr "無障礙" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Accessibility settings" msgstr "無障礙設定" -#: src/Navigation.tsx:318 -#: src/view/screens/AccessibilitySettings.tsx:73 +#: src/Navigation.tsx:317 +#: src/view/screens/AccessibilitySettings.tsx:71 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/screens/Login/LoginForm.tsx:179 -#: src/view/screens/Settings/index.tsx:315 -#: src/view/screens/Settings/index.tsx:718 +#: src/screens/Login/LoginForm.tsx:176 +#: src/view/screens/Settings/index.tsx:316 +#: src/view/screens/Settings/index.tsx:719 msgid "Account" msgstr "帳號" -#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:132 msgid "Account blocked" msgstr "已封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:158 +#: src/view/com/profile/ProfileMenu.tsx:145 msgid "Account followed" msgstr "已跟隨帳號" -#: src/view/com/profile/ProfileMenu.tsx:118 +#: src/view/com/profile/ProfileMenu.tsx:108 msgid "Account muted" msgstr "已靜音帳號" @@ -320,65 +319,67 @@ msgstr "帳號設定" msgid "Account removed from quick access" msgstr "已從快速存取中移除帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:135 -#: src/view/com/profile/ProfileMenu.tsx:133 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:127 +#: src/view/com/profile/ProfileMenu.tsx:122 msgid "Account unblocked" msgstr "已解除封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:171 +#: src/view/com/profile/ProfileMenu.tsx:157 msgid "Account unfollowed" msgstr "已取消跟隨帳號" -#: src/view/com/profile/ProfileMenu.tsx:107 +#: src/view/com/profile/ProfileMenu.tsx:98 msgid "Account unmuted" msgstr "已取消靜音帳號" #: src/components/dialogs/MutedWords.tsx:328 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 -#: src/view/screens/ProfileList.tsx:937 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 msgid "Add" msgstr "新增" -#: src/screens/StarterPack/Wizard/index.tsx:568 +#: src/screens/StarterPack/Wizard/index.tsx:577 msgid "Add {0} more to continue" msgstr "再新增至少 {0} 個以繼續" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "新增 {displayName} 至入門包" +msgstr "新增 {displayName} 至新手包" -#: src/view/com/modals/SelfLabel.tsx:57 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 msgid "Add a content warning" msgstr "新增內容警告" -#: src/view/screens/ProfileList.tsx:927 +#: src/view/screens/ProfileList.tsx:930 msgid "Add a user to this list" msgstr "將用戶新增至此列表" -#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/components/dialogs/SwitchAccount.tsx:55 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:401 -#: src/view/screens/Settings/index.tsx:410 +#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:411 msgid "Add account" msgstr "新增帳號" -#: src/view/com/composer/GifAltText.tsx:69 -#: src/view/com/composer/GifAltText.tsx:135 -#: src/view/com/composer/GifAltText.tsx:175 -#: src/view/com/composer/photos/Gallery.tsx:120 -#: src/view/com/composer/photos/Gallery.tsx:187 -#: src/view/com/modals/AltImage.tsx:118 +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:207 +#: src/view/com/composer/photos/Gallery.tsx:166 +#: src/view/com/composer/photos/Gallery.tsx:213 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 msgid "Add alt text" msgstr "新增替代文字" -#: src/view/com/composer/videos/SubtitleDialog.tsx:109 +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 msgid "Add alt text (optional)" msgstr "新增替代文字(可選)" -#: src/view/screens/AppPasswords.tsx:105 -#: src/view/screens/AppPasswords.tsx:147 -#: src/view/screens/AppPasswords.tsx:160 +#: src/view/screens/AppPasswords.tsx:111 +#: src/view/screens/AppPasswords.tsx:153 +#: src/view/screens/AppPasswords.tsx:166 msgid "Add App Password" msgstr "新增應用程式專用密碼" @@ -394,24 +395,24 @@ msgstr "新增靜音文字及標籤" msgid "Add recommended feeds" msgstr "新增推薦的動態源" -#: src/screens/StarterPack/Wizard/index.tsx:488 +#: src/screens/StarterPack/Wizard/index.tsx:497 msgid "Add some feeds to your starter pack!" -msgstr "新增一些動態源至您的入門包!" +msgstr "新增一些動態源至您的新手包!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" msgstr "新增預設的「Following」動態源,它只會顯示您跟隨的人" -#: src/view/com/modals/ChangeHandle.tsx:410 +#: src/view/com/modals/ChangeHandle.tsx:403 msgid "Add the following DNS record to your domain:" msgstr "將以下 DNS 記錄新增到您的網域:" -#: src/components/FeedCard.tsx:293 +#: src/components/FeedCard.tsx:296 msgid "Add this feed to your feeds" msgstr "將此新增至您的動態源" -#: src/view/com/profile/ProfileMenu.tsx:267 -#: src/view/com/profile/ProfileMenu.tsx:270 +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 msgid "Add to Lists" msgstr "新增至列表" @@ -420,7 +421,7 @@ msgid "Add to my feeds" msgstr "加入到我的動態源" #: src/view/com/modals/ListAddRemoveUsers.tsx:192 -#: src/view/com/modals/UserAddRemoveLists.tsx:156 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 msgid "Added to list" msgstr "新增至列表" @@ -428,22 +429,28 @@ msgstr "新增至列表" msgid "Added to my feeds" msgstr "加入到我的動態源" +#: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:144 -#: src/view/com/modals/SelfLabel.tsx:76 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 msgid "Adult Content" msgstr "成人內容" -#: src/screens/Moderation/index.tsx:365 +#: src/screens/Moderation/index.tsx:366 msgid "Adult content can only be enabled via the Web at <0>bsky.app." msgstr "成人內容只能透過網頁版 (<0>bsky.app) 啟用。" -#: src/components/moderation/LabelPreference.tsx:242 +#: src/components/moderation/LabelPreference.tsx:241 msgid "Adult content is disabled." msgstr "成人內容已停用。" -#: src/screens/Moderation/index.tsx:409 -#: src/view/screens/Settings/index.tsx:652 +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:194 +msgid "Adult Content labels" +msgstr "成人內容標記" + +#: src/screens/Moderation/index.tsx:410 +#: src/view/screens/Settings/index.tsx:653 msgid "Advanced" msgstr "進階設定" @@ -451,11 +458,11 @@ msgstr "進階設定" msgid "Algorithm training complete!" msgstr "演算法訓練完成!" -#: src/screens/StarterPack/StarterPackScreen.tsx:370 +#: src/screens/StarterPack/StarterPackScreen.tsx:381 msgid "All accounts have been followed!" msgstr "已跟隨所有帳號!" -#: src/view/screens/Feeds.tsx:733 +#: src/view/screens/Feeds.tsx:735 msgid "All the feeds you've saved, right in one place." msgstr "以下是您儲存的動態源。" @@ -464,75 +471,84 @@ msgstr "以下是您儲存的動態源。" msgid "Allow access to your direct messages" msgstr "允許存取您的私人訊息" -#: src/screens/Messages/Settings.tsx:62 -#: src/screens/Messages/Settings.tsx:65 +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "允許這些人向您發起對話:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 msgid "Allow replies from:" msgstr "允許這些人回覆您的貼文:" -#: src/view/screens/AppPasswords.tsx:266 +#: src/view/screens/AppPasswords.tsx:272 msgid "Allows access to direct messages" msgstr "允許存取私人訊息" -#: src/screens/Login/ForgotPasswordForm.tsx:177 +#: src/screens/Login/ForgotPasswordForm.tsx:171 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" msgstr "已經有重設碼了?" -#: src/screens/Login/ChooseAccountForm.tsx:49 +#: src/screens/Login/ChooseAccountForm.tsx:43 msgid "Already signed in as @{0}" msgstr "已以 @{0} 身份登入" -#: src/view/com/composer/GifAltText.tsx:93 -#: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:177 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:184 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "ALT" msgstr "替代文字" -#: src/view/com/composer/GifAltText.tsx:144 +#: src/view/com/composer/GifAltText.tsx:154 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118 #: src/view/com/composer/videos/SubtitleDialog.tsx:56 -#: src/view/com/composer/videos/SubtitleDialog.tsx:104 -#: src/view/com/composer/videos/SubtitleDialog.tsx:108 -#: src/view/com/modals/EditImage.tsx:316 -#: src/view/screens/AccessibilitySettings.tsx:87 +#: src/view/com/composer/videos/SubtitleDialog.tsx:102 +#: src/view/com/composer/videos/SubtitleDialog.tsx:106 +#: src/view/screens/AccessibilitySettings.tsx:85 msgid "Alt text" msgstr "替代文字" -#: src/view/com/util/post-embeds/GifEmbed.tsx:182 +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 msgid "Alt Text" msgstr "替代文字" -#: src/view/com/composer/photos/Gallery.tsx:224 +#: src/view/com/composer/photos/Gallery.tsx:252 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." msgstr "替代文字可為盲人和視障人士描述圖片,並有助於為每個人提供背景資訊。" +#: src/view/com/composer/GifAltText.tsx:179 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 +msgid "Alt text will be truncated. Limit: {0} characters." +msgstr "替代文字太長將要被截斷,字數限制:{0}個字元。" + #: src/view/com/modals/VerifyEmail.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." -msgstr "一封電子郵件已發送至 {0}。請查閱郵件並在下方輸入驗證碼。" +msgstr "電子郵件已發送至 {0}。請查閱郵件並在下方輸入驗證碼。" #: src/view/com/modals/ChangeEmail.tsx:114 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." -msgstr "一封電子郵件已發送至先前填寫的電子郵件地址 {0}。請查閱郵件並在下方輸入驗證碼。" +msgstr "電子郵件已發送至先前填寫的電子郵件地址 {0}。請查閱郵件並在下方輸入驗證碼。" -#: src/components/dialogs/GifSelect.tsx:254 +#: src/components/dialogs/VerifyEmailDialog.tsx:77 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "電子郵件已發送!請查閱郵件並在下方輸入驗證碼。" + +#: src/components/dialogs/GifSelect.tsx:266 msgid "An error has occurred" msgstr "發生錯誤" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:413 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 msgid "An error occurred" msgstr "發生錯誤" -#: src/state/queries/video/video.ts:232 +#: src/view/com/composer/state/video.ts:412 msgid "An error occurred while compressing the video." msgstr "壓縮影片時發生錯誤。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:315 +#: src/components/StarterPack/ProfileStarterPacks.tsx:316 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "建立您的入門包時發生錯誤。是否要重試?" +msgstr "建立您的新手包時發生錯誤。是否要重試?" #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 msgid "An error occurred while loading the video. Please try again later." @@ -542,25 +558,21 @@ msgstr "載入影片時發生錯誤。請稍後再試。" msgid "An error occurred while loading the video. Please try again." msgstr "載入影片時發生錯誤。請再試一次。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:250 -msgid "An error occurred while saving the image!" -msgstr "" - #: src/components/StarterPack/QrCodeDialog.tsx:71 -#: src/components/StarterPack/ShareDialog.tsx:79 +#: src/components/StarterPack/ShareDialog.tsx:80 msgid "An error occurred while saving the QR code!" msgstr "儲存 QR Code 時發生錯誤!" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:75 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 msgid "An error occurred while selecting the video" msgstr "選擇影片時發生錯誤" -#: src/screens/StarterPack/StarterPackScreen.tsx:336 -#: src/screens/StarterPack/StarterPackScreen.tsx:358 +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 msgid "An error occurred while trying to follow all" msgstr "跟隨所有帳號時發生錯誤" -#: src/state/queries/video/video.ts:199 +#: src/view/com/composer/state/video.ts:449 msgid "An error occurred while uploading the video." msgstr "上傳影片時發生錯誤。" @@ -572,40 +584,40 @@ msgstr "問題不在上述選項" msgid "An issue occurred starting the chat" msgstr "發起聊天時出現問題" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 msgid "An issue occurred while trying to open the chat" msgstr "開啟聊天時出現問題" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:324 -#: src/components/ProfileCard.tsx:344 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." msgstr "出現問題,請再試一次。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:185 msgid "an unknown error occurred" msgstr "出現未知錯誤" -#: src/components/moderation/ModerationDetailsDialog.tsx:151 -#: src/components/moderation/ModerationDetailsDialog.tsx:147 +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 msgid "an unknown labeler" msgstr "未知的標記者" #: src/components/WhoCanReply.tsx:295 #: src/view/com/notifications/FeedItem.tsx:231 -#: src/view/com/notifications/FeedItem.tsx:320 +#: src/view/com/notifications/FeedItem.tsx:324 msgid "and" msgstr "和" #: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:79 +#: src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:139 +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 msgid "Animated GIF" msgstr "GIF 動畫" @@ -613,15 +625,20 @@ msgstr "GIF 動畫" msgid "Anti-Social Behavior" msgstr "反社會行為" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54 +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "任何語言" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 msgid "Anybody can interact" msgstr "任何人都可以參與互動" -#: src/view/screens/LanguageSettings.tsx:96 +#: src/view/screens/LanguageSettings.tsx:94 msgid "App Language" msgstr "應用程式語言" -#: src/view/screens/AppPasswords.tsx:226 +#: src/view/screens/AppPasswords.tsx:232 msgid "App password deleted" msgstr "應用程式專用密碼已刪除" @@ -633,47 +650,47 @@ msgstr "應用程式專用密碼只能包含字母、數字、空格、破折號 msgid "App Password names must be at least 4 characters long." msgstr "應用程式專用密碼名稱必須至少有 4 個字元。" -#: src/view/screens/Settings/index.tsx:663 +#: src/view/screens/Settings/index.tsx:664 msgid "App password settings" msgstr "應用程式專用密碼設定" -#: src/Navigation.tsx:286 -#: src/view/screens/AppPasswords.tsx:191 -#: src/view/screens/Settings/index.tsx:672 +#: src/Navigation.tsx:285 +#: src/view/screens/AppPasswords.tsx:197 +#: src/view/screens/Settings/index.tsx:673 msgid "App Passwords" msgstr "應用程式專用密碼" -#: src/components/moderation/LabelsOnMeDialog.tsx:146 -#: src/components/moderation/LabelsOnMeDialog.tsx:149 +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 msgid "Appeal" msgstr "申訴" -#: src/components/moderation/LabelsOnMeDialog.tsx:238 +#: src/components/moderation/LabelsOnMeDialog.tsx:243 msgid "Appeal \"{0}\" label" msgstr "申訴「{0}」標記" -#: src/components/moderation/LabelsOnMeDialog.tsx:229 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "已提交申訴" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:51 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:53 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:99 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:101 +#: src/screens/Messages/components/ChatDisabled.tsx:51 +#: src/screens/Messages/components/ChatDisabled.tsx:53 +#: src/screens/Messages/components/ChatDisabled.tsx:99 +#: src/screens/Messages/components/ChatDisabled.tsx:101 msgid "Appeal this decision" msgstr "對此決定提出上訴" -#: src/screens/Settings/AppearanceSettings.tsx:69 -#: src/view/screens/Settings/index.tsx:484 +#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/view/screens/Settings/index.tsx:485 msgid "Appearance" msgstr "外觀" -#: src/view/screens/Settings/index.tsx:475 +#: src/view/screens/Settings/index.tsx:476 msgid "Appearance settings" msgstr "外觀設定" -#: src/Navigation.tsx:326 +#: src/Navigation.tsx:325 msgid "Appearance Settings" msgstr "外觀設定" @@ -682,7 +699,7 @@ msgstr "外觀設定" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/view/screens/AppPasswords.tsx:277 +#: src/view/screens/AppPasswords.tsx:283 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "您確定要刪除這個應用程式專用密碼「{name}」嗎?" @@ -690,9 +707,13 @@ msgstr "您確定要刪除這個應用程式專用密碼「{name}」嗎?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "您確定要刪除這則訊息嗎?該訊息將為您刪除,但不會為其他參與者刪除。" -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:632 msgid "Are you sure you want to delete this starter pack?" -msgstr "您確定要刪除這個入門包嗎?" +msgstr "您確定要刪除這個新手包嗎?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "您確定要放棄更改嗎?" #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." @@ -702,11 +723,11 @@ msgstr "您確定要離開此對話嗎?您的訊息將為您刪除,但不會 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "您確定要從您的動態中移除 {0} 嗎?" -#: src/components/FeedCard.tsx:310 +#: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" msgstr "您確定要將此從您的動態源中移除嗎?" -#: src/view/com/composer/Composer.tsx:838 +#: src/view/com/composer/Composer.tsx:532 msgid "Are you sure you'd like to discard this draft?" msgstr "您確定要捨棄此草稿嗎?" @@ -719,11 +740,11 @@ msgid "Are you writing in <0>{0}?" msgstr "您正在使用 <0>{0} 撰寫嗎?" #: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:80 +#: src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "藝術" -#: src/view/com/modals/SelfLabel.tsx:124 +#: src/view/com/composer/labels/LabelsBtn.tsx:170 msgid "Artistic or non-erotic nudity." msgstr "藝術作品或非色情的裸露。" @@ -732,39 +753,39 @@ msgid "At least 3 characters" msgstr "至少 3 個字元" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:284 -#: src/components/moderation/LabelsOnMeDialog.tsx:285 -#: src/screens/Login/ChooseAccountForm.tsx:98 -#: src/screens/Login/ChooseAccountForm.tsx:103 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:285 -#: src/screens/Login/LoginForm.tsx:291 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 -#: src/screens/Login/SetNewPasswordForm.tsx:166 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:133 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:134 -#: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/Wizard/index.tsx:298 -#: src/view/com/util/ViewHeader.tsx:90 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:80 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 msgid "Back" msgstr "返回" -#: src/view/screens/Settings/index.tsx:441 +#: src/view/screens/Settings/index.tsx:442 msgid "Basics" msgstr "基本設定" -#: src/components/dialogs/BirthDateSettings.tsx:107 +#: src/components/dialogs/BirthDateSettings.tsx:106 msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:348 msgid "Birthday:" msgstr "生日:" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "封鎖" @@ -773,45 +794,45 @@ msgstr "封鎖" msgid "Block account" msgstr "封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:311 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 msgid "Block Account" msgstr "封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:324 msgid "Block Account?" msgstr "封鎖帳號?" -#: src/view/screens/ProfileList.tsx:640 +#: src/view/screens/ProfileList.tsx:643 msgid "Block accounts" msgstr "封鎖帳號" -#: src/view/screens/ProfileList.tsx:744 +#: src/view/screens/ProfileList.tsx:747 msgid "Block list" msgstr "封鎖列表" -#: src/view/screens/ProfileList.tsx:739 +#: src/view/screens/ProfileList.tsx:742 msgid "Block these accounts?" msgstr "封鎖這些帳號?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:82 msgid "Blocked" msgstr "已被封鎖" -#: src/screens/Moderation/index.tsx:279 +#: src/screens/Moderation/index.tsx:280 msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:150 -#: src/view/screens/ModerationBlockedAccounts.tsx:109 +#: src/Navigation.tsx:149 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "已封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:360 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。" -#: src/view/screens/ModerationBlockedAccounts.tsx:117 +#: src/view/screens/ModerationBlockedAccounts.tsx:116 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。您將看不到他們的內容,他們也會被阻止看到您的內容。" @@ -823,40 +844,36 @@ msgstr "已封鎖貼文。" msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "封鎖此帳號不會阻止被貼上標記。" -#: src/view/screens/ProfileList.tsx:741 +#: src/view/screens/ProfileList.tsx:744 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "封鎖資訊是公開的。被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。" -#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:333 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "封鎖此帳號不會阻止被貼上標記,但它會阻止此帳號在您的討論串中回覆或與您進行互動。" -#: src/view/com/auth/SplashScreen.web.tsx:159 +#: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Blog" msgstr "部落格" -#: src/view/com/auth/server-input/index.tsx:89 -#: src/view/com/auth/server-input/index.tsx:91 +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 msgid "Bluesky" msgstr "Bluesky" -#: src/view/com/auth/server-input/index.tsx:154 -msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." -msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務供應商。自定義託管服務現已為開發人員推出測試版。" +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務供應商。如果您是開發人員,您可以託管自己的伺服器。" #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "Bluesky 因朋友而更好!" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:206 -msgid "Bluesky now has over 10 million users, and I was #{0}!" -msgstr "" - -#: src/components/StarterPack/ProfileStarterPacks.tsx:282 +#: src/components/StarterPack/ProfileStarterPacks.tsx:283 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。" -#: src/screens/Moderation/index.tsx:567 +#: src/screens/Moderation/index.tsx:571 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky 的官方程式將不會向未登入的使用者顯示您的個人檔案和貼文。但其他應用程式可能不會遵循這個要求,這不會使您的帳號轉為非公開狀態。" @@ -869,14 +886,10 @@ msgid "Blur images and filter from feeds" msgstr "模糊圖片並從動態中過濾" #: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "書籍" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:614 -msgid "Brag a little!" -msgstr "" - #: src/components/FeedInterstitials.tsx:350 msgid "Browse more accounts on the Explore page" msgstr "在探索頁面瀏覽更多帳號" @@ -902,7 +915,7 @@ msgstr "在探索頁面瀏覽更多建議" msgid "Browse other feeds" msgstr "瀏覽其他動態源" -#: src/view/com/auth/SplashScreen.web.tsx:154 +#: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Business" msgstr "商務" @@ -910,7 +923,7 @@ msgstr "商務" msgid "by —" msgstr "來自 —" -#: src/components/LabelingServiceCard/index.tsx:56 +#: src/components/LabelingServiceCard/index.tsx:62 msgid "By {0}" msgstr "來自 {0}" @@ -918,15 +931,23 @@ msgstr "來自 {0}" msgid "by <0/>" msgstr "來自 <0/>" -#: src/screens/Signup/StepInfo/Policies.tsx:80 -msgid "By creating an account you agree to the {els}." -msgstr "建立帳號即表示您同意 {els}。" +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "建立帳號即表示您同意<0>隱私政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "建立帳號即表示您同意<0>服務條款及<1>隱私政策。" + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "建立帳號即表示您同意<0>服務條款。" #: src/view/com/profile/ProfileSubpageHeader.tsx:162 msgid "by you" msgstr "來自您" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 msgid "Camera" msgstr "相機" @@ -935,33 +956,32 @@ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must msgstr "只能包含字母、數字、空格、破折號及底線。長度必須至少有 4 個字元,但不超過 32 個字元。" #: src/components/Menu/index.tsx:235 -#: src/components/Prompt.tsx:122 -#: src/components/Prompt.tsx:124 -#: src/components/TagMenu/index.tsx:282 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:594 -#: src/view/com/composer/Composer.tsx:609 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/view/com/composer/Composer.tsx:684 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 -#: src/view/com/modals/ChangeHandle.tsx:148 +#: src/view/com/modals/ChangeHandle.tsx:141 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/modals/CreateOrEditList.tsx:344 -#: src/view/com/modals/crop-image/CropImage.web.tsx:162 -#: src/view/com/modals/EditImage.tsx:324 -#: src/view/com/modals/EditProfile.tsx:250 -#: src/view/com/modals/InAppBrowserConsent.tsx:78 -#: src/view/com/modals/InAppBrowserConsent.tsx:80 +#: src/view/com/modals/CreateOrEditList.tsx:335 +#: src/view/com/modals/CropImage.web.tsx:97 +#: src/view/com/modals/InAppBrowserConsent.tsx:75 +#: src/view/com/modals/InAppBrowserConsent.tsx:77 #: src/view/com/modals/LinkWarning.tsx:105 #: src/view/com/modals/LinkWarning.tsx:107 #: src/view/com/modals/VerifyEmail.tsx:255 #: src/view/com/modals/VerifyEmail.tsx:261 -#: src/view/com/util/post-ctrls/RepostButton.tsx:163 -#: src/view/screens/Search/Search.tsx:704 +#: src/view/com/util/post-ctrls/RepostButton.tsx:166 +#: src/view/screens/Search/Search.tsx:910 msgid "Cancel" msgstr "取消" -#: src/view/com/modals/CreateOrEditList.tsx:349 +#: src/view/com/modals/CreateOrEditList.tsx:340 #: src/view/com/modals/DeleteAccount.tsx:174 #: src/view/com/modals/DeleteAccount.tsx:296 msgctxt "action" @@ -973,19 +993,15 @@ msgstr "取消" msgid "Cancel account deletion" msgstr "取消刪除帳號" -#: src/view/com/modals/ChangeHandle.tsx:144 +#: src/view/com/modals/ChangeHandle.tsx:137 msgid "Cancel change handle" msgstr "取消修改帳號代碼" -#: src/view/com/modals/crop-image/CropImage.web.tsx:159 +#: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "取消圖片裁剪" -#: src/view/com/modals/EditProfile.tsx:245 -msgid "Cancel profile editing" -msgstr "取消編輯個人檔案" - -#: src/view/com/util/post-ctrls/RepostButton.tsx:157 +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 msgid "Cancel quote post" msgstr "取消引用貼文" @@ -994,6 +1010,7 @@ msgid "Cancel reactivation and log out" msgstr "取消重新啟用並登出" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:902 msgid "Cancel search" msgstr "取消搜尋" @@ -1001,14 +1018,14 @@ msgstr "取消搜尋" msgid "Cancels opening the linked website" msgstr "取消開啟網站連結" -#: src/state/shell/composer/index.tsx:70 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:114 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:155 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:191 +#: src/state/shell/composer/index.tsx:82 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:113 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:154 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:190 msgid "Cannot interact with a blocked user" msgstr "無法與被封鎖的使用者互動" -#: src/view/com/composer/videos/SubtitleDialog.tsx:135 +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 msgid "Captions (.vtt)" msgstr "字幕(.vtt)" @@ -1016,25 +1033,25 @@ msgstr "字幕(.vtt)" msgid "Captions & alt text" msgstr "字幕和替代文字" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:368 -msgid "Celebrating {0} users" -msgstr "" - #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:341 +#: src/view/screens/Settings/index.tsx:342 msgctxt "action" msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:684 +#: src/components/dialogs/VerifyEmailDialog.tsx:147 +msgid "Change email address" +msgstr "變更電子郵件地址" + +#: src/view/screens/Settings/index.tsx:685 msgid "Change handle" msgstr "變更帳號代碼" -#: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:695 +#: src/view/com/modals/ChangeHandle.tsx:149 +#: src/view/screens/Settings/index.tsx:696 msgid "Change Handle" msgstr "變更帳號代碼" @@ -1042,12 +1059,12 @@ msgstr "變更帳號代碼" msgid "Change my email" msgstr "變更我的電子郵件地址" -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change password" msgstr "變更密碼" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:740 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "變更密碼" @@ -1059,9 +1076,10 @@ msgstr "變更貼文的發佈語言為 {0}" msgid "Change Your Email" msgstr "變更您的電子郵件地址" -#: src/Navigation.tsx:338 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:337 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:329 +#: src/view/shell/Drawer.tsx:446 msgid "Chat" msgstr "對話" @@ -1071,14 +1089,14 @@ msgstr "對話已靜音" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:343 -#: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:604 +#: src/Navigation.tsx:342 +#: src/screens/Messages/ChatList.tsx:88 +#: src/view/screens/Settings/index.tsx:605 msgid "Chat settings" msgstr "對話設定" -#: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:613 +#: src/screens/Messages/Settings.tsx:61 +#: src/view/screens/Settings/index.tsx:614 msgid "Chat Settings" msgstr "對話設定" @@ -1091,7 +1109,7 @@ msgstr "對話已解除靜音" msgid "Check my status" msgstr "檢查我的狀態" -#: src/screens/Login/LoginForm.tsx:278 +#: src/screens/Login/LoginForm.tsx:275 msgid "Check your email for a login code and enter it here." msgstr "在此輸入寄送至您電子郵件地址的驗證碼。" @@ -1099,23 +1117,27 @@ msgstr "在此輸入寄送至您電子郵件地址的驗證碼。" msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "在下方輸入寄送至您電子郵件地址的驗證碼:" -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" msgstr "選擇動態源" -#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +#: src/components/StarterPack/ProfileStarterPacks.tsx:291 msgid "Choose for me" msgstr "為我選擇" -#: src/screens/StarterPack/Wizard/index.tsx:186 +#: src/screens/StarterPack/Wizard/index.tsx:195 msgid "Choose People" msgstr "選擇人物" -#: src/view/com/auth/server-input/index.tsx:79 +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "請勾選您認為最符合此媒體內容的標記。若不勾選,則預設為全年齡向。" + +#: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" msgstr "選擇服務" -#: src/screens/Onboarding/StepFinished.tsx:280 +#: src/screens/Onboarding/StepFinished.tsx:271 msgid "Choose the algorithms that power your custom feeds." msgstr "選擇提供您自定義動態的演算法。" @@ -1123,28 +1145,27 @@ msgstr "選擇提供您自定義動態的演算法。" msgid "Choose this color as your avatar" msgstr "選擇這個顏色作為您的頭像" -#: src/screens/Signup/StepInfo/index.tsx:171 +#: src/screens/Signup/StepInfo/index.tsx:201 msgid "Choose your password" msgstr "選擇您的密碼" -#: src/view/screens/Settings/index.tsx:876 +#: src/view/screens/Settings/index.tsx:877 msgid "Clear all storage data" msgstr "清除所有資料" -#: src/view/screens/Settings/index.tsx:879 +#: src/view/screens/Settings/index.tsx:880 msgid "Clear all storage data (restart after this)" msgstr "清除所有資料(並重啟)" -#: src/view/com/util/forms/SearchInput.tsx:88 -#: src/view/screens/Search/Search.tsx:824 +#: src/components/forms/SearchInput.tsx:70 msgid "Clear search query" msgstr "清除搜尋記錄" -#: src/view/screens/Settings/index.tsx:877 +#: src/view/screens/Settings/index.tsx:878 msgid "Clears all storage data" msgstr "清除所有資料" -#: src/view/screens/Support.tsx:40 +#: src/view/screens/Support.tsx:41 msgid "click here" msgstr "點擊這裡" @@ -1160,15 +1181,15 @@ msgstr "點擊這裡以瞭解更多資訊。" msgid "Click here to open tag menu for {tag}" msgstr "點擊這裡以開啟 {tag} 的標籤選單" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 msgid "Click to disable quote posts of this post." msgstr "點擊這裡以停用這則帖文的引用。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 msgid "Click to enable quote posts of this post." msgstr "點擊這裡以啟用這則帖文的引用。" -#: src/components/dms/MessageItem.tsx:232 +#: src/components/dms/MessageItem.tsx:240 msgid "Click to retry failed message" msgstr "點擊以重試傳送訊息" @@ -1180,27 +1201,25 @@ msgstr "氣象" msgid "Clip 🐴 clop 🐴" msgstr "達達的馬蹄🐴是美麗的錯誤🐴" -#: src/components/dialogs/GifSelect.ios.tsx:250 -#: src/components/dialogs/GifSelect.tsx:270 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/intents/VerifyEmailIntentDialog.tsx:111 -#: src/components/intents/VerifyEmailIntentDialog.tsx:118 +#: src/components/dialogs/GifSelect.tsx:282 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 #: src/components/NewskieDialog.tsx:146 #: src/components/NewskieDialog.tsx:153 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:188 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 msgid "Close" msgstr "關閉" -#: src/components/Dialog/index.web.tsx:116 -#: src/components/Dialog/index.web.tsx:254 +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:256 msgid "Close active dialog" msgstr "關閉打開的對話框" -#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/screens/Login/PasswordUpdatedForm.tsx:32 msgid "Close alert" msgstr "關閉警告" @@ -1208,12 +1227,11 @@ msgstr "關閉警告" msgid "Close bottom drawer" msgstr "關閉底欄" -#: src/components/dialogs/GifSelect.ios.tsx:244 -#: src/components/dialogs/GifSelect.tsx:264 +#: src/components/dialogs/GifSelect.tsx:276 msgid "Close dialog" msgstr "關閉對話框" -#: src/components/dialogs/GifSelect.tsx:161 +#: src/components/dialogs/GifSelect.tsx:169 msgid "Close GIF dialog" msgstr "關閉 GIF 對話框" @@ -1225,30 +1243,26 @@ msgstr "關閉圖片" msgid "Close image viewer" msgstr "關閉圖片檢視器" -#: src/components/dms/MessagesNUX.tsx:162 -msgid "Close modal" -msgstr "關閉視窗" - -#: src/view/shell/index.web.tsx:61 +#: src/view/shell/index.web.tsx:67 msgid "Close navigation footer" msgstr "關閉導覽頁腳" #: src/components/Menu/index.tsx:229 -#: src/components/TagMenu/index.tsx:276 +#: src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "關閉此對話框" -#: src/view/shell/index.web.tsx:62 +#: src/view/shell/index.web.tsx:68 msgid "Closes bottom navigation bar" msgstr "關閉底部導覽列" -#: src/screens/Login/PasswordUpdatedForm.tsx:39 +#: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "關閉密碼更新警告" -#: src/view/com/composer/Composer.tsx:606 -msgid "Closes post composer and discards post draft" -msgstr "關閉貼文編輯頁並捨棄草稿" +#: src/view/com/composer/Composer.tsx:549 +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "關閉貼文編輯頁並捨棄草稿" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" @@ -1258,56 +1272,66 @@ msgstr "關閉標題圖片檢視器" msgid "Collapse list of users" msgstr "折疊用戶清單" -#: src/view/com/notifications/FeedItem.tsx:466 +#: src/view/com/notifications/FeedItem.tsx:470 msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶清單" +#: src/screens/Settings/AppearanceSettings.tsx:97 +msgid "Color mode" +msgstr "色彩模式" + #: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "喜劇" #: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:276 -#: src/view/screens/CommunityGuidelines.tsx:32 +#: src/Navigation.tsx:275 +#: src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "社群守則" -#: src/screens/Onboarding/StepFinished.tsx:293 +#: src/screens/Onboarding/StepFinished.tsx:284 msgid "Complete onboarding and start using your account" msgstr "完成初始設定並開始使用您的帳號" -#: src/screens/Signup/index.tsx:150 +#: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" msgstr "完成驗證" -#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/composer/Composer.tsx:632 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "撰寫貼文的長度最多為 {MAX_GRAPHEME_LENGTH} 個字元" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 msgid "Compose reply" msgstr "撰寫回覆" +#: src/view/com/composer/Composer.tsx:1341 +msgid "Compressing video..." +msgstr "正在壓縮影片..." + #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "為 {name} 配置內容過濾設定" -#: src/components/moderation/LabelPreference.tsx:244 +#: src/components/moderation/LabelPreference.tsx:243 msgid "Configured in <0>moderation settings." msgstr "已在<0>內容管理設定中配置。" -#: src/components/Prompt.tsx:165 -#: src/components/Prompt.tsx:168 -#: src/view/com/modals/SelfLabel.tsx:155 +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +#: src/components/dialogs/VerifyEmailDialog.tsx:217 +#: src/components/dialogs/VerifyEmailDialog.tsx:240 +#: src/components/Prompt.tsx:172 +#: src/components/Prompt.tsx:175 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 msgid "Confirm" msgstr "確認" @@ -1324,30 +1348,35 @@ msgstr "確認內容語言設定" msgid "Confirm delete account" msgstr "確認刪除帳號" -#: src/screens/Moderation/index.tsx:313 +#: src/screens/Moderation/index.tsx:314 msgid "Confirm your age:" msgstr "確認您的年齡:" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:305 msgid "Confirm your birthdate" msgstr "確認您的出生日期" -#: src/screens/Login/LoginForm.tsx:259 +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +#: src/screens/Login/LoginForm.tsx:256 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 #: src/view/com/modals/VerifyEmail.tsx:173 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:143 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:149 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 msgid "Confirmation code" msgstr "驗證碼" -#: src/screens/Login/LoginForm.tsx:312 +#: src/components/dialogs/VerifyEmailDialog.tsx:167 +msgid "Confirmation Code" +msgstr "驗證碼" + +#: src/screens/Login/LoginForm.tsx:309 msgid "Connecting..." msgstr "連線中…" -#: src/screens/Signup/index.tsx:180 -#: src/screens/Signup/index.tsx:183 +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "聯繫支援" @@ -1355,12 +1384,12 @@ msgstr "聯繫支援" msgid "Content Blocked" msgstr "已封鎖內容" -#: src/screens/Moderation/index.tsx:297 +#: src/screens/Moderation/index.tsx:298 msgid "Content filters" msgstr "內容過濾" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 -#: src/view/screens/LanguageSettings.tsx:282 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +#: src/view/screens/LanguageSettings.tsx:280 msgid "Content Languages" msgstr "內容語言" @@ -1370,13 +1399,13 @@ msgid "Content Not Available" msgstr "無法查看此內容" #: src/components/moderation/ModerationDetailsDialog.tsx:49 -#: src/components/moderation/ScreenHider.tsx:99 +#: src/components/moderation/ScreenHider.tsx:93 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:43 msgid "Content Warning" msgstr "內容警告" -#: src/view/com/composer/labels/LabelsBtn.tsx:32 +#: src/view/com/composer/labels/LabelsBtn.tsx:61 msgid "Content warnings" msgstr "內容警告" @@ -1384,12 +1413,12 @@ msgstr "內容警告" msgid "Context menu backdrop, click to close the menu." msgstr "彈出式選單背景,點擊以關閉選單。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 -#: src/screens/Onboarding/StepProfile/index.tsx:269 +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 msgid "Continue" msgstr "繼續" -#: src/components/AccountList.tsx:113 +#: src/components/AccountList.tsx:121 msgid "Continue as {0} (currently signed in)" msgstr "以 {0} 繼續 (目前已登入)" @@ -1397,13 +1426,13 @@ msgstr "以 {0} 繼續 (目前已登入)" msgid "Continue thread..." msgstr "繼續載入討論串…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/BackNextButtons.tsx:59 +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 msgid "Continue to next step" msgstr "繼續下一步" -#: src/screens/Messages/List/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:164 msgid "Conversation deleted" msgstr "對話已刪除" @@ -1416,20 +1445,21 @@ msgstr "烹飪" msgid "Copied" msgstr "已複製" -#: src/view/screens/Settings/index.tsx:233 +#: src/view/screens/Settings/index.tsx:234 msgid "Copied build version to clipboard" msgstr "已複製建構版本號至剪貼簿" #: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 #: src/view/com/modals/AddAppPasswords.tsx:80 -#: src/view/com/modals/ChangeHandle.tsx:320 +#: src/view/com/modals/ChangeHandle.tsx:313 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:234 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:392 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:380 msgid "Copied to clipboard" msgstr "已複製至剪貼簿" -#: src/components/dialogs/Embed.tsx:134 +#: src/components/dialogs/Embed.tsx:136 msgid "Copied!" msgstr "已複製!" @@ -1437,17 +1467,17 @@ msgstr "已複製!" msgid "Copies app password" msgstr "複製應用程式專用密碼" -#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/components/StarterPack/QrCodeDialog.tsx:175 #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "複製" -#: src/view/com/modals/ChangeHandle.tsx:474 +#: src/view/com/modals/ChangeHandle.tsx:467 msgid "Copy {0}" msgstr "複製{0}" -#: src/components/dialogs/Embed.tsx:120 -#: src/components/dialogs/Embed.tsx:139 +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "複製程式碼" @@ -1459,12 +1489,12 @@ msgstr "複製連結" msgid "Copy Link" msgstr "複製連結" -#: src/view/screens/ProfileList.tsx:484 +#: src/view/screens/ProfileList.tsx:487 msgid "Copy link to list" msgstr "複製列表連結" -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 msgid "Copy link to post" msgstr "複製貼文連結" @@ -1473,17 +1503,17 @@ msgstr "複製貼文連結" msgid "Copy message text" msgstr "複製訊息文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:388 -#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 msgid "Copy post text" msgstr "複製貼文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:171 +#: src/components/StarterPack/QrCodeDialog.tsx:169 msgid "Copy QR code" msgstr "複製 QR Code" -#: src/Navigation.tsx:281 -#: src/view/screens/CopyrightPolicy.tsx:29 +#: src/Navigation.tsx:280 +#: src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "著作權政策" @@ -1491,11 +1521,11 @@ msgstr "著作權政策" msgid "Could not leave chat" msgstr "無法離開對話" -#: src/view/screens/ProfileFeed.tsx:103 +#: src/view/screens/ProfileFeed.tsx:104 msgid "Could not load feed" msgstr "無法載入動態" -#: src/view/screens/ProfileList.tsx:1017 +#: src/view/screens/ProfileList.tsx:1020 msgid "Could not load list" msgstr "無法載入列表" @@ -1507,34 +1537,34 @@ msgstr "無法靜音對話" msgid "Could not process your video" msgstr "無法處理您的影片" -#: src/components/StarterPack/ProfileStarterPacks.tsx:272 +#: src/components/StarterPack/ProfileStarterPacks.tsx:273 msgid "Create" msgstr "建立" -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:106 -msgid "Create a new account" -msgstr "建立新帳號" - -#: src/view/screens/Settings/index.tsx:402 +#: src/view/screens/Settings/index.tsx:403 msgid "Create a new Bluesky account" msgstr "建立新的 Bluesky 帳號" -#: src/components/StarterPack/QrCodeDialog.tsx:154 +#: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" -msgstr "為入門包建立 QR Code" +msgstr "為新手包建立 QR Code" -#: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:368 +#: src/components/StarterPack/ProfileStarterPacks.tsx:166 +#: src/components/StarterPack/ProfileStarterPacks.tsx:260 +#: src/Navigation.tsx:367 msgid "Create a starter pack" -msgstr "選擇一個入門包" +msgstr "選擇一個新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:246 +#: src/components/StarterPack/ProfileStarterPacks.tsx:247 msgid "Create a starter pack for me" -msgstr "為我建立一個入門包" +msgstr "為我建立一個新手包" -#: src/screens/Signup/index.tsx:99 +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:116 +msgid "Create account" +msgstr "建立帳號" + +#: src/screens/Signup/index.tsx:93 msgid "Create Account" msgstr "建立帳號" @@ -1543,11 +1573,11 @@ msgstr "建立帳號" msgid "Create an account" msgstr "建立一個帳號" -#: src/screens/Onboarding/StepProfile/index.tsx:283 +#: src/screens/Onboarding/StepProfile/index.tsx:292 msgid "Create an avatar instead" msgstr "或是建立一個頭像" -#: src/components/StarterPack/ProfileStarterPacks.tsx:172 +#: src/components/StarterPack/ProfileStarterPacks.tsx:173 msgid "Create another" msgstr "建立另外一個" @@ -1556,7 +1586,7 @@ msgid "Create App Password" msgstr "建立應用程式專用密碼" #: src/view/com/auth/SplashScreen.tsx:48 -#: src/view/com/auth/SplashScreen.web.tsx:97 +#: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "建立新帳號" @@ -1564,86 +1594,87 @@ msgstr "建立新帳號" msgid "Create report for {0}" msgstr "建立 {0} 的檢舉" -#: src/view/screens/AppPasswords.tsx:246 +#: src/view/screens/AppPasswords.tsx:252 msgid "Created {0}" msgstr "{0} 已建立" #: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "文化" -#: src/view/com/auth/server-input/index.tsx:97 -#: src/view/com/auth/server-input/index.tsx:99 +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 msgid "Custom" msgstr "自訂" -#: src/view/com/modals/ChangeHandle.tsx:382 +#: src/view/com/modals/ChangeHandle.tsx:375 msgid "Custom domain" msgstr "自訂網域" -#: src/view/screens/Feeds.tsx:759 +#: src/view/screens/Feeds.tsx:761 #: src/view/screens/Search/Explore.tsx:391 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所愛的內容。" -#: src/view/screens/PreferencesExternalEmbeds.tsx:57 +#: src/view/screens/PreferencesExternalEmbeds.tsx:54 msgid "Customize media from external sites." msgstr "自訂外部網站的媒體。" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." msgstr "自訂誰可以參與這則帖文的互動。" -#: src/screens/Settings/AppearanceSettings.tsx:95 -#: src/screens/Settings/AppearanceSettings.tsx:97 -#: src/screens/Settings/AppearanceSettings.tsx:122 -#: src/screens/Settings/AppearanceSettings.tsx:124 +#: src/screens/Settings/AppearanceSettings.tsx:109 +#: src/screens/Settings/AppearanceSettings.tsx:130 msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppearanceSettings.tsx:82 -#: src/view/screens/Debug.tsx:63 +#: src/view/screens/Debug.tsx:70 msgid "Dark mode" msgstr "深色模式" -#: src/screens/Settings/AppearanceSettings.tsx:109 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:122 msgid "Dark theme" msgstr "深色主題" -#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/screens/Signup/StepInfo/index.tsx:222 msgid "Date of birth" msgstr "出生日期" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:772 +#: src/view/screens/Settings/index.tsx:773 msgid "Deactivate account" msgstr "停用帳號" -#: src/view/screens/Settings/index.tsx:784 +#: src/view/screens/Settings/index.tsx:785 msgid "Deactivate my account" msgstr "停用我的帳號" -#: src/view/screens/Settings/index.tsx:839 +#: src/view/screens/Settings/index.tsx:840 msgid "Debug Moderation" msgstr "內容管理偵錯" -#: src/view/screens/Debug.tsx:83 +#: src/view/screens/Debug.tsx:90 msgid "Debug panel" msgstr "偵錯面板" +#: src/components/dialogs/nuxs/NeueTypography.tsx:99 +#: src/screens/Settings/AppearanceSettings.tsx:169 +msgid "Default" +msgstr "預設" + #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:573 -#: src/screens/StarterPack/StarterPackScreen.tsx:652 -#: src/screens/StarterPack/StarterPackScreen.tsx:732 -#: src/view/com/util/forms/PostDropdownBtn.tsx:629 -#: src/view/screens/AppPasswords.tsx:280 -#: src/view/screens/ProfileList.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:584 +#: src/screens/StarterPack/StarterPackScreen.tsx:663 +#: src/screens/StarterPack/StarterPackScreen.tsx:743 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/AppPasswords.tsx:286 +#: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "刪除" -#: src/view/screens/Settings/index.tsx:794 +#: src/view/screens/Settings/index.tsx:795 msgid "Delete account" msgstr "刪除帳號" @@ -1651,16 +1682,16 @@ msgstr "刪除帳號" msgid "Delete Account <0>\"<1>{0}<2>\"" msgstr "刪除帳號 <0>「<1>{0}<2>」" -#: src/view/screens/AppPasswords.tsx:239 +#: src/view/screens/AppPasswords.tsx:245 msgid "Delete app password" msgstr "刪除應用程式專用密碼" -#: src/view/screens/AppPasswords.tsx:275 +#: src/view/screens/AppPasswords.tsx:281 msgid "Delete app password?" msgstr "刪除應用程式專用密碼?" -#: src/view/screens/Settings/index.tsx:856 -#: src/view/screens/Settings/index.tsx:859 +#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:860 msgid "Delete chat declaration record" msgstr "刪除對話聲明紀錄" @@ -1668,7 +1699,7 @@ msgstr "刪除對話聲明紀錄" msgid "Delete for me" msgstr "為我刪除" -#: src/view/screens/ProfileList.tsx:527 +#: src/view/screens/ProfileList.tsx:530 msgid "Delete List" msgstr "刪除列表" @@ -1684,33 +1715,33 @@ msgstr "為我刪除訊息" msgid "Delete my account" msgstr "刪除我的帳號" -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Delete My Account…" msgstr "刪除我的帳號…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:609 -#: src/view/com/util/forms/PostDropdownBtn.tsx:611 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 msgid "Delete post" msgstr "刪除貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:567 -#: src/screens/StarterPack/StarterPackScreen.tsx:723 +#: src/screens/StarterPack/StarterPackScreen.tsx:578 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 msgid "Delete starter pack" -msgstr "刪除入門包" +msgstr "刪除新手包" -#: src/screens/StarterPack/StarterPackScreen.tsx:618 +#: src/screens/StarterPack/StarterPackScreen.tsx:629 msgid "Delete starter pack?" -msgstr "刪除入門包?" +msgstr "刪除新手包?" -#: src/view/screens/ProfileList.tsx:718 +#: src/view/screens/ProfileList.tsx:721 msgid "Delete this list?" msgstr "刪除此列表?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:624 +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 msgid "Delete this post?" msgstr "刪除這條貼文?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:92 msgid "Deleted" msgstr "已刪除" @@ -1718,27 +1749,35 @@ msgstr "已刪除" msgid "Deleted post." msgstr "已刪除的貼文。" -#: src/view/screens/Settings/index.tsx:857 +#: src/view/screens/Settings/index.tsx:858 msgid "Deletes the chat declaration record" msgstr "刪除對話聲明紀錄" -#: src/view/com/modals/CreateOrEditList.tsx:289 -#: src/view/com/modals/CreateOrEditList.tsx:310 -#: src/view/com/modals/EditProfile.tsx:199 -#: src/view/com/modals/EditProfile.tsx:211 +#: src/screens/Profile/Header/EditProfileDialog.tsx:344 +#: src/view/com/modals/CreateOrEditList.tsx:280 +#: src/view/com/modals/CreateOrEditList.tsx:301 msgid "Description" msgstr "描述" -#: src/view/com/composer/GifAltText.tsx:140 +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "描述太長" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "描述太長,最大字元數限制為 {DESCRIPTION_MAX_GRAPHEMES}。" + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 msgid "Descriptive alt text" msgstr "生動的替代文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:544 -#: src/view/com/util/forms/PostDropdownBtn.tsx:554 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 msgid "Detach quote" msgstr "分離引用" -#: src/view/com/util/forms/PostDropdownBtn.tsx:687 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 msgid "Detach quote post?" msgstr "分離這則帖文的引用?" @@ -1746,54 +1785,54 @@ msgstr "分離這則帖文的引用?" msgid "Dialog: adjust who can interact with this post" msgstr "對話框:自訂誰可以參與這則帖文的互動" -#: src/view/com/composer/Composer.tsx:355 +#: src/view/com/composer/Composer.tsx:325 msgid "Did you want to say anything?" msgstr "有什麼想說的嗎?" -#: src/screens/Settings/AppearanceSettings.tsx:117 -#: src/screens/Settings/AppearanceSettings.tsx:119 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Dim" msgstr "昏暗" -#: src/components/dms/MessagesNUX.tsx:88 -msgid "Direct messages are here!" -msgstr "私人訊息已推出!" - -#: src/view/screens/AccessibilitySettings.tsx:111 +#: src/view/screens/AccessibilitySettings.tsx:109 msgid "Disable autoplay for videos and GIFs" msgstr "關閉影片和 GIF 自動播放" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "關閉電子郵件雙重驗證" -#: src/view/screens/AccessibilitySettings.tsx:125 +#: src/view/screens/AccessibilitySettings.tsx:123 msgid "Disable haptic feedback" msgstr "關閉觸覺回饋" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:379 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 msgid "Disable subtitles" msgstr "停用字幕" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:140 -#: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:355 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:356 msgid "Disabled" msgstr "停用" -#: src/view/com/composer/Composer.tsx:840 +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:534 msgid "Discard" msgstr "捨棄" -#: src/view/com/composer/Composer.tsx:837 +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "放棄更改?" + +#: src/view/com/composer/Composer.tsx:531 msgid "Discard draft?" msgstr "捨棄草稿?" -#: src/screens/Moderation/index.tsx:552 #: src/screens/Moderation/index.tsx:556 +#: src/screens/Moderation/index.tsx:560 msgid "Discourage apps from showing my account to logged-out users" msgstr "阻撓應用程式向未登入用戶顯示我的帳號" @@ -1806,15 +1845,15 @@ msgstr "探索新的自訂動態源" msgid "Discover new feeds" msgstr "探索新的動態源" -#: src/view/screens/Feeds.tsx:756 +#: src/view/screens/Feeds.tsx:758 msgid "Discover New Feeds" msgstr "探索新的動態源" -#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108 -#~ msgid "Dismiss" -#~ msgstr "跳過" +#: src/components/Dialog/index.tsx:315 +msgid "Dismiss" +msgstr "跳過" -#: src/view/com/composer/Composer.tsx:1107 +#: src/view/com/composer/Composer.tsx:1265 msgid "Dismiss error" msgstr "跳過錯誤" @@ -1822,19 +1861,25 @@ msgstr "跳過錯誤" msgid "Dismiss getting started guide" msgstr "跳過入門指南" -#: src/view/screens/AccessibilitySettings.tsx:99 +#: src/view/screens/AccessibilitySettings.tsx:97 msgid "Display larger alt text badges" msgstr "顯示較大的替代文字標誌" -#: src/view/com/modals/EditProfile.tsx:193 +#: src/screens/Profile/Header/EditProfileDialog.tsx:314 +#: src/screens/Profile/Header/EditProfileDialog.tsx:320 +#: src/screens/Profile/Header/EditProfileDialog.tsx:351 msgid "Display name" -msgstr "顯示名稱" +msgstr "名稱" -#: src/view/com/modals/EditProfile.tsx:181 -msgid "Display Name" -msgstr "顯示名稱" +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "名稱太長" -#: src/view/com/modals/ChangeHandle.tsx:391 +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "名稱太長,最大字元數限制為 {DISPLAY_NAME_MAX_GRAPHEMES}。" + +#: src/view/com/modals/ChangeHandle.tsx:384 msgid "DNS Panel" msgstr "DNS 控制台" @@ -1842,6 +1887,14 @@ msgstr "DNS 控制台" msgid "Do not apply this mute word to users you follow" msgstr "不要對已跟隨的用戶使用此靜音詞彙" +#: src/view/com/composer/labels/LabelsBtn.tsx:174 +msgid "Does not contain adult content." +msgstr "不包含成人內容。" + +#: src/view/com/composer/labels/LabelsBtn.tsx:213 +msgid "Does not contain graphic or disturbing content." +msgstr "不包含敏感或令人不安的內容。" + #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "不包含裸露內容。" @@ -1850,38 +1903,37 @@ msgstr "不包含裸露內容。" msgid "Doesn't begin or end with a hyphen" msgstr "不以連字符開頭或結尾" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "Domain Value" msgstr "網域設定值" -#: src/view/com/modals/ChangeHandle.tsx:482 +#: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain verified!" msgstr "網域已驗證!" -#: src/components/dialogs/BirthDateSettings.tsx:119 -#: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/BirthDateSettings.tsx:118 +#: src/components/dialogs/BirthDateSettings.tsx:124 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 -#: src/screens/Onboarding/StepProfile/index.tsx:322 -#: src/screens/Onboarding/StepProfile/index.tsx:325 -#: src/view/com/auth/server-input/index.tsx:169 +#: src/screens/Onboarding/StepProfile/index.tsx:330 +#: src/screens/Onboarding/StepProfile/index.tsx:333 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/composer/videos/SubtitleDialog.tsx:171 -#: src/view/com/composer/videos/SubtitleDialog.tsx:181 +#: src/view/com/auth/server-input/index.tsx:171 +#: src/view/com/composer/labels/LabelsBtn.tsx:223 +#: src/view/com/composer/labels/LabelsBtn.tsx:230 +#: src/view/com/composer/videos/SubtitleDialog.tsx:169 +#: src/view/com/composer/videos/SubtitleDialog.tsx:179 #: src/view/com/modals/AddAppPasswords.tsx:243 -#: src/view/com/modals/AltImage.tsx:141 -#: src/view/com/modals/crop-image/CropImage.web.tsx:177 +#: src/view/com/modals/CropImage.web.tsx:112 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "完成" -#: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:145 -#: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/UserAddRemoveLists.tsx:107 -#: src/view/com/modals/UserAddRemoveLists.tsx:110 +#: src/view/com/modals/UserAddRemoveLists.tsx:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:116 msgctxt "action" msgid "Done" msgstr "完成" @@ -1890,20 +1942,20 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:326 +#: src/components/Dialog/index.tsx:316 +msgid "Double tap to close the dialog" +msgstr "按兩下關閉對話框" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "Download Bluesky" msgstr "下載 Bluesky" -#: src/view/screens/Settings/ExportCarDialog.tsx:77 -#: src/view/screens/Settings/ExportCarDialog.tsx:81 +#: src/view/screens/Settings/ExportCarDialog.tsx:76 +#: src/view/screens/Settings/ExportCarDialog.tsx:80 msgid "Download CAR file" msgstr "下載 CAR 檔案" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:622 -msgid "Download image" -msgstr "" - -#: src/view/com/composer/text-input/TextInput.web.tsx:269 +#: src/view/com/composer/text-input/TextInput.web.tsx:300 msgid "Drop to add images" msgstr "拖放即可新增圖片" @@ -1911,39 +1963,35 @@ msgstr "拖放即可新增圖片" msgid "Duration:" msgstr "持續時間:" -#: src/view/com/modals/ChangeHandle.tsx:252 +#: src/view/com/modals/ChangeHandle.tsx:245 msgid "e.g. alice" msgstr "例如:alice" -#: src/view/com/modals/EditProfile.tsx:186 -msgid "e.g. Alice Roberts" +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" msgstr "例如:張藍天" -#: src/view/com/modals/ChangeHandle.tsx:374 +#: src/view/com/modals/ChangeHandle.tsx:367 msgid "e.g. alice.com" msgstr "例如:alice.com" -#: src/view/com/modals/EditProfile.tsx:204 -msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "例如:藝術家、愛狗人士和狂熱讀者。" - #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." msgstr "例如:藝術裸露。" -#: src/view/com/modals/CreateOrEditList.tsx:272 +#: src/view/com/modals/CreateOrEditList.tsx:263 msgid "e.g. Great Posters" msgstr "例如:優秀的發文者" -#: src/view/com/modals/CreateOrEditList.tsx:273 +#: src/view/com/modals/CreateOrEditList.tsx:264 msgid "e.g. Spammers" msgstr "例如:垃圾內容製造者" -#: src/view/com/modals/CreateOrEditList.tsx:301 +#: src/view/com/modals/CreateOrEditList.tsx:292 msgid "e.g. The posters who never miss." msgstr "例如:絕對不容錯過的發文者。" -#: src/view/com/modals/CreateOrEditList.tsx:302 +#: src/view/com/modals/CreateOrEditList.tsx:293 msgid "e.g. Users that repeatedly reply with ads." msgstr "例如:多次張貼廣告的用戶。" @@ -1951,58 +1999,55 @@ msgstr "例如:多次張貼廣告的用戶。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每個邀請碼僅能使用一次。您將定期收到更多的邀請碼。" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 -#: src/screens/StarterPack/Wizard/index.tsx:551 -#: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/screens/StarterPack/StarterPackScreen.tsx:573 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "編輯" -#: src/view/com/lists/ListMembers.tsx:149 +#: src/view/com/lists/ListMembers.tsx:146 msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:334 -#: src/view/com/util/UserBanner.tsx:92 +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "編輯頭像" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 msgid "Edit Feeds" msgstr "編輯動態源" -#: src/view/com/composer/photos/Gallery.tsx:151 -#: src/view/com/modals/EditImage.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:58 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:62 +#: src/view/com/composer/photos/Gallery.tsx:191 msgid "Edit image" msgstr "編輯圖片" -#: src/view/com/util/forms/PostDropdownBtn.tsx:590 -#: src/view/com/util/forms/PostDropdownBtn.tsx:603 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 msgid "Edit interaction settings" msgstr "編輯「互動設定」" -#: src/view/screens/ProfileList.tsx:515 +#: src/view/screens/ProfileList.tsx:518 msgid "Edit list details" msgstr "編輯列表詳情" -#: src/view/com/modals/CreateOrEditList.tsx:239 +#: src/view/com/modals/CreateOrEditList.tsx:230 msgid "Edit Moderation List" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:291 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 -#: src/view/screens/SavedFeeds.tsx:92 +#: src/Navigation.tsx:290 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "編輯我的動態源" -#: src/view/com/modals/EditProfile.tsx:153 -msgid "Edit my profile" -msgstr "編輯我的個人檔案" - -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 msgid "Edit People" msgstr "編輯人物" @@ -2011,21 +2056,23 @@ msgstr "編輯人物" msgid "Edit post interaction settings" msgstr "編輯「貼文互動設定」" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175 +#: src/screens/Profile/Header/EditProfileDialog.tsx:269 +#: src/screens/Profile/Header/EditProfileDialog.tsx:275 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:176 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:169 msgid "Edit profile" msgstr "編輯個人檔案" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:178 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:179 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172 msgid "Edit Profile" msgstr "編輯個人檔案" -#: src/screens/StarterPack/StarterPackScreen.tsx:554 +#: src/screens/StarterPack/StarterPackScreen.tsx:565 msgid "Edit starter pack" -msgstr "編輯入門包" +msgstr "編輯新手包" -#: src/view/com/modals/CreateOrEditList.tsx:234 +#: src/view/com/modals/CreateOrEditList.tsx:225 msgid "Edit User List" msgstr "編輯用戶列表" @@ -2033,24 +2080,16 @@ msgstr "編輯用戶列表" msgid "Edit who can reply" msgstr "編輯「誰可以回覆」" -#: src/view/com/modals/EditProfile.tsx:194 -msgid "Edit your display name" -msgstr "編輯您的顯示名稱" - -#: src/view/com/modals/EditProfile.tsx:212 -msgid "Edit your profile description" -msgstr "編輯您的帳號描述" - -#: src/Navigation.tsx:373 +#: src/Navigation.tsx:372 msgid "Edit your starter pack" -msgstr "編輯您的入門包" +msgstr "編輯您的新手包" #: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "教育" -#: src/screens/Signup/StepInfo/index.tsx:143 +#: src/screens/Signup/StepInfo/index.tsx:170 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "電子郵件" @@ -2059,11 +2098,11 @@ msgstr "電子郵件" msgid "Email 2FA disabled" msgstr "已關閉電子郵件雙重驗證" -#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" msgstr "電子郵件地址" -#: src/components/intents/VerifyEmailIntentDialog.tsx:95 +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 msgid "Email Resent" msgstr "重新發送電子郵件" @@ -2080,21 +2119,21 @@ msgstr "電子郵件已更新" msgid "Email verified" msgstr "電子郵件已驗證" -#: src/components/intents/VerifyEmailIntentDialog.tsx:71 +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 msgid "Email Verified" msgstr "電子郵件地址已驗證" -#: src/view/screens/Settings/index.tsx:319 +#: src/view/screens/Settings/index.tsx:320 msgid "Email:" msgstr "電子郵件:" -#: src/components/dialogs/Embed.tsx:112 +#: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:427 -#: src/view/com/util/forms/PostDropdownBtn.tsx:429 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Embed post" msgstr "嵌入貼文" @@ -2102,47 +2141,47 @@ msgstr "嵌入貼文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段,並將其貼上到您網站的 HTML 程式碼中即可。" -#: src/components/dialogs/EmbedConsent.tsx:101 +#: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" msgstr "僅啟用 {0}" -#: src/screens/Moderation/index.tsx:342 +#: src/screens/Moderation/index.tsx:343 msgid "Enable adult content" msgstr "顯示成人內容" -#: src/components/dialogs/EmbedConsent.tsx:82 -#: src/components/dialogs/EmbedConsent.tsx:89 +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 msgid "Enable external media" msgstr "啟用外部媒體" -#: src/view/screens/PreferencesExternalEmbeds.tsx:74 +#: src/view/screens/PreferencesExternalEmbeds.tsx:71 msgid "Enable media players for" msgstr "啟用媒體播放器" -#: src/view/screens/NotificationsSettings.tsx:65 #: src/view/screens/NotificationsSettings.tsx:68 +#: src/view/screens/NotificationsSettings.tsx:71 msgid "Enable priority notifications" msgstr "啟用優先通知" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:380 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 msgid "Enable subtitles" msgstr "啟用字幕" -#: src/components/dialogs/EmbedConsent.tsx:94 +#: src/components/dialogs/EmbedConsent.tsx:93 msgid "Enable this source only" msgstr "僅啟用此來源" -#: src/screens/Messages/Settings.tsx:131 -#: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:353 +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:354 msgid "Enabled" msgstr "啟用" -#: src/screens/Profile/Sections/Feed.tsx:112 +#: src/screens/Profile/Sections/Feed.tsx:114 msgid "End of feed" msgstr "已經到底部啦!" -#: src/view/com/composer/videos/SubtitleDialog.tsx:161 +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 msgid "Ensure you have selected a language for each subtitle file." msgstr "請確認您已為每個字幕檔案選擇一種語言。" @@ -2150,7 +2189,7 @@ msgstr "請確認您已為每個字幕檔案選擇一種語言。" msgid "Enter a name for this App Password" msgstr "輸入此應用程式專用密碼的名稱" -#: src/screens/Login/SetNewPasswordForm.tsx:139 +#: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "輸入密碼" @@ -2159,6 +2198,10 @@ msgstr "輸入密碼" msgid "Enter a word or tag" msgstr "輸入文字或標籤" +#: src/components/dialogs/VerifyEmailDialog.tsx:75 +msgid "Enter Code" +msgstr "輸入驗證碼" + #: src/view/com/modals/VerifyEmail.tsx:113 msgid "Enter Confirmation Code" msgstr "輸入驗證碼" @@ -2167,20 +2210,20 @@ msgstr "輸入驗證碼" msgid "Enter the code you received to change your password." msgstr "輸入您收到的驗證碼以更改密碼。" -#: src/view/com/modals/ChangeHandle.tsx:364 +#: src/view/com/modals/ChangeHandle.tsx:357 msgid "Enter the domain you want to use" msgstr "輸入您想使用的網域" -#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:113 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." msgstr "輸入您用於建立帳號的電子郵件。我們將向您發送一個「重設碼」,來讓您設定新密碼。" -#: src/components/dialogs/BirthDateSettings.tsx:108 +#: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" msgstr "輸入您的出生日期" -#: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:152 +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 msgid "Enter your email address" msgstr "輸入您的電子郵件地址" @@ -2192,10 +2235,14 @@ msgstr "請在上方輸入您的新電子郵件地址" msgid "Enter your new email address below." msgstr "請在下方輸入您的新電子郵件地址。" -#: src/screens/Login/index.tsx:101 +#: src/screens/Login/index.tsx:98 msgid "Enter your username and password" msgstr "輸入您的用戶名稱和密碼" +#: src/view/com/composer/Composer.tsx:1350 +msgid "Error" +msgstr "錯誤" + #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" msgstr "儲存檔案時發生錯誤" @@ -2204,12 +2251,12 @@ msgstr "儲存檔案時發生錯誤" msgid "Error receiving captcha response." msgstr "Captcha 給出了錯誤的回應。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 -#: src/view/screens/Search/Search.tsx:116 +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 msgid "Error:" msgstr "錯誤:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 msgid "Everybody" msgstr "所有人" @@ -2221,10 +2268,8 @@ msgstr "所有人都可以回覆" msgid "Everybody can reply to this post." msgstr "所有人都可以回覆這則貼文。" -#: src/components/dms/MessagesNUX.tsx:131 -#: src/components/dms/MessagesNUX.tsx:134 -#: src/screens/Messages/Settings.tsx:75 -#: src/screens/Messages/Settings.tsx:78 +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "所有人" @@ -2244,7 +2289,7 @@ msgstr "排除已跟隨的用戶" msgid "Excludes users you follow" msgstr "排除已跟隨的用戶" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:397 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 msgid "Exit fullscreen" msgstr "退出全螢幕" @@ -2252,11 +2297,11 @@ msgstr "退出全螢幕" msgid "Exits account deletion process" msgstr "離開刪除帳號流程" -#: src/view/com/modals/ChangeHandle.tsx:145 +#: src/view/com/modals/ChangeHandle.tsx:138 msgid "Exits handle change process" msgstr "離開修改帳號代碼流程" -#: src/view/com/modals/crop-image/CropImage.web.tsx:160 +#: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "離開圖片裁剪流程" @@ -2276,12 +2321,16 @@ msgstr "展開替代文字" msgid "Expand list of users" msgstr "展開用戶清單" -#: src/view/com/composer/ComposerReplyTo.tsx:82 -#: src/view/com/composer/ComposerReplyTo.tsx:85 +#: src/view/com/composer/ComposerReplyTo.tsx:70 +#: src/view/com/composer/ComposerReplyTo.tsx:73 msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊您正在回覆的完整貼文" -#: src/view/screens/NotificationsSettings.tsx:83 +#: src/lib/api/index.ts:376 +msgid "Expected uri to resolve to a record" +msgstr "URI 應解析為記錄" + +#: src/view/screens/NotificationsSettings.tsx:78 msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." msgstr "實驗性選項:啟用此偏好設定後,您將僅收到來自您已跟隨用戶的回覆和引用通知。我們將陸續在此新增更多控制選項。" @@ -2301,32 +2350,32 @@ msgstr "露骨或可能令人不安的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/view/screens/Settings/index.tsx:752 +#: src/view/screens/Settings/index.tsx:753 msgid "Export my data" msgstr "匯出我的資料" -#: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/ExportCarDialog.tsx:61 +#: src/view/screens/Settings/index.tsx:764 msgid "Export My Data" msgstr "匯出我的資料" -#: src/components/dialogs/EmbedConsent.tsx:55 -#: src/components/dialogs/EmbedConsent.tsx:59 +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 msgid "External Media" msgstr "外部媒體" -#: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:65 +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/view/screens/PreferencesExternalEmbeds.tsx:62 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "外部媒體可能允許網站收集有關您和您裝置的資料。在您按下「播放」按鈕之前,不會傳送或請求任何資料。" -#: src/Navigation.tsx:310 -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#: src/view/screens/Settings/index.tsx:645 +#: src/Navigation.tsx:309 +#: src/view/screens/PreferencesExternalEmbeds.tsx:51 +#: src/view/screens/Settings/index.tsx:646 msgid "External Media Preferences" msgstr "外部媒體偏好" -#: src/view/screens/Settings/index.tsx:636 +#: src/view/screens/Settings/index.tsx:637 msgid "External media settings" msgstr "外部媒體設定" @@ -2335,12 +2384,12 @@ msgstr "外部媒體設定" msgid "Failed to create app password." msgstr "無法建立應用程式專用密碼。" -#: src/screens/StarterPack/Wizard/index.tsx:229 -#: src/screens/StarterPack/Wizard/index.tsx:237 +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 msgid "Failed to create starter pack" -msgstr "無法建立入門包" +msgstr "無法建立新手包" -#: src/view/com/modals/CreateOrEditList.tsx:194 +#: src/view/com/modals/CreateOrEditList.tsx:186 msgid "Failed to create the list. Check your internet connection and try again." msgstr "無法建立列表。請檢查您的網路連線並重試。" @@ -2348,25 +2397,24 @@ msgstr "無法建立列表。請檢查您的網路連線並重試。" msgid "Failed to delete message" msgstr "無法刪除訊息" -#: src/view/com/util/forms/PostDropdownBtn.tsx:194 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Failed to delete post, please try again" msgstr "無法刪除貼文,請再試一次" -#: src/screens/StarterPack/StarterPackScreen.tsx:686 +#: src/screens/StarterPack/StarterPackScreen.tsx:697 msgid "Failed to delete starter pack" -msgstr "無法刪除入門包" +msgstr "無法刪除新手包" #: src/view/screens/Search/Explore.tsx:427 #: src/view/screens/Search/Explore.tsx:455 msgid "Failed to load feeds preferences" msgstr "無法載入動態源偏好" -#: src/components/dialogs/GifSelect.ios.tsx:196 -#: src/components/dialogs/GifSelect.tsx:212 +#: src/components/dialogs/GifSelect.tsx:224 msgid "Failed to load GIFs" msgstr "無法載入 GIF" -#: src/screens/Messages/Conversation/MessageListError.tsx:23 +#: src/screens/Messages/components/MessageListError.tsx:23 msgid "Failed to load past messages" msgstr "無法載入過去的訊息" @@ -2379,7 +2427,11 @@ msgstr "無法載入建議的動態源" msgid "Failed to load suggested follows" msgstr "無法載入建議的跟隨者" -#: src/view/com/lightbox/Lightbox.tsx:90 +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "無法釘選貼文" + +#: src/view/com/lightbox/Lightbox.tsx:97 msgid "Failed to save image: {0}" msgstr "無法儲存圖片:{0}" @@ -2387,40 +2439,44 @@ msgstr "無法儲存圖片:{0}" msgid "Failed to save notification preferences, please try again" msgstr "無法儲存通知偏好設定,請再試一次" -#: src/components/dms/MessageItem.tsx:225 +#: src/lib/api/index.ts:145 +#: src/lib/api/index.ts:170 +#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." +#~ msgstr "無法儲存貼文互動限制。您的貼文已發佈,但其他用戶可能仍然能夠與其互動。" + +#: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "無法傳送" -#: src/components/moderation/LabelsOnMeDialog.tsx:225 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:87 +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "無法提交申訴,請再試一次。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:223 +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 msgid "Failed to toggle thread mute, please try again" msgstr "無法將討論串設為靜音,請再試一次" -#: src/components/FeedCard.tsx:273 +#: src/components/FeedCard.tsx:276 msgid "Failed to update feeds" msgstr "無法更新動態" -#: src/components/dms/MessagesNUX.tsx:60 -#: src/screens/Messages/Settings.tsx:35 +#: src/screens/Messages/Settings.tsx:36 msgid "Failed to update settings" msgstr "無法更新設定" -#: src/state/queries/video/video-upload.ts:67 -#: src/state/queries/video/video-upload.web.ts:64 -#: src/state/queries/video/video-upload.web.ts:68 -#: src/state/queries/video/video-upload.web.ts:78 +#: src/lib/media/video/upload.ts:72 +#: src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 +#: src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "上傳影片失敗" -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:225 msgid "Feed" msgstr "動態" -#: src/components/FeedCard.tsx:131 +#: src/components/FeedCard.tsx:134 #: src/view/com/feeds/FeedSourceCard.tsx:250 msgid "Feed by {0}" msgstr "{0} 建立的動態源" @@ -2430,31 +2486,36 @@ msgid "Feed toggle" msgstr "切換動態源" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:346 +#: src/view/shell/Drawer.tsx:348 msgid "Feedback" msgstr "意見回饋" -#: src/Navigation.tsx:353 -#: src/screens/StarterPack/StarterPackScreen.tsx:172 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:224 -#: src/view/screens/Search/Search.tsx:375 -#: src/view/shell/desktop/LeftNav.tsx:373 -#: src/view/shell/Drawer.tsx:497 -#: src/view/shell/Drawer.tsx:498 +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "意見回饋已發送!" + +#: src/Navigation.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:505 msgid "Feeds" msgstr "動態源" -#: src/view/screens/SavedFeeds.tsx:181 +#: src/view/screens/SavedFeeds.tsx:205 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "動態源是一種自訂演算法,使用者只需掌握一點開發技巧即可輕鬆構建。更多資訊請<0/>。" -#: src/components/FeedCard.tsx:270 +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "動態已更新!" -#: src/view/com/modals/ChangeHandle.tsx:475 +#: src/view/com/modals/ChangeHandle.tsx:468 msgid "File Contents" msgstr "檔案內容" @@ -2466,7 +2527,7 @@ msgstr "文件儲存成功!" msgid "Filter from feeds" msgstr "動態源中的篩選" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Finalizing" msgstr "正在完成" @@ -2476,19 +2537,19 @@ msgstr "正在完成" msgid "Find accounts to follow" msgstr "尋找一些帳號來跟隨" -#: src/view/screens/Search/Search.tsx:439 +#: src/view/screens/Search/Search.tsx:612 msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 上尋找貼文和用戶" -#: src/view/screens/PreferencesFollowingFeed.tsx:51 +#: src/view/screens/PreferencesFollowingFeed.tsx:52 msgid "Fine-tune the content you see on your Following feed." msgstr "調整您在「Following」動態源中所看到的內容。" -#: src/view/screens/PreferencesThreads.tsx:54 +#: src/view/screens/PreferencesThreads.tsx:55 msgid "Fine-tune the discussion threads." msgstr "微調討論串。" -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "完成" @@ -2496,25 +2557,16 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Onboarding/StepFinished.tsx:276 +#: src/screens/Onboarding/StepFinished.tsx:267 msgid "Flexible" msgstr "靈活" -#: src/view/com/modals/EditImage.tsx:116 -msgid "Flip horizontal" -msgstr "水平翻轉" - -#: src/view/com/modals/EditImage.tsx:121 -#: src/view/com/modals/EditImage.tsx:288 -msgid "Flip vertically" -msgstr "垂直翻轉" - #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:356 -#: src/components/ProfileHoverCard/index.web.tsx:446 -#: src/components/ProfileHoverCard/index.web.tsx:457 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:225 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 msgid "Follow" msgstr "跟隨" @@ -2523,12 +2575,12 @@ msgctxt "action" msgid "Follow" msgstr "跟隨" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:209 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:126 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 msgid "Follow {0}" msgstr "跟隨 {0}" -#: src/view/com/posts/AviFollowButton.tsx:69 +#: src/view/com/posts/AviFollowButton.tsx:68 msgid "Follow {name}" msgstr "跟隨 {name}" @@ -2536,23 +2588,23 @@ msgstr "跟隨 {name}" msgid "Follow 7 accounts" msgstr "跟隨 7 個帳號" -#: src/view/com/profile/ProfileMenu.tsx:246 -#: src/view/com/profile/ProfileMenu.tsx:257 +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 msgid "Follow Account" msgstr "跟隨帳號" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:434 msgid "Follow all" msgstr "全部跟隨" -#: src/view/com/profile/FollowButton.tsx:79 -msgctxt "action" +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 msgid "Follow Back" msgstr "回跟" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:223 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:142 +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" msgid "Follow Back" msgstr "回跟" @@ -2566,7 +2618,7 @@ msgstr "已被您跟隨的 <0>{0} 跟隨" #: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "已被您跟隨的 <0>{0} 和{1, plural, one {其他 # 人跟隨} other {其他 # 人跟}}" +msgstr "已被您跟隨的 <0>{0} 和{1, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" #: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" @@ -2576,7 +2628,7 @@ msgstr "已被您跟隨的 <0>{0} 和 <1>{1} 跟隨" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "已被您跟隨的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "您跟隨的用戶" @@ -2588,62 +2640,72 @@ msgstr "已跟隨您" msgid "followed you back" msgstr "已回跟您" -#: src/view/screens/ProfileFollowers.tsx:29 #: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" msgstr "跟隨者" -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:186 msgid "Followers of @{0} that you know" msgstr "您所認識的這些人也跟隨了 @{0}" -#: src/screens/Profile/KnownFollowers.tsx:108 -#: src/screens/Profile/KnownFollowers.tsx:118 +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 msgid "Followers you know" msgstr "您也認識的跟隨者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:350 -#: src/components/ProfileHoverCard/index.web.tsx:445 -#: src/components/ProfileHoverCard/index.web.tsx:456 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:221 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:147 -#: src/view/screens/Feeds.tsx:630 -#: src/view/screens/ProfileFollows.tsx:29 +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 #: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/SavedFeeds.tsx:416 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "跟隨中" -#: src/components/ProfileCard.tsx:316 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:94 +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 msgid "Following {0}" msgstr "已跟隨 {0}" -#: src/view/com/posts/AviFollowButton.tsx:51 +#: src/view/com/posts/AviFollowButton.tsx:50 msgid "Following {name}" msgstr "已跟隨 {name}" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Following feed preferences" msgstr "「Following」動態源偏好" -#: src/Navigation.tsx:297 -#: src/view/screens/PreferencesFollowingFeed.tsx:48 -#: src/view/screens/Settings/index.tsx:548 +#: src/Navigation.tsx:296 +#: src/view/screens/PreferencesFollowingFeed.tsx:49 +#: src/view/screens/Settings/index.tsx:549 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好" -#: src/screens/Profile/Header/Handle.tsx:31 +#: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "跟隨您" -#: src/components/Pills.tsx:174 +#: src/components/Pills.tsx:175 msgid "Follows You" msgstr "跟隨您" +#: src/components/dialogs/nuxs/NeueTypography.tsx:71 +#: src/screens/Settings/AppearanceSettings.tsx:141 +msgid "Font" +msgstr "字體" + +#: src/components/dialogs/nuxs/NeueTypography.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:161 +msgid "Font size" +msgstr "字體大小" + #: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "食物" @@ -2655,20 +2717,25 @@ msgstr "為了保護您的帳號安全,我們需要將驗證碼發送到您的 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "為了保護您的帳號安全,您將無法再次查看此內容。如果您丟失了此密碼,您將需要再產生一個新的密碼。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:143 +msgid "For the best experience, we recommend using the theme font." +msgstr "為了獲得最佳體驗,我們建議使用主題字體。" + #: src/components/dialogs/MutedWords.tsx:178 msgid "Forever" msgstr "永遠" -#: src/screens/Login/index.tsx:129 -#: src/screens/Login/index.tsx:144 +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "忘記密碼" -#: src/screens/Login/LoginForm.tsx:233 +#: src/screens/Login/LoginForm.tsx:230 msgid "Forgot password?" msgstr "忘記密碼?" -#: src/screens/Login/LoginForm.tsx:244 +#: src/screens/Login/LoginForm.tsx:241 msgid "Forgot?" msgstr "忘記了?" @@ -2676,35 +2743,31 @@ msgstr "忘記了?" msgid "Frequently Posts Unwanted Content" msgstr "頻繁發佈不當內容" -#: src/screens/Hashtag.tsx:116 +#: src/screens/Hashtag.tsx:117 msgid "From @{sanitizedAuthor}" msgstr "來自 @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:271 +#: src/view/com/posts/FeedItem.tsx:273 msgctxt "from-feed" msgid "From <0/>" msgstr "來自 <0/>" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:398 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 msgid "Fullscreen" msgstr "全螢幕" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 msgid "Gallery" msgstr "相簿" -#: src/components/StarterPack/ProfileStarterPacks.tsx:279 +#: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Generate a starter pack" -msgstr "建立入門包" +msgstr "建立新手包" -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:352 msgid "Get help" msgstr "取得幫助" -#: src/components/dms/MessagesNUX.tsx:168 -msgid "Get started" -msgstr "開始" - #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" @@ -2718,7 +2781,7 @@ msgstr "開始吧" msgid "GIF" msgstr "GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:225 +#: src/screens/Onboarding/StepProfile/index.tsx:234 msgid "Give your profile a face" msgstr "為您的個人檔案增添新顏" @@ -2726,14 +2789,13 @@ msgstr "為您的個人檔案增添新顏" msgid "Glaring violations of law or terms of service" msgstr "明顯違反法律或服務條款" -#: src/components/moderation/ScreenHider.tsx:160 -#: src/components/moderation/ScreenHider.tsx:169 -#: src/view/com/auth/LoggedOut.tsx:67 -#: src/view/com/auth/LoggedOut.tsx:68 -#: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:112 -#: src/view/screens/ProfileList.tsx:1026 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "返回" @@ -2741,39 +2803,39 @@ msgstr "返回" #: src/screens/List/ListHiddenScreen.tsx:210 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:745 -#: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:117 -#: src/view/screens/ProfileList.tsx:1031 +#: src/screens/StarterPack/StarterPackScreen.tsx:756 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "返回" -#: src/components/dms/ReportDialog.tsx:154 +#: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:108 +#: src/components/ReportDialog/SubmitView.tsx:109 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/BackNextButtons.tsx:34 +#: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "返回上一步" -#: src/screens/StarterPack/Wizard/index.tsx:299 +#: src/screens/StarterPack/Wizard/index.tsx:308 msgid "Go back to the previous step" msgstr "返回上一步" -#: src/view/screens/NotFound.tsx:55 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "前往首頁" -#: src/view/screens/NotFound.tsx:54 +#: src/view/screens/NotFound.tsx:56 msgid "Go Home" msgstr "前往首頁" -#: src/screens/Messages/List/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:264 msgid "Go to conversation with {0}" msgstr "與 {0} 對話" -#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/screens/Login/ForgotPasswordForm.tsx:165 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" msgstr "前往下一步" @@ -2787,6 +2849,8 @@ msgid "Go to user's profile" msgstr "前往用戶的個人檔案" #: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:199 +#: src/view/com/composer/labels/LabelsBtn.tsx:202 msgid "Graphic Media" msgstr "敏感媒體" @@ -2794,11 +2858,11 @@ msgstr "敏感媒體" msgid "Half way there!" msgstr "已經完成一半了!" -#: src/view/com/modals/ChangeHandle.tsx:260 +#: src/view/com/modals/ChangeHandle.tsx:253 msgid "Handle" msgstr "帳號代碼" -#: src/view/screens/AccessibilitySettings.tsx:120 +#: src/view/screens/AccessibilitySettings.tsx:118 msgid "Haptics" msgstr "觸覺" @@ -2806,24 +2870,24 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡作劇或其他無法容忍的行為" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:332 msgid "Hashtag" msgstr "標籤" -#: src/components/RichText.tsx:218 +#: src/components/RichText.tsx:225 msgid "Hashtag: #{tag}" msgstr "標籤:#{tag}" -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:173 msgid "Having trouble?" msgstr "遇到問題?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:359 +#: src/view/shell/Drawer.tsx:361 msgid "Help" msgstr "幫助" -#: src/screens/Onboarding/StepProfile/index.tsx:228 +#: src/screens/Onboarding/StepProfile/index.tsx:237 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "透過上傳圖片或建立頭像來幫助人們知道您不是機器人。" @@ -2831,56 +2895,56 @@ msgstr "透過上傳圖片或建立頭像來幫助人們知道您不是機器人 msgid "Here is your app password." msgstr "這是您的應用程式專用密碼。" -#: src/components/ListCard.tsx:128 +#: src/components/ListCard.tsx:130 msgid "Hidden list" msgstr "隱藏列表" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:134 #: src/components/moderation/PostHider.tsx:122 #: src/lib/moderation/useLabelBehaviorDescription.ts:15 #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:640 +#: src/view/com/util/forms/PostDropdownBtn.tsx:684 msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/FeedItem.tsx:473 +#: src/view/com/notifications/FeedItem.tsx:477 msgctxt "action" msgid "Hide" msgstr "隱藏" -#: src/view/com/util/forms/PostDropdownBtn.tsx:501 -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 msgid "Hide post for me" msgstr "為我隱藏貼文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:518 -#: src/view/com/util/forms/PostDropdownBtn.tsx:528 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 msgid "Hide reply for everyone" msgstr "為所有人隱藏回覆" -#: src/view/com/util/forms/PostDropdownBtn.tsx:500 -#: src/view/com/util/forms/PostDropdownBtn.tsx:506 +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 msgid "Hide reply for me" msgstr "為我隱藏回覆" -#: src/components/moderation/ContentHider.tsx:68 +#: src/components/moderation/ContentHider.tsx:129 #: src/components/moderation/PostHider.tsx:79 msgid "Hide the content" msgstr "隱藏內容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 msgid "Hide this post?" msgstr "隱藏這則貼文?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:635 -#: src/view/com/util/forms/PostDropdownBtn.tsx:697 +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 msgid "Hide this reply?" msgstr "隱藏這個回覆?" -#: src/view/com/notifications/FeedItem.tsx:464 +#: src/view/com/notifications/FeedItem.tsx:468 msgid "Hide user list" msgstr "隱藏用戶列表" @@ -2904,7 +2968,7 @@ msgstr "抱歉,動態源的伺服器給出了錯誤的回應。請向該動態 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "抱歉,我們無法找到這個動態源,它可能已被刪除。" -#: src/screens/Moderation/index.tsx:60 +#: src/screens/Moderation/index.tsx:61 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參閱下方詳情。如果問題持續存在,請聯繫我們。" @@ -2912,45 +2976,49 @@ msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/state/queries/video/video.ts:165 +#: src/view/com/composer/state/video.ts:427 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "別急!我們將逐步開放影片功能,您還在隊列中。請稍後再回來!" -#: src/Navigation.tsx:550 -#: src/Navigation.tsx:570 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 -#: src/view/shell/Drawer.tsx:429 -#: src/view/shell/Drawer.tsx:430 +#: src/Navigation.tsx:549 +#: src/Navigation.tsx:569 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:369 +#: src/view/shell/Drawer.tsx:420 msgid "Home" msgstr "首頁" -#: src/view/com/modals/ChangeHandle.tsx:414 +#: src/view/com/modals/ChangeHandle.tsx:407 msgid "Host:" msgstr "主機:" -#: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:169 -#: src/screens/Signup/StepInfo/index.tsx:106 -#: src/view/com/modals/ChangeHandle.tsx:275 +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +#: src/view/com/modals/ChangeHandle.tsx:268 msgid "Hosting provider" msgstr "託管服務供應商" -#: src/view/com/modals/InAppBrowserConsent.tsx:44 +#: src/view/com/modals/InAppBrowserConsent.tsx:41 msgid "How should we open this link?" msgstr "我們該如何開啟此連結?" #: src/view/com/modals/VerifyEmail.tsx:222 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:132 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:135 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 msgid "I have a code" msgstr "我有驗證碼" +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +#: src/components/dialogs/VerifyEmailDialog.tsx:203 +msgid "I Have a Code" +msgstr "我有驗證碼" + #: src/view/com/modals/VerifyEmail.tsx:224 msgid "I have a confirmation code" msgstr "我有驗證碼" -#: src/view/com/modals/ChangeHandle.tsx:278 +#: src/view/com/modals/ChangeHandle.tsx:271 msgid "I have my own domain" msgstr "我擁有自己的網域" @@ -2963,19 +3031,15 @@ msgstr "我瞭解" msgid "If alt text is long, toggles alt text expanded state" msgstr "替代文字過長時,切換替代文字的展開狀態" -#: src/view/com/modals/SelfLabel.tsx:128 -msgid "If none are selected, suitable for all ages." -msgstr "若不勾選,則預設為全年齡向。" - -#: src/screens/Signup/StepInfo/Policies.tsx:89 +#: src/screens/Signup/StepInfo/Policies.tsx:110 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." msgstr "如果根據您所在國家的法律,您尚未成年,則您的父母或法定監護人必須代表您閱讀這些條款。" -#: src/view/screens/ProfileList.tsx:720 +#: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "如果刪除這個列表,您將無法恢復它。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:626 +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 msgid "If you remove this post, you won't be able to recover it." msgstr "如果刪除這則貼文,您將無法恢復它。" @@ -2991,16 +3055,11 @@ msgstr "如果您想更改帳號代碼或電子郵件,請在停用帳號前更 msgid "Illegal and Urgent" msgstr "違法" -#: src/view/com/util/images/Gallery.tsx:56 +#: src/view/com/util/images/Gallery.tsx:57 msgid "Image" msgstr "圖片" -#: src/view/com/modals/AltImage.tsx:122 -msgid "Image alt text" -msgstr "圖片替代文字" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:247 -#: src/components/StarterPack/ShareDialog.tsx:76 +#: src/components/StarterPack/ShareDialog.tsx:77 msgid "Image saved to your camera roll!" msgstr "圖片已儲存至您的圖片庫!" @@ -3016,7 +3075,7 @@ msgstr "冒充、錯誤資訊或虛假聲明" msgid "Inappropriate messages or explicit links" msgstr "不當訊息或露骨連結" -#: src/screens/Login/SetNewPasswordForm.tsx:127 +#: src/screens/Login/SetNewPasswordForm.tsx:121 msgid "Input code sent to your email for password reset" msgstr "輸入發送到您電子郵件地址的重設碼以重設密碼" @@ -3028,7 +3087,7 @@ msgstr "輸入刪除帳號的驗證碼" msgid "Input name for app password" msgstr "輸入應用程式專用密碼名稱" -#: src/screens/Login/SetNewPasswordForm.tsx:151 +#: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "輸入新密碼" @@ -3036,19 +3095,19 @@ msgstr "輸入新密碼" msgid "Input password for account deletion" msgstr "輸入密碼以刪除帳號" -#: src/screens/Login/LoginForm.tsx:273 +#: src/screens/Login/LoginForm.tsx:270 msgid "Input the code which has been emailed to you" msgstr "輸入寄送至您電子郵件地址的驗證碼" -#: src/screens/Login/LoginForm.tsx:203 +#: src/screens/Login/LoginForm.tsx:200 msgid "Input the username or email address you used at signup" msgstr "輸入註冊時使用的用戶名稱或電子郵件地址" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:225 msgid "Input your password" msgstr "輸入您的密碼" -#: src/view/com/modals/ChangeHandle.tsx:383 +#: src/view/com/modals/ChangeHandle.tsx:376 msgid "Input your preferred hosting provider" msgstr "輸入您的託管服務供應商" @@ -3056,15 +3115,15 @@ msgstr "輸入您的託管服務供應商" msgid "Input your user handle" msgstr "輸入您的帳號代碼" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 msgid "Interaction limited" msgstr "互動限制" -#: src/components/dms/MessagesNUX.tsx:82 -msgid "Introducing Direct Messages" -msgstr "為您隆重介紹「私人訊息」" +#: src/components/dialogs/nuxs/NeueTypography.tsx:47 +msgid "Introducing new font settings" +msgstr "為您隆重介紹「字體設定」" -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:142 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "無效的雙重驗證碼。" @@ -3073,12 +3132,12 @@ msgstr "無效的雙重驗證碼。" msgid "Invalid or unsupported post record" msgstr "無效或不支援的貼文紀錄" -#: src/screens/Login/LoginForm.tsx:91 -#: src/screens/Login/LoginForm.tsx:150 +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "用戶名稱或密碼無效" -#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 msgid "Invalid Verification Code" msgstr "無效的驗證碼" @@ -3086,7 +3145,7 @@ msgstr "無效的驗證碼" msgid "Invite a Friend" msgstr "邀請朋友" -#: src/screens/Signup/StepInfo/index.tsx:124 +#: src/screens/Signup/StepInfo/index.tsx:151 msgid "Invite code" msgstr "邀請碼" @@ -3104,7 +3163,7 @@ msgstr "邀請碼:1 個可用" #: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" -msgstr "用這個入門包來邀請他人!" +msgstr "用這個新手包來邀請他人!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" @@ -3112,52 +3171,62 @@ msgstr "邀請您的朋友跟隨您喜歡的動態源和人物" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "邀請,但僅限個人" +msgstr "邀請,但更具個人風格" -#: src/screens/StarterPack/Wizard/index.tsx:452 +#: src/screens/Signup/StepInfo/index.tsx:80 +msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" +msgstr "您似乎輸入了錯誤的電子郵件地址,您確定這是正確的嗎?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "這是正確的地址。" + +#: src/screens/StarterPack/Wizard/index.tsx:461 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "現在只有您一個人!使用上面的搜尋功能,將更多人加入到您的入門包中。" +msgstr "現在只有您一個人!使用上面的搜尋功能,將更多人加入到您的新手包中。" -#: src/view/com/composer/Composer.tsx:1126 +#: src/view/com/composer/Composer.tsx:1284 msgid "Job ID: {0}" msgstr "Job ID: {0}" -#: src/view/com/auth/SplashScreen.web.tsx:164 +#: src/view/com/auth/SplashScreen.web.tsx:177 msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212 -#: src/screens/StarterPack/StarterPackScreen.tsx:443 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:454 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Join Bluesky" msgstr "加入 Bluesky" -#: src/components/StarterPack/QrCode.tsx:56 +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "加入對話" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:492 -msgid "Joined {0}" -msgstr "" - #: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "新聞學" -#: src/components/moderation/ContentHider.tsx:147 +#: src/components/moderation/ContentHider.tsx:209 msgid "Labeled by {0}." msgstr "由 {0} 標記。" -#: src/components/moderation/ContentHider.tsx:145 +#: src/components/moderation/ContentHider.tsx:207 msgid "Labeled by the author." msgstr "由作者標記。" -#: src/view/screens/Profile.tsx:218 +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 msgid "Labels" msgstr "標記" +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "已加入標記" + #: src/screens/Profile/Sections/Labels.tsx:163 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "標記是對用戶和內容的標註,可用於隱藏、警告和對網路進行分類。" @@ -3174,48 +3243,58 @@ msgstr "您內容上的標記" msgid "Language selection" msgstr "語言選擇" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Language settings" msgstr "語言設定" -#: src/Navigation.tsx:160 -#: src/view/screens/LanguageSettings.tsx:90 +#: src/Navigation.tsx:159 +#: src/view/screens/LanguageSettings.tsx:88 msgid "Language Settings" msgstr "語言設定" -#: src/view/screens/Settings/index.tsx:505 +#: src/view/screens/Settings/index.tsx:506 msgid "Languages" msgstr "語言" -#: src/screens/Hashtag.tsx:97 -#: src/view/screens/Search/Search.tsx:359 +#: src/components/dialogs/nuxs/NeueTypography.tsx:103 +#: src/screens/Settings/AppearanceSettings.tsx:173 +msgid "Larger" +msgstr "更大" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "最新" -#: src/components/moderation/ScreenHider.tsx:146 +#: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" msgstr "瞭解詳情" -#: src/view/com/auth/SplashScreen.web.tsx:152 +#: src/view/com/auth/SplashScreen.web.tsx:165 msgid "Learn more about Bluesky" -msgstr "了解有關 Bluesky 的更多資訊" +msgstr "瞭解有關 Bluesky 的更多資訊" -#: src/components/moderation/ContentHider.tsx:66 -#: src/components/moderation/ContentHider.tsx:131 +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "瞭解有關自行託管 PDS 的更多資訊。" + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 msgid "Learn more about the moderation applied to this content." msgstr "詳細瞭解套用於此內容的內容管理。" #: src/components/moderation/PostHider.tsx:100 -#: src/components/moderation/ScreenHider.tsx:133 +#: src/components/moderation/ScreenHider.tsx:127 msgid "Learn more about this warning" msgstr "瞭解有關此警告的更多資訊" -#: src/screens/Moderation/index.tsx:583 -#: src/screens/Moderation/index.tsx:585 +#: src/screens/Moderation/index.tsx:587 +#: src/screens/Moderation/index.tsx:589 msgid "Learn more about what is public on Bluesky." msgstr "瞭解有關 Bluesky 上公開內容的更多資訊。" -#: src/components/moderation/ContentHider.tsx:155 +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 msgid "Learn more." msgstr "瞭解詳情。" @@ -3236,7 +3315,7 @@ msgstr "離開對話" msgid "Leave conversation" msgstr "離開對話" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 msgid "Leave them all unchecked to see any language." msgstr "全部留空以查看所有語言。" @@ -3248,21 +3327,20 @@ msgstr "離開 Bluesky" msgid "left to go." msgstr "個人在排在您前面。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:296 msgid "Let me choose" msgstr "讓我選擇" -#: src/screens/Login/index.tsx:130 -#: src/screens/Login/index.tsx:145 +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "讓我們來重設您的密碼吧!" -#: src/screens/Onboarding/StepFinished.tsx:296 +#: src/screens/Onboarding/StepFinished.tsx:287 msgid "Let's go!" msgstr "讓我們開始吧!" -#: src/screens/Settings/AppearanceSettings.tsx:90 -#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:105 msgid "Light" msgstr "亮色" @@ -3275,21 +3353,21 @@ msgstr "喜歡 10 個貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 個貼文以訓練「Discover」動態源" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:575 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:265 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Like this feed" msgstr "對這個動態源表示喜歡" -#: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:231 -#: src/Navigation.tsx:236 +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:230 +#: src/Navigation.tsx:235 msgid "Liked by" msgstr "表示喜歡的用戶" -#: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 -#: src/view/screens/ProfileFeedLikedBy.tsx:28 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "表示喜歡的用戶" @@ -3301,7 +3379,7 @@ msgstr "對您的自訂動態源表示喜歡" msgid "liked your post" msgstr "表示喜歡您的貼文" -#: src/view/screens/Profile.tsx:223 +#: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "喜歡" @@ -3309,24 +3387,24 @@ msgstr "喜歡" msgid "Likes on this post" msgstr "這條貼文的喜歡數" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "List" msgstr "列表" -#: src/view/com/modals/CreateOrEditList.tsx:250 +#: src/view/com/modals/CreateOrEditList.tsx:241 msgid "List Avatar" msgstr "列表頭像" -#: src/view/screens/ProfileList.tsx:414 +#: src/view/screens/ProfileList.tsx:422 msgid "List blocked" msgstr "列表已封鎖" -#: src/components/ListCard.tsx:149 +#: src/components/ListCard.tsx:150 #: src/view/com/feeds/FeedSourceCard.tsx:252 msgid "List by {0}" msgstr "列表由 {0} 建立" -#: src/view/screens/ProfileList.tsx:453 +#: src/view/screens/ProfileList.tsx:459 msgid "List deleted" msgstr "列表已刪除" @@ -3334,32 +3412,31 @@ msgstr "列表已刪除" msgid "List has been hidden" msgstr "列表已隱藏" -#: src/view/screens/ProfileList.tsx:159 +#: src/view/screens/ProfileList.tsx:170 msgid "List Hidden" msgstr "隱藏列表" -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileList.tsx:396 msgid "List muted" msgstr "列表已靜音" -#: src/view/com/modals/CreateOrEditList.tsx:264 +#: src/view/com/modals/CreateOrEditList.tsx:255 msgid "List Name" msgstr "列表名稱" -#: src/view/screens/ProfileList.tsx:428 +#: src/view/screens/ProfileList.tsx:435 msgid "List unblocked" msgstr "已解除封鎖的列表" -#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:409 msgid "List unmuted" msgstr "已解除靜音的列表" -#: src/Navigation.tsx:130 -#: src/view/screens/Profile.tsx:219 -#: src/view/screens/Profile.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:513 -#: src/view/shell/Drawer.tsx:514 +#: src/Navigation.tsx:129 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:407 +#: src/view/shell/Drawer.tsx:520 msgid "Lists" msgstr "列表" @@ -3379,22 +3456,22 @@ msgstr "載入更多推薦動態" msgid "Load more suggested follows" msgstr "載入更多推薦跟隨者" -#: src/view/screens/Notifications.tsx:219 +#: src/view/screens/Notifications.tsx:215 msgid "Load new notifications" msgstr "載入新的通知" -#: src/screens/Profile/Sections/Feed.tsx:94 -#: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:495 -#: src/view/screens/ProfileList.tsx:805 +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "載入新的貼文" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:99 +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 msgid "Loading..." msgstr "載入中…" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:255 msgid "Log" msgstr "日誌" @@ -3410,19 +3487,27 @@ msgstr "登入或註冊" msgid "Log out" msgstr "登出" -#: src/screens/Moderation/index.tsx:476 +#: src/screens/Moderation/index.tsx:480 msgid "Logged-out visibility" msgstr "登出可見性" -#: src/components/AccountList.tsx:58 +#: src/components/AccountList.tsx:65 msgid "Login to account that is not listed" msgstr "登入未列出的帳號" -#: src/components/RichText.tsx:219 +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "此 Logo 由 <0/> 繪製" + +#: src/view/shell/Drawer.tsx:296 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "此 Logo 由 <0>@sawaratsuki.bsky.social 繪製" + +#: src/components/RichText.tsx:226 msgid "Long press to open tag menu for #{tag}" msgstr "長按開啟 #{tag} 的標籤選單" -#: src/screens/Login/SetNewPasswordForm.tsx:116 +#: src/screens/Login/SetNewPasswordForm.tsx:110 msgid "Looks like XXXXX-XXXXX" msgstr "看起來像是 XXXXX-XXXXX" @@ -3438,7 +3523,7 @@ msgstr "看起來您已取消釘選所有動態源。但不用擔心,您可以 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "您看起來需要「Following」動態源,<0>點選這裡來新增。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:254 +#: src/components/StarterPack/ProfileStarterPacks.tsx:255 msgid "Make one for me" msgstr "為我製作一個" @@ -3455,30 +3540,35 @@ msgstr "管理您靜音的文字和標籤" msgid "Mark as read" msgstr "標記為已讀" -#: src/view/screens/AccessibilitySettings.tsx:106 -#: src/view/screens/Profile.tsx:222 +#: src/view/screens/AccessibilitySettings.tsx:104 +#: src/view/screens/Profile.tsx:230 msgid "Media" msgstr "媒體" +#: src/view/com/composer/labels/LabelsBtn.tsx:208 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "可能會使某些受眾感到不安或造成不適的媒體內容。" + #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" msgstr "被提及的用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 msgid "Mentioned users" msgstr "被提及的用戶" -#: src/view/com/util/ViewHeader.tsx:90 -#: src/view/screens/Search/Search.tsx:683 +#: src/components/Menu/index.tsx:94 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:881 msgid "Menu" msgstr "選單" -#: src/components/dms/MessageProfileButton.tsx:67 +#: src/components/dms/MessageProfileButton.tsx:62 msgid "Message {0}" msgstr "給 {0} 傳送訊息" #: src/components/dms/MessageMenu.tsx:72 -#: src/screens/Messages/List/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:165 msgid "Message deleted" msgstr "訊息已刪除" @@ -3486,23 +3576,23 @@ msgstr "訊息已刪除" msgid "Message from server: {0}" msgstr "來自伺服器的訊息:{0}" -#: src/screens/Messages/Conversation/MessageInput.tsx:140 +#: src/screens/Messages/components/MessageInput.tsx:140 msgid "Message input field" msgstr "訊息輸入欄位" -#: src/screens/Messages/Conversation/MessageInput.tsx:72 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:59 +#: src/screens/Messages/components/MessageInput.tsx:72 +#: src/screens/Messages/components/MessageInput.web.tsx:59 msgid "Message is too long" msgstr "訊息太長了" -#: src/screens/Messages/List/index.tsx:321 +#: src/screens/Messages/ChatList.tsx:318 msgid "Message settings" msgstr "訊息設定" -#: src/Navigation.tsx:565 -#: src/screens/Messages/List/index.tsx:164 -#: src/screens/Messages/List/index.tsx:246 -#: src/screens/Messages/List/index.tsx:317 +#: src/Navigation.tsx:564 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "訊息" @@ -3514,64 +3604,60 @@ msgstr "誤導性帳號" msgid "Misleading Post" msgstr "誤導性貼文" -#: src/screens/Settings/AppearanceSettings.tsx:78 -msgid "Mode" -msgstr "模式" - -#: src/Navigation.tsx:135 -#: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:527 +#: src/Navigation.tsx:134 +#: src/screens/Moderation/index.tsx:107 +#: src/view/screens/Settings/index.tsx:528 msgid "Moderation" msgstr "內容管理" -#: src/components/moderation/ModerationDetailsDialog.tsx:129 +#: src/components/moderation/ModerationDetailsDialog.tsx:133 msgid "Moderation details" msgstr "內容管理詳情" -#: src/components/ListCard.tsx:145 -#: src/view/com/modals/UserAddRemoveLists.tsx:216 +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 msgid "Moderation list by {0}" msgstr "由 {0} 建立的內容管理列表" -#: src/view/screens/ProfileList.tsx:899 +#: src/view/screens/ProfileList.tsx:902 msgid "Moderation list by <0/>" -msgstr "由 建立的內容管理列表" +msgstr "由 <0/> 建立的內容管理列表" -#: src/view/com/modals/UserAddRemoveLists.tsx:214 -#: src/view/screens/ProfileList.tsx:897 +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 msgid "Moderation list by you" msgstr "您建立的內容管理列表" -#: src/view/com/modals/CreateOrEditList.tsx:185 +#: src/view/com/modals/CreateOrEditList.tsx:177 msgid "Moderation list created" msgstr "已建立內容管理列表" -#: src/view/com/modals/CreateOrEditList.tsx:171 +#: src/view/com/modals/CreateOrEditList.tsx:163 msgid "Moderation list updated" msgstr "內容管理列表已更新" -#: src/screens/Moderation/index.tsx:249 +#: src/screens/Moderation/index.tsx:250 msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:140 -#: src/view/screens/ModerationModlists.tsx:58 +#: src/Navigation.tsx:139 +#: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "內容管理列表" -#: src/components/moderation/LabelPreference.tsx:247 +#: src/components/moderation/LabelPreference.tsx:246 msgid "moderation settings" msgstr "內容管理設定" -#: src/view/screens/Settings/index.tsx:521 +#: src/view/screens/Settings/index.tsx:522 msgid "Moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:245 msgid "Moderation states" msgstr "內容管理狀態" -#: src/screens/Moderation/index.tsx:218 +#: src/screens/Moderation/index.tsx:219 msgid "Moderation tools" msgstr "內容管理工具" @@ -3580,7 +3666,7 @@ msgstr "內容管理工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "內容管理者已將此內容標記為普通警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:629 +#: src/view/com/post-thread/PostThreadItem.tsx:619 msgid "More" msgstr "更多" @@ -3588,29 +3674,30 @@ msgstr "更多" msgid "More feeds" msgstr "更多動態源" -#: src/view/screens/ProfileList.tsx:709 +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 msgid "More options" msgstr "更多選項" -#: src/view/screens/PreferencesThreads.tsx:76 +#: src/view/screens/PreferencesThreads.tsx:77 msgid "Most-liked replies first" msgstr "最多喜歡數優先" -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/state.ts:92 msgid "Movies" msgstr "電影" -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:93 msgid "Music" msgstr "音樂" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:389 -msgctxt "video" +#: src/components/TagMenu/index.tsx:248 msgid "Mute" -msgstr "" +msgstr "靜音" -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" msgid "Mute" msgstr "靜音" @@ -3618,16 +3705,16 @@ msgstr "靜音" msgid "Mute {truncatedTag}" msgstr "靜音 {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:283 -#: src/view/com/profile/ProfileMenu.tsx:290 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "Mute Account" msgstr "靜音帳號" -#: src/view/screens/ProfileList.tsx:628 +#: src/view/screens/ProfileList.tsx:631 msgid "Mute accounts" msgstr "靜音帳號" -#: src/components/TagMenu/index.tsx:220 +#: src/components/TagMenu/index.tsx:205 msgid "Mute all {displayTag} posts" msgstr "將所有 {displayTag} 貼文靜音" @@ -3640,11 +3727,11 @@ msgstr "靜音對話" msgid "Mute in:" msgstr "靜音:" -#: src/view/screens/ProfileList.tsx:734 +#: src/view/screens/ProfileList.tsx:737 msgid "Mute list" msgstr "靜音列表" -#: src/view/screens/ProfileList.tsx:729 +#: src/view/screens/ProfileList.tsx:732 msgid "Mute these accounts?" msgstr "靜音這些帳號?" @@ -3672,30 +3759,26 @@ msgstr "僅在話題標籤中隱藏該文字" msgid "Mute this word until you unmute it" msgstr "將這個文字靜音,直到您取消靜音為止" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 msgid "Mute thread" msgstr "靜音討論串" -#: src/view/com/util/forms/PostDropdownBtn.tsx:481 -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 msgid "Mute words & tags" msgstr "靜音文字和標籤" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#~ msgid "Muted" -#~ msgstr "已靜音" - -#: src/screens/Moderation/index.tsx:264 +#: src/screens/Moderation/index.tsx:265 msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:145 -#: src/view/screens/ModerationMutedAccounts.tsx:109 +#: src/Navigation.tsx:144 +#: src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "已靜音帳號" -#: src/view/screens/ModerationMutedAccounts.tsx:117 +#: src/view/screens/ModerationMutedAccounts.tsx:116 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資訊完全只有您可以查看。" @@ -3703,41 +3786,41 @@ msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資 msgid "Muted by \"{0}\"" msgstr "被「{0}」靜音" -#: src/screens/Moderation/index.tsx:234 +#: src/screens/Moderation/index.tsx:235 msgid "Muted words & tags" msgstr "靜音文字和標籤" -#: src/view/screens/ProfileList.tsx:731 +#: src/view/screens/ProfileList.tsx:734 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "靜音資訊只有您可以查看。被靜音的帳號仍可以與您互動,但您將無法看到他們的貼文或收到來自他們的通知。" -#: src/components/dialogs/BirthDateSettings.tsx:35 -#: src/components/dialogs/BirthDateSettings.tsx:38 +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:730 +#: src/view/screens/Feeds.tsx:732 msgid "My Feeds" msgstr "我的動態源" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "我的個人檔案" -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "My saved feeds" msgstr "儲存的動態源" -#: src/view/screens/Settings/index.tsx:588 +#: src/view/screens/Settings/index.tsx:589 msgid "My Saved Feeds" msgstr "儲存的動態源" #: src/view/com/modals/AddAppPasswords.tsx:174 -#: src/view/com/modals/CreateOrEditList.tsx:279 +#: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "名稱" -#: src/view/com/modals/CreateOrEditList.tsx:143 +#: src/view/com/modals/CreateOrEditList.tsx:135 msgid "Name is required" msgstr "名稱是必填項" @@ -3749,60 +3832,64 @@ msgid "Name or Description Violates Community Standards" msgstr "名稱或描述違反社群標準" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "自然" -#: src/components/StarterPack/StarterPackCard.tsx:121 +#: src/components/StarterPack/StarterPackCard.tsx:124 msgid "Navigate to {0}" msgstr "跳至 {0}" -#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:76 -msgid "Navigate to starter pack" -msgstr "切換到入門包" - -#: src/screens/Login/ForgotPasswordForm.tsx:172 -#: src/screens/Login/LoginForm.tsx:319 +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "切換到下一畫面" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:72 msgid "Navigates to your profile" msgstr "切換到您的個人檔案" +#: src/components/dialogs/VerifyEmailDialog.tsx:156 +msgid "Need to change it?" +msgstr "需要變更嗎?" + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" msgstr "需要檢舉侵權嗎?" -#: src/screens/Onboarding/StepFinished.tsx:264 +#: src/screens/Onboarding/StepFinished.tsx:255 msgid "Never lose access to your followers or data." msgstr "永遠不會失去對您的跟隨者或資料的存取權。" -#: src/view/com/modals/ChangeHandle.tsx:515 +#: src/view/com/modals/ChangeHandle.tsx:508 msgid "Nevermind, create a handle for me" msgstr "不用了,為我建立一個帳號代碼" -#: src/view/screens/Lists.tsx:83 +#: src/view/screens/Lists.tsx:84 msgctxt "action" msgid "New" msgstr "新增" -#: src/view/screens/ModerationModlists.tsx:78 +#: src/view/screens/ModerationModlists.tsx:80 msgid "New" msgstr "新增" #: src/components/dms/dialogs/NewChatDialog.tsx:54 -#: src/screens/Messages/List/index.tsx:331 -#: src/screens/Messages/List/index.tsx:338 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "新對話" +#: src/components/dialogs/nuxs/NeueTypography.tsx:51 +msgid "New font settings ✨" +msgstr "全新字體設定 ✨" + #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" msgstr "新訊息" -#: src/view/com/modals/CreateOrEditList.tsx:241 +#: src/view/com/modals/CreateOrEditList.tsx:232 msgid "New Moderation List" msgstr "新的內容管理列表" @@ -3814,22 +3901,22 @@ msgstr "新密碼" msgid "New Password" msgstr "新密碼" -#: src/view/com/feeds/FeedPage.tsx:147 +#: src/view/com/feeds/FeedPage.tsx:143 msgctxt "action" msgid "New post" msgstr "新貼文" -#: src/view/screens/Feeds.tsx:580 -#: src/view/screens/Notifications.tsx:228 -#: src/view/screens/Profile.tsx:489 -#: src/view/screens/ProfileFeed.tsx:429 -#: src/view/screens/ProfileList.tsx:237 -#: src/view/screens/ProfileList.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +#: src/view/shell/desktop/LeftNav.tsx:303 msgid "New post" msgstr "新貼文" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:311 msgctxt "action" msgid "New Post" msgstr "新貼文" @@ -3838,30 +3925,30 @@ msgstr "新貼文" msgid "New user info dialog" msgstr "新用戶資訊對話框" -#: src/view/com/modals/CreateOrEditList.tsx:236 +#: src/view/com/modals/CreateOrEditList.tsx:227 msgid "New User List" msgstr "新的用戶列表" -#: src/view/screens/PreferencesThreads.tsx:73 +#: src/view/screens/PreferencesThreads.tsx:74 msgid "Newest replies first" msgstr "最新回覆優先" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:95 msgid "News" msgstr "新聞" +#: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/ForgotPasswordForm.tsx:149 -#: src/screens/Login/LoginForm.tsx:318 -#: src/screens/Login/LoginForm.tsx:325 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 -#: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/BackNextButtons.tsx:66 -#: src/screens/StarterPack/Wizard/index.tsx:183 -#: src/screens/StarterPack/Wizard/index.tsx:187 -#: src/screens/StarterPack/Wizard/index.tsx:358 -#: src/screens/StarterPack/Wizard/index.tsx:365 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3871,35 +3958,39 @@ msgstr "下一個" msgid "Next image" msgstr "下一張圖片" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:96 -#: src/view/screens/PreferencesFollowingFeed.tsx:131 -#: src/view/screens/PreferencesFollowingFeed.tsx:168 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:97 +#: src/view/screens/PreferencesFollowingFeed.tsx:132 +#: src/view/screens/PreferencesFollowingFeed.tsx:169 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "No" msgstr "關" -#: src/view/screens/ProfileFeed.tsx:564 -#: src/view/screens/ProfileList.tsx:879 +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "沒有描述" -#: src/view/com/modals/ChangeHandle.tsx:399 +#: src/view/com/modals/ChangeHandle.tsx:392 msgid "No DNS Panel" msgstr "無 DNS 控制台" -#: src/components/dialogs/GifSelect.ios.tsx:202 -#: src/components/dialogs/GifSelect.tsx:218 +#: src/components/dialogs/GifSelect.tsx:230 msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "未找到精選 GIF,Tenor 可能發生問題。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." msgstr "沒有找到任何動態。請嘗試以其他關鍵字搜尋。" -#: src/components/ProfileCard.tsx:336 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:116 +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "目前還沒有喜歡" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:109 msgid "No longer following {0}" msgstr "不再跟隨 {0}" @@ -3907,39 +3998,45 @@ msgstr "不再跟隨 {0}" msgid "No longer than 253 characters" msgstr "不超過 253 個字元" -#: src/screens/Messages/List/ChatListItem.tsx:106 +#: src/screens/Messages/components/ChatListItem.tsx:116 msgid "No messages yet" -msgstr "還沒有訊息" +msgstr "目前還沒有訊息" -#: src/screens/Messages/List/index.tsx:274 +#: src/screens/Messages/ChatList.tsx:271 msgid "No more conversations to show" msgstr "已經沒有對話啦!" #: src/view/com/notifications/Feed.tsx:121 msgid "No notifications yet!" -msgstr "還沒有通知!" +msgstr "目前還沒有通知!" -#: src/components/dms/MessagesNUX.tsx:149 -#: src/components/dms/MessagesNUX.tsx:152 -#: src/screens/Messages/Settings.tsx:93 -#: src/screens/Messages/Settings.tsx:96 +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "沒有人" #: src/components/WhoCanReply.tsx:237 msgid "No one but the author can quote this post." -msgstr "僅限發布者可以引用這則貼文。" +msgstr "僅限發佈者可以引用這則貼文。" -#: src/screens/Profile/Sections/Feed.tsx:64 +#: src/screens/Profile/Sections/Feed.tsx:65 msgid "No posts yet." msgstr "目前還沒有貼文。" -#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 -#: src/view/com/composer/text-input/web/Autocomplete.tsx:195 +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "目前還沒有引用" + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "目前還沒有轉貼" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 msgid "No result" msgstr "沒有結果" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:202 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 msgid "No results" msgstr "沒有結果" @@ -3947,37 +4044,49 @@ msgstr "沒有結果" msgid "No results found" msgstr "未找到結果" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:513 msgid "No results found for \"{query}\"" msgstr "未找到符合「{query}」的結果" #: src/view/com/modals/ListAddRemoveUsers.tsx:128 -#: src/view/screens/Search/Search.tsx:233 -#: src/view/screens/Search/Search.tsx:272 -#: src/view/screens/Search/Search.tsx:318 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 msgid "No results found for {query}" msgstr "未找到符合 {query} 的結果" -#: src/components/dialogs/GifSelect.ios.tsx:200 -#: src/components/dialogs/GifSelect.tsx:216 +#: src/components/dialogs/GifSelect.tsx:228 msgid "No search results found for \"{search}\"." msgstr "未找到符合「{search}」的搜尋結果。" -#: src/components/dialogs/EmbedConsent.tsx:105 -#: src/components/dialogs/EmbedConsent.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +#~ msgid "No self-labels can be applied to this post because it contains no media." +#~ msgstr "這則貼文不含任何媒體內容,因此無法加入標記。" + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" msgstr "不,謝謝" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 msgid "Nobody" msgstr "沒有人" -#: src/components/LikedByList.tsx:79 -#: src/components/LikesDialog.tsx:99 +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "還沒有人對此表示喜歡,也許您可以成為第一個!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "還沒有人引用此貼文,也許您可以成為第一個!" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "還沒有人轉貼此貼文,也許您可以成為第一個!" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 msgid "Nobody was found. Try searching for someone else." msgstr "沒有找到任何人。請嘗試以其他關鍵字搜尋。" @@ -3985,8 +4094,8 @@ msgstr "沒有找到任何人。請嘗試以其他關鍵字搜尋。" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/Navigation.tsx:125 -#: src/view/screens/Profile.tsx:119 +#: src/Navigation.tsx:124 +#: src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "未找到" @@ -3995,49 +4104,48 @@ msgstr "未找到" msgid "Not right now" msgstr "暫時不需要" -#: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:654 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:356 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:344 msgid "Note about sharing" msgstr "關於分享的注意事項" -#: src/screens/Moderation/index.tsx:574 +#: src/screens/Moderation/index.tsx:578 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一個開放且公開的網路。此設定僅限制您在 Bluesky 應用程式和網站上的內容可見性,其他應用程式可能不會遵循這個規則。您的內容仍可能由其他應用程式和網站顯示給未登入的使用者。" -#: src/screens/Messages/List/index.tsx:215 +#: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" msgstr "這裡什麼也沒有" -#: src/view/screens/NotificationsSettings.tsx:54 +#: src/view/screens/NotificationsSettings.tsx:57 msgid "Notification filters" msgstr "通知過濾" -#: src/Navigation.tsx:348 -#: src/view/screens/Notifications.tsx:119 +#: src/Navigation.tsx:347 +#: src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "通知設定" -#: src/view/screens/NotificationsSettings.tsx:39 +#: src/view/screens/NotificationsSettings.tsx:42 msgid "Notification Settings" msgstr "通知設定" -#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:117 msgid "Notification sounds" msgstr "通知音效" -#: src/screens/Messages/Settings.tsx:121 +#: src/screens/Messages/Settings.tsx:114 msgid "Notification Sounds" msgstr "通知音效" -#: src/Navigation.tsx:560 -#: src/view/screens/Notifications.tsx:145 -#: src/view/screens/Notifications.tsx:155 -#: src/view/screens/Notifications.tsx:203 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 -#: src/view/shell/Drawer.tsx:461 -#: src/view/shell/Drawer.tsx:462 +#: src/Navigation.tsx:559 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:384 +#: src/view/shell/Drawer.tsx:473 msgid "Notifications" msgstr "通知" @@ -4045,11 +4153,12 @@ msgstr "通知" msgid "now" msgstr "現在" -#: src/components/dms/MessageItem.tsx:170 +#: src/components/dms/MessageItem.tsx:197 msgid "Now" msgstr "現在" -#: src/view/com/modals/SelfLabel.tsx:104 +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Nudity" msgstr "裸露" @@ -4061,45 +4170,40 @@ msgstr "未貼上此類標記的裸露或成人內容" msgid "Off" msgstr "顯示" -#: src/components/dialogs/GifSelect.ios.tsx:237 -#: src/components/dialogs/GifSelect.tsx:257 -#: src/view/com/util/ErrorBoundary.tsx:55 +#: src/components/dialogs/GifSelect.tsx:269 +#: src/view/com/util/ErrorBoundary.tsx:57 msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:124 msgid "Oh no! Something went wrong." msgstr "糟糕!發生了一些錯誤。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:175 -msgid "Oh no! We weren't able to generate an image for you to share. Rest assured, we're glad you're here 🦋" -msgstr "" - -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:337 msgid "OK" msgstr "好的" -#: src/screens/Login/PasswordUpdatedForm.tsx:44 +#: src/screens/Login/PasswordUpdatedForm.tsx:38 msgid "Okay" msgstr "好的" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Oldest replies first" msgstr "最舊的回覆優先" -#: src/components/StarterPack/QrCode.tsx:70 +#: src/components/StarterPack/QrCode.tsx:75 msgid "on<0><1/><2><3/>" msgstr "在<0><1/><2><3/>" -#: src/view/screens/Settings/index.tsx:226 +#: src/view/screens/Settings/index.tsx:227 msgid "Onboarding reset" msgstr "重新開始引導流程" -#: src/view/com/composer/Composer.tsx:671 +#: src/view/com/composer/Composer.tsx:739 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺失了替代文字。" -#: src/screens/Onboarding/StepProfile/index.tsx:117 +#: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" msgstr "僅支援 .jpg 或 .png 格式的圖片" @@ -4111,7 +4215,11 @@ msgstr "只有{0}可以回覆。" msgid "Only contains letters, numbers, and hyphens" msgstr "只包含字母、數字和連字符" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "僅支援圖片檔案" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 msgid "Only WebVTT (.vtt) files are supported" msgstr "僅支援 WebVTT (.vtt) 檔案" @@ -4120,42 +4228,46 @@ msgid "Oops, something went wrong!" msgstr "糟糕,發生了錯誤!" #: src/components/Lists.tsx:199 -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 -#: src/view/screens/AppPasswords.tsx:68 -#: src/view/screens/NotificationsSettings.tsx:45 -#: src/view/screens/Profile.tsx:119 +#: src/components/StarterPack/ProfileStarterPacks.tsx:305 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +#: src/view/screens/AppPasswords.tsx:74 +#: src/view/screens/NotificationsSettings.tsx:48 +#: src/view/screens/Profile.tsx:128 msgid "Oops!" msgstr "糟糕!" -#: src/screens/Onboarding/StepFinished.tsx:260 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Open" msgstr "開放" -#: src/view/com/posts/AviFollowButton.tsx:87 +#: src/view/com/posts/AviFollowButton.tsx:86 msgid "Open {name} profile shortcut menu" msgstr "開啟 {name} 個人檔案快捷選單" -#: src/screens/Onboarding/StepProfile/index.tsx:277 +#: src/screens/Onboarding/StepProfile/index.tsx:286 msgid "Open avatar creator" msgstr "開啟頭像建立工具" -#: src/screens/Messages/List/ChatListItem.tsx:219 -#: src/screens/Messages/List/ChatListItem.tsx:220 +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 msgid "Open conversation options" msgstr "開啟對話選項" -#: src/screens/Messages/Conversation/MessageInput.web.tsx:165 -#: src/view/com/composer/Composer.tsx:820 -#: src/view/com/composer/Composer.tsx:821 +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:999 +#: src/view/com/composer/Composer.tsx:1000 msgid "Open emoji picker" msgstr "開啟表情符號選擇器" -#: src/view/screens/ProfileFeed.tsx:297 +#: src/view/screens/ProfileFeed.tsx:301 msgid "Open feed options menu" msgstr "開啟動態選項選單" -#: src/view/screens/Settings/index.tsx:702 +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "開啟 {niceUrl} 的連結" + +#: src/view/screens/Settings/index.tsx:703 msgid "Open links with in-app browser" msgstr "在內建瀏覽器中開啟連結" @@ -4163,7 +4275,7 @@ msgstr "在內建瀏覽器中開啟連結" msgid "Open message options" msgstr "開啟訊息選項" -#: src/screens/Moderation/index.tsx:230 +#: src/screens/Moderation/index.tsx:231 msgid "Open muted words and tags settings" msgstr "開啟靜音文字和標籤設定" @@ -4171,20 +4283,20 @@ msgstr "開啟靜音文字和標籤設定" msgid "Open navigation" msgstr "開啟導覽" -#: src/view/com/util/forms/PostDropdownBtn.tsx:350 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 msgid "Open post options menu" msgstr "開啟貼文選項選單" -#: src/screens/StarterPack/StarterPackScreen.tsx:540 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 msgid "Open starter pack menu" -msgstr "開啟入門包選單" +msgstr "開啟新手包選單" -#: src/view/screens/Settings/index.tsx:826 -#: src/view/screens/Settings/index.tsx:836 +#: src/view/screens/Settings/index.tsx:827 +#: src/view/screens/Settings/index.tsx:837 msgid "Open storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:814 +#: src/view/screens/Settings/index.tsx:815 msgid "Open system log" msgstr "開啟系統日誌" @@ -4192,53 +4304,57 @@ msgstr "開啟系統日誌" msgid "Opens {numItems} options" msgstr "開啟 {numItems} 個選項" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68 -msgid "Opens a dialog to choose who can reply to this thread" -msgstr "開啟對話窗來選擇哪些人可以回覆此討論串" +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "開啟對話框來向您的貼文加入內容警告" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "開啟對話框來選擇哪些人可以回覆此討論串" + +#: src/view/screens/Settings/index.tsx:456 msgid "Opens accessibility settings" msgstr "開啟無障礙設定" -#: src/view/screens/Log.tsx:58 +#: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "開啟除錯項目的額外詳細資訊" -#: src/view/screens/Settings/index.tsx:476 +#: src/view/screens/Settings/index.tsx:477 msgid "Opens appearance settings" msgstr "開啟外觀設定" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:74 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "開啟裝置相機" -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Opens chat settings" msgstr "開啟對話設定" -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "開啟編輯器" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Opens configurable language settings" msgstr "開啟可以更改的語言設定" -#: src/view/com/composer/photos/SelectPhotoBtn.tsx:40 +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "開啟裝置相簿" -#: src/view/screens/Settings/index.tsx:637 +#: src/view/screens/Settings/index.tsx:638 msgid "Opens external embeds settings" msgstr "開啟外部連結嵌入設定" #: src/view/com/auth/SplashScreen.tsx:50 -#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "開始建立新的 Bluesky 帳號的流程" -#: src/view/com/auth/SplashScreen.tsx:65 -#: src/view/com/auth/SplashScreen.web.tsx:114 +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign into your existing Bluesky account" msgstr "開始登入您現有的 Bluesky 帳號流程" @@ -4250,51 +4366,51 @@ msgstr "開啟 GIF 選擇對話框" msgid "Opens list of invite codes" msgstr "開啟邀請碼列表" -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Opens modal for account deactivation confirmation" msgstr "開啟帳號刪除的確認彈窗" -#: src/view/screens/Settings/index.tsx:796 +#: src/view/screens/Settings/index.tsx:797 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "開啟帳號刪除的確認彈窗。需要電子郵件驗證碼" -#: src/view/screens/Settings/index.tsx:731 +#: src/view/screens/Settings/index.tsx:732 msgid "Opens modal for changing your Bluesky password" msgstr "開啟修改 Bluesky 密碼的彈窗" -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Opens modal for choosing a new Bluesky handle" msgstr "開啟建立新 Bluesky 帳號代碼的彈窗" -#: src/view/screens/Settings/index.tsx:754 +#: src/view/screens/Settings/index.tsx:755 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "開啟下載 Bluesky 帳號數據(儲存庫)的彈窗" -#: src/view/screens/Settings/index.tsx:962 +#: src/view/screens/Settings/index.tsx:963 msgid "Opens modal for email verification" msgstr "開啟驗證電子郵件的彈窗" -#: src/view/com/modals/ChangeHandle.tsx:276 +#: src/view/com/modals/ChangeHandle.tsx:269 msgid "Opens modal for using custom domain" msgstr "開啟使用自訂網域的彈窗" -#: src/view/screens/Settings/index.tsx:522 +#: src/view/screens/Settings/index.tsx:523 msgid "Opens moderation settings" msgstr "開啟內容管理設定" -#: src/screens/Login/LoginForm.tsx:234 +#: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "開啟密碼重設表單" -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Opens screen with all saved feeds" msgstr "開啟包含所有已儲存的動態源之畫面" -#: src/view/screens/Settings/index.tsx:664 +#: src/view/screens/Settings/index.tsx:665 msgid "Opens the app password settings" msgstr "開啟應用程式專用密碼設定畫面" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Opens the Following feed preferences" msgstr "開啟「Following」動態源偏好" @@ -4302,25 +4418,25 @@ msgstr "開啟「Following」動態源偏好" msgid "Opens the linked website" msgstr "開啟網站連結" -#: src/view/screens/Settings/index.tsx:827 -#: src/view/screens/Settings/index.tsx:837 +#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:838 msgid "Opens the storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:815 +#: src/view/screens/Settings/index.tsx:816 msgid "Opens the system log page" msgstr "開啟系統日誌頁面" -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Opens the threads preferences" msgstr "開啟討論串偏好" -#: src/view/com/notifications/FeedItem.tsx:551 -#: src/view/com/util/UserAvatar.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:555 +#: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" msgstr "開啟這個個人檔案" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:95 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 msgid "Opens video picker" msgstr "開啟影片選擇器" @@ -4328,8 +4444,8 @@ msgstr "開啟影片選擇器" msgid "Option {0} of {numItems}" msgstr "{0} 選項,共 {numItems} 個" -#: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:166 +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 msgid "Optionally provide additional information below:" msgstr "在以下提供額外訊息(可選):" @@ -4337,7 +4453,7 @@ msgstr "在以下提供額外訊息(可選):" msgid "Options:" msgstr "選項:" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 msgid "Or combine these options:" msgstr "或者組合這些選項:" @@ -4350,14 +4466,15 @@ msgid "Or, log into one of your other accounts." msgstr "或登入您的其他帳號。" #: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:183 msgid "Other" msgstr "其他" -#: src/components/AccountList.tsx:76 +#: src/components/AccountList.tsx:83 msgid "Other account" msgstr "其他帳號" -#: src/view/screens/Settings/index.tsx:379 +#: src/view/screens/Settings/index.tsx:380 msgid "Other accounts" msgstr "其他帳號" @@ -4365,21 +4482,21 @@ msgstr "其他帳號" msgid "Other..." msgstr "其他…" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:28 +#: src/screens/Messages/components/ChatDisabled.tsx:28 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "我們的內容管理者已審核檢舉,並決定停用您在 Bluesky 上的對話功能。" #: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:45 +#: src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "頁面不存在" -#: src/view/screens/NotFound.tsx:42 +#: src/view/screens/NotFound.tsx:44 msgid "Page Not Found" msgstr "頁面不存在" -#: src/screens/Login/LoginForm.tsx:213 -#: src/screens/Signup/StepInfo/index.tsx:162 +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Signup/StepInfo/index.tsx:192 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4389,42 +4506,42 @@ msgstr "密碼" msgid "Password Changed" msgstr "密碼已更改" -#: src/screens/Login/index.tsx:157 +#: src/screens/Login/index.tsx:154 msgid "Password updated" msgstr "密碼已更新" -#: src/screens/Login/PasswordUpdatedForm.tsx:30 +#: src/screens/Login/PasswordUpdatedForm.tsx:24 msgid "Password updated!" msgstr "密碼已更新!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:366 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 msgid "Pause" msgstr "暫停" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:319 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 msgid "Pause video" msgstr "暫停影片" -#: src/screens/StarterPack/StarterPackScreen.tsx:171 -#: src/view/screens/Search/Search.tsx:369 +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 msgid "People" msgstr "用戶" -#: src/Navigation.tsx:180 +#: src/Navigation.tsx:179 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:172 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" -#: src/view/com/lightbox/Lightbox.tsx:70 +#: src/view/com/lightbox/Lightbox.tsx:77 msgid "Permission to access camera roll is required." msgstr "需要相簿權限。" -#: src/view/com/lightbox/Lightbox.tsx:78 +#: src/view/com/lightbox/Lightbox.tsx:85 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "相簿權限已遭拒絕,請在系統設定中啟用。" @@ -4433,60 +4550,69 @@ msgid "Person toggle" msgstr "切換帳號" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "寵物" -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:97 msgid "Photography" msgstr "攝影" -#: src/view/com/modals/SelfLabel.tsx:122 +#: src/view/com/composer/labels/LabelsBtn.tsx:168 msgid "Pictures meant for adults." msgstr "不適合未成年人的圖片。" -#: src/view/screens/ProfileFeed.tsx:289 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "釘選到首頁" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Pin to Home" msgstr "釘選到首頁" -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "釘選到您的個人檔案" + +#: src/view/com/posts/FeedItem.tsx:354 +msgid "Pinned" +msgstr "已釘選" + +#: src/view/screens/SavedFeeds.tsx:130 msgid "Pinned Feeds" msgstr "釘選的動態源列表" -#: src/view/screens/ProfileList.tsx:345 +#: src/view/screens/ProfileList.tsx:355 msgid "Pinned to your feeds" -msgstr "從您的動態中取消釘選" +msgstr "已釘選到您的動態源中" -#: src/view/com/util/post-embeds/GifEmbed.tsx:46 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:367 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 msgid "Play" msgstr "播放" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:45 +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 msgid "Play or pause the GIF" msgstr "播放或暫停 GIF" #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:320 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 msgid "Play video" msgstr "播放影片" +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 -#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 msgid "Play Video" msgstr "播放影片" -#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 msgid "Plays the GIF" msgstr "播放 GIF" @@ -4495,7 +4621,7 @@ msgid "Please choose your handle." msgstr "請設定您的帳號代碼。" #: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:81 +#: src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "請設定您的密碼。" @@ -4520,11 +4646,11 @@ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "請輸入有效的文字或標籤進行靜音" #: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "請輸入您的電子郵件。" -#: src/screens/Signup/StepInfo/index.tsx:63 +#: src/screens/Signup/StepInfo/index.tsx:96 msgid "Please enter your invite code." msgstr "請輸入您的邀請碼。" @@ -4532,16 +4658,16 @@ msgstr "請輸入您的邀請碼。" msgid "Please enter your password as well:" msgstr "請輸入您的密碼:" -#: src/components/moderation/LabelsOnMeDialog.tsx:259 +#: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "請解釋您認為 {0} 不該套用此標記的原因" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:110 +#: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "請解釋您認為我們不該停用您對話功能的原因" -#: src/lib/hooks/useAccountSwitcher.ts:48 -#: src/lib/hooks/useAccountSwitcher.ts:58 +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 msgid "Please sign in as @{0}" msgstr "請以 @{0} 的身分登入" @@ -4549,21 +4675,18 @@ msgstr "請以 @{0} 的身分登入" msgid "Please Verify Your Email" msgstr "請驗證您的電子郵件地址" -#: src/view/com/composer/Composer.tsx:359 -msgid "Please wait for your link card to finish loading" -msgstr "請等待您的連結預覽載入完畢" - #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "政治" -#: src/view/com/modals/SelfLabel.tsx:112 +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +#: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:646 -#: src/view/com/composer/Composer.tsx:653 +#: src/view/com/composer/Composer.tsx:710 +#: src/view/com/composer/Composer.tsx:717 msgctxt "action" msgid "Post" msgstr "發佈" @@ -4577,17 +4700,21 @@ msgstr "貼文" msgid "Post by {0}" msgstr "{0} 的貼文" -#: src/Navigation.tsx:199 -#: src/Navigation.tsx:206 -#: src/Navigation.tsx:213 -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:198 +#: src/Navigation.tsx:205 +#: src/Navigation.tsx:212 +#: src/Navigation.tsx:219 msgid "Post by @{0}" msgstr "@{0} 的貼文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:174 +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Post deleted" msgstr "貼文已刪除" +#: src/lib/api/index.ts:161 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "貼文發佈失敗。請檢查您的網路連線並重試。" + #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" msgstr "貼文已隱藏" @@ -4602,7 +4729,7 @@ msgstr "貼文因靜音文字而被隱藏" msgid "Post Hidden by You" msgstr "被您靜音的貼文" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 msgid "Post interaction settings" msgstr "貼文互動設定" @@ -4610,7 +4737,7 @@ msgstr "貼文互動設定" msgid "Post language" msgstr "貼文語言" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 msgid "Post Languages" msgstr "貼文語言" @@ -4619,12 +4746,24 @@ msgstr "貼文語言" msgid "Post not found" msgstr "找不到貼文" -#: src/components/TagMenu/index.tsx:267 +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "貼文已釘選" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "貼文已取消釘選" + +#: src/lib/api/index.ts:106 +#~ msgid "Posting..." +#~ msgstr "正在發佈貼文..." + +#: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:173 -#: src/view/screens/Profile.tsx:220 +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 msgid "Posts" msgstr "貼文" @@ -4644,7 +4783,7 @@ msgstr "潛在誤導性連結" msgid "Preference saved" msgstr "偏好設定已儲存" -#: src/screens/Messages/Conversation/MessageListError.tsx:19 +#: src/screens/Messages/components/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "點擊以重試連線" @@ -4654,8 +4793,8 @@ msgstr "按下以更改託管服務供應商" #: src/components/Error.tsx:61 #: src/components/Lists.tsx:93 -#: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/BackNextButtons.tsx:46 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "按下以重試" @@ -4667,79 +4806,79 @@ msgstr "按下以查看哪些您認識的人跟隨了此帳號" msgid "Previous image" msgstr "上一張圖片" -#: src/view/screens/LanguageSettings.tsx:190 +#: src/view/screens/LanguageSettings.tsx:188 msgid "Primary Language" msgstr "主要語言" -#: src/view/screens/PreferencesThreads.tsx:91 +#: src/view/screens/PreferencesThreads.tsx:92 msgid "Prioritize Your Follows" msgstr "優先顯示跟隨者" -#: src/view/screens/NotificationsSettings.tsx:57 +#: src/view/screens/NotificationsSettings.tsx:60 msgid "Priority notifications" msgstr "優先通知" -#: src/view/screens/Settings/index.tsx:620 +#: src/view/screens/Settings/index.tsx:621 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隱私" -#: src/Navigation.tsx:266 -#: src/screens/Signup/StepInfo/Policies.tsx:62 -#: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:911 -#: src/view/shell/Drawer.tsx:298 +#: src/Navigation.tsx:265 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/screens/Settings/index.tsx:912 +#: src/view/shell/Drawer.tsx:291 +#: src/view/shell/Drawer.tsx:292 msgid "Privacy Policy" msgstr "隱私政策" -#: src/components/dms/MessagesNUX.tsx:91 -msgid "Privately chat with other users." -msgstr "和其他用戶進行私人對話。" +#: src/view/com/composer/Composer.tsx:1347 +msgid "Processing video..." +msgstr "正在處理影片..." -#: src/screens/Login/ForgotPasswordForm.tsx:155 +#: src/lib/api/index.ts:53 +#: src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "處理中…" -#: src/view/screens/DebugMod.tsx:896 -#: src/view/screens/Profile.tsx:357 +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:546 -#: src/view/shell/Drawer.tsx:547 +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:545 msgid "Profile" msgstr "個人檔案" -#: src/view/com/modals/EditProfile.tsx:129 +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 msgid "Profile updated" msgstr "個人檔案已更新" -#: src/view/screens/Settings/index.tsx:975 +#: src/view/screens/Settings/index.tsx:976 msgid "Protect your account by verifying your email." msgstr "通過驗證電子郵件地址來保護您的帳號。" -#: src/screens/Onboarding/StepFinished.tsx:246 +#: src/screens/Onboarding/StepFinished.tsx:237 msgid "Public" msgstr "公開" -#: src/view/screens/ModerationModlists.tsx:61 +#: src/view/screens/ModerationModlists.tsx:63 msgid "Public, shareable lists of users to mute or block in bulk." msgstr "公開且可共享的用戶列表,可供批量靜音或封鎖。" -#: src/view/screens/Lists.tsx:68 +#: src/view/screens/Lists.tsx:69 msgid "Public, shareable lists which can drive feeds." msgstr "公開且可共享的列表,可作為動態源使用。" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish post" -msgstr "發佈貼文" +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish post" +#~ msgstr "發佈貼文" -#: src/view/com/composer/Composer.tsx:631 -msgid "Publish reply" -msgstr "發佈回覆" +#: src/view/com/composer/Composer.tsx:566 +#~ msgid "Publish reply" +#~ msgstr "發佈回覆" #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" @@ -4753,39 +4892,39 @@ msgstr "QR Code 下載成功!" msgid "QR code saved to your camera roll!" msgstr "QR Code 已儲存至您的圖片庫!" -#: src/view/com/util/post-ctrls/RepostButton.tsx:125 -#: src/view/com/util/post-ctrls/RepostButton.tsx:152 +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 msgid "Quote post" msgstr "引用貼文" -#: src/view/com/util/forms/PostDropdownBtn.tsx:302 +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 msgid "Quote post was re-attached" msgstr "引用已重新連結" -#: src/view/com/util/forms/PostDropdownBtn.tsx:301 +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 msgid "Quote post was successfully detached" msgstr "貼文引用已成功分離" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313 -#: src/view/com/util/post-ctrls/RepostButton.tsx:124 -#: src/view/com/util/post-ctrls/RepostButton.tsx:151 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 msgid "Quote posts disabled" msgstr "引用貼文已停用" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 msgid "Quote posts enabled" msgstr "引用貼文已啟用" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 msgid "Quote settings" msgstr "引用設定" -#: src/screens/Post/PostQuotes.tsx:31 #: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "引用" @@ -4793,16 +4932,12 @@ msgstr "引用" msgid "Quotes of this post" msgstr "引用這則貼文" -#: src/view/screens/PreferencesThreads.tsx:80 +#: src/view/screens/PreferencesThreads.tsx:81 msgid "Random (aka \"Poster's Roulette\")" msgstr "隨機顯示 (又名試試手氣)" -#: src/view/com/modals/EditImage.tsx:237 -msgid "Ratios" -msgstr "比率" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:553 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 msgid "Re-attach quote" msgstr "重新連結引用" @@ -4810,46 +4945,47 @@ msgstr "重新連結引用" msgid "Reactivate your account" msgstr "重新啟用您的帳號" -#: src/view/com/auth/SplashScreen.web.tsx:157 +#: src/view/com/auth/SplashScreen.web.tsx:170 msgid "Read the Bluesky blog" msgstr "閱讀 Bluesky 部落格" -#: src/screens/Signup/StepInfo/Policies.tsx:59 +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 msgid "Read the Bluesky Privacy Policy" msgstr "閱讀 Bluesky 隱私權政策" -#: src/screens/Signup/StepInfo/Policies.tsx:49 +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 msgid "Read the Bluesky Terms of Service" msgstr "閱讀 Bluesky 服務條款" -#: src/components/dms/ReportDialog.tsx:174 +#: src/components/dms/ReportDialog.tsx:169 msgid "Reason:" msgstr "原因:" -#: src/view/screens/Search/Search.tsx:926 +#: src/view/screens/Search/Search.tsx:1056 msgid "Recent Searches" msgstr "最近的搜尋結果" -#: src/screens/Messages/Conversation/MessageListError.tsx:20 +#: src/screens/Messages/components/MessageListError.tsx:20 msgid "Reconnect" msgstr "重新連線" -#: src/view/screens/Notifications.tsx:146 +#: src/view/screens/Notifications.tsx:144 msgid "Refresh notifications" msgstr "重新整理通知" -#: src/screens/Messages/List/index.tsx:200 +#: src/screens/Messages/ChatList.tsx:198 msgid "Reload conversations" msgstr "重新載入對話" #: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:313 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/view/com/feeds/FeedSourceCard.tsx:316 #: src/view/com/modals/ListAddRemoveUsers.tsx:269 -#: src/view/com/modals/SelfLabel.tsx:84 -#: src/view/com/modals/UserAddRemoveLists.tsx:229 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 #: src/view/com/posts/FeedErrorMessage.tsx:213 #: src/view/com/util/AccountDropdownBtn.tsx:61 msgid "Remove" @@ -4857,17 +4993,17 @@ msgstr "刪除" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "從您的入門包刪除 {displayName}" +msgstr "從您的新手包刪除 {displayName}" #: src/view/com/util/AccountDropdownBtn.tsx:26 msgid "Remove account" msgstr "移除帳號" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 msgid "Remove attachment" msgstr "撤銷貼文分離" -#: src/view/com/util/UserAvatar.tsx:393 +#: src/view/com/util/UserAvatar.tsx:403 msgid "Remove Avatar" msgstr "刪除頭像" @@ -4875,7 +5011,7 @@ msgstr "刪除頭像" msgid "Remove Banner" msgstr "刪除橫幅" -#: src/screens/Messages/Conversation/MessageInputEmbed.tsx:207 +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 msgid "Remove embed" msgstr "刪除嵌入" @@ -4891,13 +5027,14 @@ msgstr "刪除動態源?" #: src/view/com/feeds/FeedSourceCard.tsx:187 #: src/view/com/feeds/FeedSourceCard.tsx:265 -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 -#: src/view/screens/ProfileList.tsx:499 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "從我的動態源中刪除" -#: src/components/FeedCard.tsx:308 +#: src/components/FeedCard.tsx:311 #: src/view/com/feeds/FeedSourceCard.tsx:311 msgid "Remove from my feeds?" msgstr "從我的動態源中刪除?" @@ -4910,7 +5047,7 @@ msgstr "從快速存取中刪除?" msgid "Remove from saved feeds" msgstr "從儲存的動態源中刪除" -#: src/view/com/composer/photos/Gallery.tsx:174 +#: src/view/com/composer/photos/Gallery.tsx:200 msgid "Remove image" msgstr "刪除圖片" @@ -4918,24 +5055,24 @@ msgstr "刪除圖片" msgid "Remove mute word from your list" msgstr "從您的列表中刪除靜音文字" -#: src/view/screens/Search/Search.tsx:969 +#: src/view/screens/Search/Search.tsx:1100 msgid "Remove profile" msgstr "刪除個人檔案" -#: src/view/screens/Search/Search.tsx:971 +#: src/view/screens/Search/Search.tsx:1102 msgid "Remove profile from search history" msgstr "刪除搜尋紀錄中的個人檔案" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:273 msgid "Remove quote" msgstr "刪除引用貼文" -#: src/view/com/util/post-ctrls/RepostButton.tsx:98 -#: src/view/com/util/post-ctrls/RepostButton.tsx:114 +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 msgid "Remove repost" msgstr "刪除轉貼貼文" -#: src/view/com/composer/videos/SubtitleDialog.tsx:264 +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 msgid "Remove subtitle file" msgstr "移除字幕檔案" @@ -4943,16 +5080,16 @@ msgstr "移除字幕檔案" msgid "Remove this feed from your saved feeds" msgstr "將這個動態源從您已儲存之動態源列表中刪除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 msgid "Removed by author" -msgstr "由發布者刪除" +msgstr "由發佈者刪除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:106 msgid "Removed by you" msgstr "由您刪除" #: src/view/com/modals/ListAddRemoveUsers.tsx:200 -#: src/view/com/modals/UserAddRemoveLists.tsx:164 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 msgid "Removed from list" msgstr "從列表中刪除" @@ -4966,25 +5103,21 @@ msgid "Removed from saved feeds" msgstr "已從儲存的動態源中刪除" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:192 -#: src/view/screens/ProfileList.tsx:376 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "從您的動態中刪除" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:275 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:274 msgid "Removes quoted post" msgstr "刪除已轉貼貼文" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 -msgid "Removes the attachment" -msgstr "撤銷所有貼文分離" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" msgstr "用「Discover」動態源取代" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:229 msgid "Replies" msgstr "回覆" @@ -4996,7 +5129,7 @@ msgstr "回覆已被停用" msgid "Replies to this post are disabled." msgstr "這則貼文的回覆已停用。" -#: src/view/com/composer/Composer.tsx:644 +#: src/view/com/composer/Composer.tsx:708 msgctxt "action" msgid "Reply" msgstr "回覆" @@ -5011,41 +5144,41 @@ msgstr "回覆由此討論串的發佈者所隱藏" msgid "Reply Hidden by You" msgstr "回覆由您隱藏" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 msgid "Reply settings" msgstr "回覆設定" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 msgid "Reply settings are chosen by the author of the thread" msgstr "由此討論串的發佈者選擇的回覆設定" -#: src/view/com/post/Post.tsx:196 -#: src/view/com/posts/FeedItem.tsx:520 +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:544 msgctxt "description" msgid "Reply to <0><1/>" msgstr "對 <0><1/> 回覆" -#: src/view/com/posts/FeedItem.tsx:511 +#: src/view/com/posts/FeedItem.tsx:535 msgctxt "description" msgid "Reply to a blocked post" msgstr "對已被封鎖的貼文回覆" -#: src/view/com/posts/FeedItem.tsx:513 +#: src/view/com/posts/FeedItem.tsx:537 msgctxt "description" msgid "Reply to a post" msgstr "回覆這則貼文" -#: src/view/com/post/Post.tsx:194 -#: src/view/com/posts/FeedItem.tsx:517 +#: src/view/com/post/Post.tsx:193 +#: src/view/com/posts/FeedItem.tsx:541 msgctxt "description" msgid "Reply to you" msgstr "對您回覆" -#: src/view/com/util/forms/PostDropdownBtn.tsx:332 +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 msgid "Reply visibility updated" msgstr "回覆可見性已更新" -#: src/view/com/util/forms/PostDropdownBtn.tsx:331 +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 msgid "Reply was successfully hidden" msgstr "回覆已成功隱藏" @@ -5055,8 +5188,8 @@ msgstr "回覆已成功隱藏" msgid "Report" msgstr "檢舉" -#: src/view/com/profile/ProfileMenu.tsx:323 -#: src/view/com/profile/ProfileMenu.tsx:326 +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 msgid "Report Account" msgstr "檢舉帳號" @@ -5066,16 +5199,16 @@ msgstr "檢舉帳號" msgid "Report conversation" msgstr "檢舉對話" -#: src/components/ReportDialog/index.tsx:49 +#: src/components/ReportDialog/index.tsx:44 msgid "Report dialog" msgstr "檢舉對話框" -#: src/view/screens/ProfileFeed.tsx:350 -#: src/view/screens/ProfileFeed.tsx:352 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "檢舉動態源" -#: src/view/screens/ProfileList.tsx:541 +#: src/view/screens/ProfileList.tsx:544 msgid "Report List" msgstr "檢舉列表" @@ -5083,15 +5216,15 @@ msgstr "檢舉列表" msgid "Report message" msgstr "檢舉訊息" -#: src/view/com/util/forms/PostDropdownBtn.tsx:579 -#: src/view/com/util/forms/PostDropdownBtn.tsx:581 +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 msgid "Report post" msgstr "檢舉貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:593 -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Report starter pack" -msgstr "檢舉入門包" +msgstr "檢舉新手包" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -5105,8 +5238,8 @@ msgstr "檢舉這個動態源" msgid "Report this list" msgstr "檢舉這個列表" -#: src/components/dms/ReportDialog.tsx:48 -#: src/components/dms/ReportDialog.tsx:142 +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 #: src/components/ReportDialog/SelectReportOptionView.tsx:62 msgid "Report this message" msgstr "檢舉這個訊息" @@ -5117,15 +5250,15 @@ msgstr "檢舉這則貼文" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "檢舉這個入門包" +msgstr "檢舉這個新手包" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" msgstr "檢舉這個用戶" -#: src/view/com/util/post-ctrls/RepostButton.tsx:70 -#: src/view/com/util/post-ctrls/RepostButton.tsx:99 -#: src/view/com/util/post-ctrls/RepostButton.tsx:115 +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 msgctxt "action" msgid "Repost" msgstr "轉貼" @@ -5135,28 +5268,28 @@ msgstr "轉貼" msgid "Repost" msgstr "轉貼" -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/view/com/util/post-ctrls/RepostButton.tsx:91 +#: src/screens/StarterPack/StarterPackScreen.tsx:546 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 msgid "Repost or quote post" msgstr "轉貼或引用貼文" -#: src/screens/Post/PostRepostedBy.tsx:31 #: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 msgid "Reposted By" msgstr "轉貼" -#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:294 msgid "Reposted by {0}" msgstr "由 {0} 轉貼" -#: src/view/com/posts/FeedItem.tsx:311 +#: src/view/com/posts/FeedItem.tsx:313 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 轉貼" -#: src/view/com/posts/FeedItem.tsx:290 -#: src/view/com/posts/FeedItem.tsx:309 +#: src/view/com/posts/FeedItem.tsx:292 +#: src/view/com/posts/FeedItem.tsx:311 msgid "Reposted by you" msgstr "由您轉貼" @@ -5178,7 +5311,7 @@ msgstr "請求變更" msgid "Request Code" msgstr "請求代碼" -#: src/view/screens/AccessibilitySettings.tsx:92 +#: src/view/screens/AccessibilitySettings.tsx:90 msgid "Require alt text before posting" msgstr "要求發佈前提供替代文字" @@ -5186,20 +5319,26 @@ msgstr "要求發佈前提供替代文字" msgid "Require email code to log into your account" msgstr "登入時要求電子郵件驗證碼" -#: src/screens/Signup/StepInfo/index.tsx:132 +#: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" msgstr "此供應商要求必填" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:168 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:171 +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "您所在的區域必填" + +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 msgid "Resend email" msgstr "重新傳送郵件" +#: src/components/dialogs/VerifyEmailDialog.tsx:224 +#: src/components/dialogs/VerifyEmailDialog.tsx:234 #: src/components/intents/VerifyEmailIntentDialog.tsx:130 msgid "Resend Email" msgstr "重新傳送電子郵件" -#: src/components/intents/VerifyEmailIntentDialog.tsx:123 +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 msgid "Resend Verification Email" msgstr "重新傳送驗證電子郵件" @@ -5211,29 +5350,29 @@ msgstr "重設碼" msgid "Reset Code" msgstr "重設碼" -#: src/view/screens/Settings/index.tsx:866 -#: src/view/screens/Settings/index.tsx:869 +#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:870 msgid "Reset onboarding state" msgstr "重設初始設定進行狀態" -#: src/screens/Login/ForgotPasswordForm.tsx:86 +#: src/screens/Login/ForgotPasswordForm.tsx:80 msgid "Reset password" msgstr "重設密碼" -#: src/view/screens/Settings/index.tsx:846 -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:850 msgid "Reset preferences state" msgstr "重設偏好狀態" -#: src/view/screens/Settings/index.tsx:867 +#: src/view/screens/Settings/index.tsx:868 msgid "Resets the onboarding state" msgstr "重設初始設定狀態" -#: src/view/screens/Settings/index.tsx:847 +#: src/view/screens/Settings/index.tsx:848 msgid "Resets the preferences state" msgstr "重設偏好狀態" -#: src/screens/Login/LoginForm.tsx:299 +#: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "重試登入" @@ -5242,16 +5381,16 @@ msgstr "重試登入" msgid "Retries the last action, which errored out" msgstr "重試上次出錯的操作" -#: src/components/dms/MessageItem.tsx:236 +#: src/components/dms/MessageItem.tsx:244 #: src/components/Error.tsx:66 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:298 -#: src/screens/Login/LoginForm.tsx:305 -#: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/BackNextButtons.tsx:52 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 @@ -5261,51 +5400,54 @@ msgstr "重試" #: src/components/Error.tsx:74 #: src/screens/List/ListHiddenScreen.tsx:205 -#: src/screens/StarterPack/StarterPackScreen.tsx:739 -#: src/view/screens/ProfileList.tsx:1027 +#: src/screens/StarterPack/StarterPackScreen.tsx:750 +#: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" msgstr "返回上一頁" -#: src/view/screens/NotFound.tsx:59 +#: src/view/screens/NotFound.tsx:61 msgid "Returns to home page" msgstr "返回首頁" -#: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "返回上一頁" -#: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438 +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 -#: src/components/StarterPack/QrCodeDialog.tsx:187 -#: src/view/com/composer/GifAltText.tsx:162 -#: src/view/com/composer/GifAltText.tsx:168 -#: src/view/com/modals/ChangeHandle.tsx:168 -#: src/view/com/modals/CreateOrEditList.tsx:326 -#: src/view/com/modals/EditProfile.tsx:225 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/view/com/composer/GifAltText.tsx:190 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:77 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:83 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160 +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/com/modals/CreateOrEditList.tsx:317 +#: src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "儲存" -#: src/view/com/lightbox/Lightbox.tsx:139 -#: src/view/com/modals/CreateOrEditList.tsx:334 +#: src/view/com/lightbox/Lightbox.tsx:167 +#: src/view/com/modals/CreateOrEditList.tsx:325 msgctxt "action" msgid "Save" msgstr "儲存" -#: src/view/com/modals/AltImage.tsx:132 -msgid "Save alt text" -msgstr "儲存替代文字" - -#: src/components/dialogs/BirthDateSettings.tsx:119 +#: src/components/dialogs/BirthDateSettings.tsx:118 msgid "Save birthday" msgstr "儲存生日" -#: src/view/com/modals/EditProfile.tsx:233 -msgid "Save Changes" +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" msgstr "儲存更改" -#: src/view/com/modals/ChangeHandle.tsx:165 +#: src/view/com/modals/ChangeHandle.tsx:158 msgid "Save handle change" msgstr "儲存帳號代碼更改" @@ -5314,92 +5456,77 @@ msgstr "儲存帳號代碼更改" msgid "Save image" msgstr "儲存圖片" -#: src/view/com/modals/crop-image/CropImage.web.tsx:169 +#: src/view/com/modals/CropImage.web.tsx:104 msgid "Save image crop" msgstr "儲存圖片裁剪" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "儲存 QR Code" -#: src/view/screens/ProfileFeed.tsx:334 -#: src/view/screens/ProfileFeed.tsx:340 +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "儲存到我的動態源" -#: src/view/screens/SavedFeeds.tsx:146 +#: src/view/screens/SavedFeeds.tsx:171 msgid "Saved Feeds" msgstr "已儲存之動態源" -#: src/view/com/lightbox/Lightbox.tsx:88 +#: src/view/com/lightbox/Lightbox.tsx:95 msgid "Saved to your camera roll" msgstr "儲存至裝置相簿" -#: src/view/screens/ProfileFeed.tsx:201 -#: src/view/screens/ProfileList.tsx:356 +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "儲存到您的動態源" -#: src/view/com/modals/EditProfile.tsx:226 -msgid "Saves any changes to your profile" -msgstr "儲存個人檔案中所做的變更" - -#: src/view/com/modals/ChangeHandle.tsx:166 +#: src/view/com/modals/ChangeHandle.tsx:159 msgid "Saves handle change to {handle}" msgstr "儲存帳號代碼更改至 {handle}" -#: src/view/com/modals/crop-image/CropImage.web.tsx:170 +#: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:412 -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:416 +#: src/view/com/notifications/FeedItem.tsx:441 msgid "Say hello!" msgstr "說句「你好!👋」" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "科學" -#: src/view/screens/ProfileList.tsx:983 +#: src/view/screens/ProfileList.tsx:986 msgid "Scroll to top" msgstr "滾動到頂部" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:555 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:483 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:554 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 -#: src/view/com/util/forms/SearchInput.tsx:67 -#: src/view/com/util/forms/SearchInput.tsx:79 -#: src/view/screens/Search/Search.tsx:421 -#: src/view/screens/Search/Search.tsx:791 -#: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 -#: src/view/shell/Drawer.tsx:398 -#: src/view/shell/Drawer.tsx:399 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:377 +#: src/view/shell/Drawer.tsx:394 msgid "Search" msgstr "搜尋" -#: src/view/shell/desktop/Search.tsx:200 +#: src/view/shell/desktop/Search.tsx:201 msgid "Search for \"{query}\"" msgstr "搜尋「{query}」" -#: src/view/screens/Search/Search.tsx:869 +#: src/view/screens/Search/Search.tsx:999 msgid "Search for \"{searchText}\"" msgstr "搜尋「{searchText}」" -#: src/components/TagMenu/index.tsx:156 -msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -msgstr "搜尋所有由 @{authorHandle} 發佈並具有標籤 {displayTag} 的貼文" - -#: src/components/TagMenu/index.tsx:105 -msgid "Search for all posts with tag {displayTag}" -msgstr "搜尋所有具有標籤 {displayTag} 的貼文" - -#: src/screens/StarterPack/Wizard/index.tsx:491 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "搜尋您想推薦給別人的動態源。" @@ -5407,18 +5534,16 @@ msgstr "搜尋您想推薦給別人的動態源。" msgid "Search for users" msgstr "搜尋用戶" -#: src/components/dialogs/GifSelect.ios.tsx:159 -#: src/components/dialogs/GifSelect.tsx:169 +#: src/components/dialogs/GifSelect.tsx:177 msgid "Search GIFs" msgstr "搜尋 GIF" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:524 -#: src/components/dms/dialogs/SearchablePeopleList.tsx:525 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:503 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 msgid "Search profiles" msgstr "搜尋用戶" -#: src/components/dialogs/GifSelect.ios.tsx:160 -#: src/components/dialogs/GifSelect.tsx:170 +#: src/components/dialogs/GifSelect.tsx:178 msgid "Search Tenor" msgstr "搜尋 Tenor" @@ -5434,23 +5559,23 @@ msgstr "搜尋 {truncatedTag}" msgid "See {truncatedTag} posts by user" msgstr "查看該用戶包含 {truncatedTag} 的貼文" -#: src/components/TagMenu/index.tsx:139 +#: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" msgstr "搜尋 <0>{displayTag}" -#: src/components/TagMenu/index.tsx:198 +#: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" msgstr "查看該用戶包含 <0>{displayTag} 的貼文" -#: src/view/com/auth/SplashScreen.web.tsx:162 +#: src/view/com/auth/SplashScreen.web.tsx:175 msgid "See jobs at Bluesky" msgstr "查看 Bluesky 的職缺" -#: src/view/screens/SavedFeeds.tsx:188 +#: src/view/screens/SavedFeeds.tsx:212 msgid "See this guide" msgstr "查看指南" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:631 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 msgid "Seek slider" msgstr "影片進度條" @@ -5462,7 +5587,7 @@ msgstr "選擇 {item}" msgid "Select a color" msgstr "選擇一個顏色" -#: src/screens/Login/ChooseAccountForm.tsx:85 +#: src/screens/Login/ChooseAccountForm.tsx:77 msgid "Select account" msgstr "選擇帳號" @@ -5474,7 +5599,7 @@ msgstr "選擇一個頭像" msgid "Select an emoji" msgstr "選擇一個表情符號" -#: src/screens/Login/index.tsx:120 +#: src/screens/Login/index.tsx:117 msgid "Select from an existing account" msgstr "從現有帳號中選擇" @@ -5482,7 +5607,7 @@ msgstr "從現有帳號中選擇" msgid "Select GIF" msgstr "選擇 GIF" -#: src/components/dialogs/GifSelect.shared.tsx:29 +#: src/components/dialogs/GifSelect.tsx:307 msgid "Select GIF \"{0}\"" msgstr "選擇 GIF「{0}」" @@ -5490,15 +5615,15 @@ msgstr "選擇 GIF「{0}」" msgid "Select how long to mute this word for." msgstr "選擇靜音此文字的時間長度。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:249 +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 msgid "Select language..." msgstr "選擇語言…" -#: src/view/screens/LanguageSettings.tsx:303 +#: src/view/screens/LanguageSettings.tsx:301 msgid "Select languages" msgstr "選擇語言" -#: src/components/ReportDialog/SelectLabelerView.tsx:30 +#: src/components/ReportDialog/SelectLabelerView.tsx:29 msgid "Select moderator" msgstr "選擇內容管理服務提供者" @@ -5506,7 +5631,7 @@ msgstr "選擇內容管理服務提供者" msgid "Select option {i} of {numItems}" msgstr "選擇 {numItems} 個項目中的第 {i} 項" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 msgid "Select subtitle file (.vtt)" msgstr "選擇字幕檔 (.vtt)" @@ -5514,15 +5639,15 @@ msgstr "選擇字幕檔 (.vtt)" msgid "Select the {emojiName} emoji as your avatar" msgstr "選擇 {emojiName} 表情符號作為您的頭像" -#: src/components/ReportDialog/SubmitView.tsx:139 +#: src/components/ReportDialog/SubmitView.tsx:140 msgid "Select the moderation service(s) to report to" msgstr "選擇要向哪些內容管理服務提供者提出檢舉" -#: src/view/com/auth/server-input/index.tsx:82 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Select the service that hosts your data." msgstr "選擇用來託管您的資料的服務商。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:94 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 msgid "Select video" msgstr "選擇影片" @@ -5530,23 +5655,23 @@ msgstr "選擇影片" msgid "Select what content this mute word should apply to." msgstr "選擇此靜音文字應套用於哪些內容。" -#: src/view/screens/LanguageSettings.tsx:285 +#: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "選擇您希望訂閱的動態源中所包含的語言。未選擇任何語言時會預設顯示所有語言。" -#: src/view/screens/LanguageSettings.tsx:99 +#: src/view/screens/LanguageSettings.tsx:97 msgid "Select your app language for the default text to display in the app." msgstr "選擇應用程式中的預設語言。" -#: src/screens/Signup/StepInfo/index.tsx:193 +#: src/screens/Signup/StepInfo/index.tsx:223 msgid "Select your date of birth" msgstr "選擇您的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:192 msgid "Select your interests from the options below" msgstr "從下面選擇您感興趣的選項" -#: src/view/screens/LanguageSettings.tsx:193 +#: src/view/screens/LanguageSettings.tsx:191 msgid "Select your preferred language for translations in your feed." msgstr "選擇您在動態中翻譯的偏好目標語言。" @@ -5554,6 +5679,14 @@ msgstr "選擇您在動態中翻譯的偏好目標語言。" msgid "Send a neat website!" msgstr "發送一個妙趣的網站!" +#: src/components/dialogs/VerifyEmailDialog.tsx:189 +msgid "Send Confirmation" +msgstr "發送確認信" + +#: src/components/dialogs/VerifyEmailDialog.tsx:182 +msgid "Send confirmation email" +msgstr "發送確認電子郵件" + #: src/view/com/modals/VerifyEmail.tsx:210 #: src/view/com/modals/VerifyEmail.tsx:212 msgid "Send Confirmation Email" @@ -5568,37 +5701,37 @@ msgctxt "action" msgid "Send Email" msgstr "發送電子郵件" -#: src/view/shell/Drawer.tsx:339 +#: src/view/shell/Drawer.tsx:341 msgid "Send feedback" msgstr "提交意見" -#: src/screens/Messages/Conversation/MessageInput.tsx:165 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:219 +#: src/screens/Messages/components/MessageInput.tsx:165 +#: src/screens/Messages/components/MessageInput.web.tsx:219 msgid "Send message" msgstr "重送訊息" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 msgid "Send post to..." msgstr "傳送貼文給…" -#: src/components/dms/ReportDialog.tsx:234 -#: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:219 -#: src/components/ReportDialog/SubmitView.tsx:223 +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 msgid "Send report" msgstr "提交檢舉" -#: src/components/ReportDialog/SelectLabelerView.tsx:44 +#: src/components/ReportDialog/SelectLabelerView.tsx:43 msgid "Send report to {0}" msgstr "將檢舉提交至 {0}" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:119 -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:122 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 msgid "Send verification email" msgstr "發送驗證電子郵件" -#: src/view/com/util/forms/PostDropdownBtn.tsx:399 -#: src/view/com/util/forms/PostDropdownBtn.tsx:402 +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Send via direct message" msgstr "透過私人訊息發送" @@ -5606,35 +5739,35 @@ msgstr "透過私人訊息發送" msgid "Sends email with confirmation code for account deletion" msgstr "發送包含帳號刪除確認碼的電子郵件" -#: src/view/com/auth/server-input/index.tsx:114 +#: src/view/com/auth/server-input/index.tsx:111 msgid "Server address" msgstr "伺服器地址" -#: src/screens/Moderation/index.tsx:316 +#: src/screens/Moderation/index.tsx:317 msgid "Set birthdate" msgstr "設定生日" -#: src/screens/Login/SetNewPasswordForm.tsx:102 +#: src/screens/Login/SetNewPasswordForm.tsx:96 msgid "Set new password" msgstr "設定新密碼" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "將此選項設為「關」以隱藏動態中所有引用的貼文,但轉貼依然會顯示。" -#: src/view/screens/PreferencesFollowingFeed.tsx:63 +#: src/view/screens/PreferencesFollowingFeed.tsx:64 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "將此選項設為「關」以隱藏動態中所有回覆貼文。" -#: src/view/screens/PreferencesFollowingFeed.tsx:87 +#: src/view/screens/PreferencesFollowingFeed.tsx:88 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "將此選項設為「關」以隱藏動態的所有轉貼貼文。" -#: src/view/screens/PreferencesThreads.tsx:116 +#: src/view/screens/PreferencesThreads.tsx:117 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "將此選項設為「開」以單頁顯示樹狀回覆,這是一項實驗性功能。" -#: src/view/screens/PreferencesFollowingFeed.tsx:157 +#: src/view/screens/PreferencesFollowingFeed.tsx:158 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "將此選項設為「是」以在「Following」動態源中顯示您已儲存之動態源中的選錄貼文,這是一項實驗性功能。" @@ -5642,35 +5775,22 @@ msgstr "將此選項設為「是」以在「Following」動態源中顯示您已 msgid "Set up your account" msgstr "設定您的帳號" -#: src/view/com/modals/ChangeHandle.tsx:261 +#: src/view/com/modals/ChangeHandle.tsx:254 msgid "Sets Bluesky username" msgstr "設定 Bluesky 帳號代碼" -#: src/screens/Login/ForgotPasswordForm.tsx:113 +#: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "設定用於重設密碼的電子郵件" -#: src/view/com/modals/crop-image/CropImage.web.tsx:146 -msgid "Sets image aspect ratio to square" -msgstr "將圖片比例設定為正方形" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:136 -msgid "Sets image aspect ratio to tall" -msgstr "將圖片比例設定為高" - -#: src/view/com/modals/crop-image/CropImage.web.tsx:126 -msgid "Sets image aspect ratio to wide" -msgstr "將圖片比例設定為寬" - -#: src/Navigation.tsx:155 -#: src/view/screens/Settings/index.tsx:302 -#: src/view/shell/desktop/LeftNav.tsx:395 -#: src/view/shell/Drawer.tsx:563 -#: src/view/shell/Drawer.tsx:564 +#: src/Navigation.tsx:154 +#: src/view/screens/Settings/index.tsx:303 +#: src/view/shell/desktop/LeftNav.tsx:423 +#: src/view/shell/Drawer.tsx:558 msgid "Settings" msgstr "設定" -#: src/view/com/modals/SelfLabel.tsx:126 +#: src/view/com/composer/labels/LabelsBtn.tsx:172 msgid "Sexual activity or erotic nudity." msgstr "性行為或色情裸露。" @@ -5678,20 +5798,19 @@ msgstr "性行為或色情裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:644 -#: src/components/StarterPack/QrCodeDialog.tsx:177 -#: src/screens/StarterPack/StarterPackScreen.tsx:411 -#: src/screens/StarterPack/StarterPackScreen.tsx:582 -#: src/view/com/profile/ProfileMenu.tsx:219 -#: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:410 -#: src/view/com/util/forms/PostDropdownBtn.tsx:419 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:345 -#: src/view/screens/ProfileList.tsx:484 +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:593 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:333 +#: src/view/screens/ProfileList.tsx:487 msgid "Share" msgstr "分享" -#: src/view/com/lightbox/Lightbox.tsx:148 +#: src/view/com/lightbox/Lightbox.tsx:176 msgctxt "action" msgid "Share" msgstr "分享" @@ -5704,28 +5823,20 @@ msgstr "分享一個有趣的故事!" msgid "Share a fun fact!" msgstr "分享一個趣聞!📰" -#: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:659 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:361 +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:349 msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:360 -#: src/view/screens/ProfileFeed.tsx:362 +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "分享動態源" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:621 -msgid "Share image externally" -msgstr "" - -#: src/components/dialogs/nuxs/TenMillion/index.tsx:639 -msgid "Share image in post" -msgstr "" - #: src/components/StarterPack/ShareDialog.tsx:124 #: src/components/StarterPack/ShareDialog.tsx:131 -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Share link" msgstr "分享連結" @@ -5736,26 +5847,26 @@ msgstr "分享連結" #: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" -msgstr "分享連結對話窗" +msgstr "分享連結對話框" #: src/components/StarterPack/ShareDialog.tsx:135 #: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "分享 QR Code" -#: src/screens/StarterPack/StarterPackScreen.tsx:404 +#: src/screens/StarterPack/StarterPackScreen.tsx:415 msgid "Share this starter pack" -msgstr "分享這個入門包" +msgstr "分享這個新手包" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "分享這個入門包,以幫助別人加入您在 Bluesky 的社群。" +msgstr "分享這個新手包,以幫助別人加入您在 Bluesky 的社群。" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" msgstr "分享您喜愛的動態!" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:250 msgid "Shared Preferences Tester" msgstr "共享偏好測試器" @@ -5763,19 +5874,19 @@ msgstr "共享偏好測試器" msgid "Shares the linked website" msgstr "分享網站的連結" -#: src/components/moderation/ContentHider.tsx:116 +#: src/components/moderation/ContentHider.tsx:178 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:351 +#: src/view/screens/Settings/index.tsx:352 msgid "Show" msgstr "顯示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 msgid "Show alt text" msgstr "顯示替代文字" -#: src/components/moderation/ScreenHider.tsx:178 -#: src/components/moderation/ScreenHider.tsx:181 +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 #: src/screens/List/ListHiddenScreen.tsx:176 msgid "Show anyway" msgstr "仍然顯示" @@ -5793,8 +5904,8 @@ msgstr "顯示標記並從動態源中篩選" msgid "Show hidden replies" msgstr "顯示隱藏回覆" -#: src/view/com/util/forms/PostDropdownBtn.tsx:449 -#: src/view/com/util/forms/PostDropdownBtn.tsx:451 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 msgid "Show less like this" msgstr "減少顯示此類內容" @@ -5802,14 +5913,14 @@ msgstr "減少顯示此類內容" msgid "Show list anyway" msgstr "仍然顯示列表" -#: src/view/com/post-thread/PostThreadItem.tsx:590 -#: src/view/com/post/Post.tsx:234 -#: src/view/com/posts/FeedItem.tsx:476 +#: src/view/com/post-thread/PostThreadItem.tsx:580 +#: src/view/com/post/Post.tsx:233 +#: src/view/com/posts/FeedItem.tsx:500 msgid "Show More" msgstr "顯示更多" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:443 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 msgid "Show more like this" msgstr "顯示更多此類內容" @@ -5817,32 +5928,32 @@ msgstr "顯示更多此類內容" msgid "Show muted replies" msgstr "顯示靜音回覆" -#: src/view/screens/PreferencesFollowingFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:155 msgid "Show Posts from My Feeds" msgstr "顯示來自我的動態源之貼文" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Quote Posts" msgstr "顯示引用貼文" -#: src/view/screens/PreferencesFollowingFeed.tsx:60 +#: src/view/screens/PreferencesFollowingFeed.tsx:61 msgid "Show Replies" msgstr "顯示回覆" -#: src/view/screens/PreferencesThreads.tsx:94 +#: src/view/screens/PreferencesThreads.tsx:95 msgid "Show replies by people you follow before all other replies." msgstr "在所有其他回覆之前顯示您跟隨的人的回覆。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:517 -#: src/view/com/util/forms/PostDropdownBtn.tsx:527 +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 msgid "Show reply for everyone" msgstr "為所有人顯示回覆" -#: src/view/screens/PreferencesFollowingFeed.tsx:84 +#: src/view/screens/PreferencesFollowingFeed.tsx:85 msgid "Show Reposts" msgstr "顯示轉貼貼文" -#: src/components/moderation/ContentHider.tsx:69 +#: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 msgid "Show the content" msgstr "顯示內容" @@ -5855,36 +5966,31 @@ msgstr "顯示警告" msgid "Show warning and filter from feeds" msgstr "顯示警告並從動態中篩選" -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:128 -msgid "Shows posts from {0} in your feed" -msgstr "在您的動態中顯示來自 {0} 的貼文" - #: src/components/dialogs/Signin.tsx:97 #: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:100 -#: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:166 -#: src/view/com/auth/SplashScreen.tsx:63 -#: src/view/com/auth/SplashScreen.tsx:72 -#: src/view/com/auth/SplashScreen.web.tsx:112 -#: src/view/com/auth/SplashScreen.web.tsx:121 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 #: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 -#: src/view/shell/bottom-bar/BottomBar.tsx:315 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 -#: src/view/shell/NavSignupCard.tsx:69 -#: src/view/shell/NavSignupCard.tsx:70 -#: src/view/shell/NavSignupCard.tsx:72 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "登入" -#: src/components/AccountList.tsx:114 +#: src/components/AccountList.tsx:122 msgid "Sign in as {0}" msgstr "以 {0} 登入" -#: src/screens/Login/ChooseAccountForm.tsx:88 +#: src/screens/Login/ChooseAccountForm.tsx:80 msgid "Sign in as..." msgstr "登入為…" @@ -5896,69 +6002,69 @@ msgstr "登入或建立您的帳號即可加入對話!" msgid "Sign into Bluesky or create a new account" msgstr "登入 Bluesky 或建立新帳號" -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:433 msgid "Sign out" msgstr "登出" -#: src/view/screens/Settings/index.tsx:420 -#: src/view/screens/Settings/index.tsx:430 +#: src/view/screens/Settings/index.tsx:421 +#: src/view/screens/Settings/index.tsx:431 msgid "Sign out of all accounts" msgstr "登出所有帳戶" +#: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/bottom-bar/BottomBar.tsx:305 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 -#: src/view/shell/NavSignupCard.tsx:60 -#: src/view/shell/NavSignupCard.tsx:61 -#: src/view/shell/NavSignupCard.tsx:63 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "註冊" -#: src/view/shell/NavSignupCard.tsx:47 -msgid "Sign up or sign in to join the conversation" -msgstr "註冊或登入即可參與對話" - -#: src/components/moderation/ScreenHider.tsx:97 +#: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "需要登入" -#: src/view/screens/Settings/index.tsx:361 +#: src/view/screens/Settings/index.tsx:362 msgid "Signed in as" msgstr "登入身分" -#: src/lib/hooks/useAccountSwitcher.ts:44 -#: src/screens/Login/ChooseAccountForm.tsx:60 +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "以 @{0} 身分登入" #: src/view/com/notifications/FeedItem.tsx:218 msgid "signed up with your starter pack" -msgstr "用您的入門包註冊" +msgstr "用您的新手包註冊" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:315 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" -msgstr "不使用入門包註冊" +msgstr "不使用新手包註冊" #: src/components/FeedInterstitials.tsx:316 msgid "Similar accounts" msgstr "類似的帳號" -#: src/screens/Onboarding/StepInterests/index.tsx:245 -#: src/screens/StarterPack/Wizard/index.tsx:191 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Skip" msgstr "跳過" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:228 msgid "Skip this flow" msgstr "跳過此流程" +#: src/components/dialogs/nuxs/NeueTypography.tsx:95 +#: src/screens/Settings/AppearanceSettings.tsx:165 +msgid "Smaller" +msgstr "更小" + #: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "軟體開發" @@ -5970,7 +6076,7 @@ msgstr "其他您可能喜歡的動態源" msgid "Some people can reply" msgstr "僅部分人可以回覆" -#: src/screens/Messages/Conversation/index.tsx:106 +#: src/screens/Messages/Conversation.tsx:109 msgid "Something went wrong" msgstr "發生了一些問題" @@ -5979,33 +6085,33 @@ msgstr "發生了一些問題" msgid "Something went wrong, please try again" msgstr "發生了一些問題,請再試一次" -#: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:115 +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:117 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "發生了一些問題,請再試一次。" #: src/components/Lists.tsx:200 -#: src/view/screens/NotificationsSettings.tsx:46 +#: src/view/screens/NotificationsSettings.tsx:49 msgid "Something went wrong!" msgstr "發生了一些問題!" -#: src/App.native.tsx:102 -#: src/App.web.tsx:88 +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "抱歉!您的登入會話已過期。請重新登入。" -#: src/view/screens/PreferencesThreads.tsx:63 +#: src/view/screens/PreferencesThreads.tsx:64 msgid "Sort Replies" msgstr "排序回覆" -#: src/view/screens/PreferencesThreads.tsx:66 +#: src/view/screens/PreferencesThreads.tsx:67 msgid "Sort replies to the same post by:" msgstr "對同一貼文的回覆進行排序:" -#: src/components/moderation/LabelsOnMeDialog.tsx:163 -msgid "Source: <0>{sourceName}" -msgstr "來源:{sourceName}" +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "來源:" #: src/lib/moderation/useReportOptions.ts:72 #: src/lib/moderation/useReportOptions.ts:85 @@ -6017,73 +6123,69 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾訊息、過多的提及或回覆" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "運動" -#: src/view/com/modals/crop-image/CropImage.web.tsx:145 -msgid "Square" -msgstr "方塊" - -#: src/components/dms/dialogs/NewChatDialog.tsx:63 +#: src/components/dms/dialogs/NewChatDialog.tsx:61 msgid "Start a new chat" msgstr "開始新對話" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:371 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:349 msgid "Start chat with {displayName}" msgstr "與 {displayName} 開始對話" -#: src/components/dms/MessagesNUX.tsx:161 -msgid "Start chatting" -msgstr "開始對話" - -#: src/Navigation.tsx:358 -#: src/Navigation.tsx:363 -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/Navigation.tsx:357 +#: src/Navigation.tsx:362 +#: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" -msgstr "入門包" +msgstr "新手包" -#: src/components/StarterPack/StarterPackCard.tsx:73 +#: src/components/StarterPack/StarterPackCard.tsx:81 msgid "Starter pack by {0}" -msgstr "由 {0} 建立的入門包" +msgstr "由 {0} 建立的新手包" -#: src/screens/StarterPack/StarterPackScreen.tsx:703 +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "由您建立的新手包" + +#: src/screens/StarterPack/StarterPackScreen.tsx:714 msgid "Starter pack is invalid" -msgstr "無效的入門包" +msgstr "無效的新手包" -#: src/view/screens/Profile.tsx:225 +#: src/view/screens/Profile.tsx:233 msgid "Starter Packs" -msgstr "入門包" +msgstr "新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +#: src/components/StarterPack/ProfileStarterPacks.tsx:239 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "入門包讓您輕鬆地分享您喜愛的動態源與人物給您的朋友。" +msgstr "新手包讓您輕鬆地分享您喜愛的動態源與人物給您的朋友。" -#: src/view/screens/Settings/index.tsx:917 +#: src/view/screens/Settings/index.tsx:918 msgid "Status Page" msgstr "服務運作狀態頁面" -#: src/screens/Signup/index.tsx:136 +#: src/screens/Signup/index.tsx:130 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/view/screens/Settings/index.tsx:278 +#: src/view/screens/Settings/index.tsx:279 msgid "Storage cleared, you need to restart the app now." msgstr "已清除儲存資料,您需要立即重啟應用程式。" -#: src/Navigation.tsx:241 -#: src/view/screens/Settings/index.tsx:829 +#: src/Navigation.tsx:240 +#: src/view/screens/Settings/index.tsx:830 msgid "Storybook" msgstr "故事書" -#: src/components/moderation/LabelsOnMeDialog.tsx:293 -#: src/components/moderation/LabelsOnMeDialog.tsx:294 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:142 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:143 +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Submit" msgstr "提交" -#: src/view/screens/ProfileList.tsx:700 +#: src/view/screens/ProfileList.tsx:703 msgid "Subscribe" msgstr "訂閱" @@ -6091,18 +6193,22 @@ msgstr "訂閱" msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @{0} 以使用這些標記:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Subscribe to Labeler" msgstr "訂閱標記者" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" msgstr "訂閱這個標記者" -#: src/view/screens/ProfileList.tsx:696 +#: src/view/screens/ProfileList.tsx:699 msgid "Subscribe to this list" msgstr "訂閱這個列表" +#: src/components/dialogs/VerifyEmailDialog.tsx:81 +msgid "Success!" +msgstr "完成!" + #: src/view/screens/Search/Explore.tsx:332 msgid "Suggested accounts" msgstr "推薦的帳號" @@ -6111,39 +6217,41 @@ msgstr "推薦的帳號" msgid "Suggested for you" msgstr "為您推薦" -#: src/view/com/modals/SelfLabel.tsx:96 +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 msgid "Suggestive" msgstr "性暗示" -#: src/Navigation.tsx:261 -#: src/view/screens/Support.tsx:30 -#: src/view/screens/Support.tsx:33 +#: src/Navigation.tsx:260 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 msgid "Support" msgstr "支援" -#: src/components/dialogs/SwitchAccount.tsx:47 -#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "切換帳號" -#: src/view/screens/Settings/index.tsx:126 +#: src/view/screens/Settings/index.tsx:131 msgid "Switch to {0}" msgstr "切換到 {0}" -#: src/view/screens/Settings/index.tsx:127 +#: src/view/screens/Settings/index.tsx:132 msgid "Switches the account you are logged in to" msgstr "切換您登入的帳號" -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:87 +#: src/components/dialogs/nuxs/NeueTypography.tsx:78 +#: src/screens/Settings/AppearanceSettings.tsx:101 +#: src/screens/Settings/AppearanceSettings.tsx:148 msgid "System" msgstr "系統" -#: src/view/screens/Settings/index.tsx:817 +#: src/view/screens/Settings/index.tsx:818 msgid "System log" msgstr "系統日誌" -#: src/components/TagMenu/index.tsx:89 +#: src/components/TagMenu/index.tsx:87 msgid "Tag menu: {displayTag}" msgstr "標籤選單:{displayTag}" @@ -6151,23 +6259,19 @@ msgstr "標籤選單:{displayTag}" msgid "Tags only" msgstr "僅限標籤" -#: src/view/com/modals/crop-image/CropImage.web.tsx:135 -msgid "Tall" -msgstr "高" - #: src/components/ProgressGuide/Toast.tsx:150 msgid "Tap to dismiss" msgstr "點擊以跳過" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:145 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 msgid "Tap to enter full screen" msgstr "點擊以進入全螢幕" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:151 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 msgid "Tap to play or pause" -msgstr "" +msgstr "點擊以播放或暫停" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:164 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 msgid "Tap to toggle sound" msgstr "點擊以開關聲音" @@ -6185,7 +6289,7 @@ msgid "Teach our algorithm what you like" msgstr "讓我們的演算法知道您喜歡什麼" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "科技" @@ -6193,23 +6297,23 @@ msgstr "科技" msgid "Tell a joke!" msgstr "說個笑話!🤡" +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "跟大家介紹一下你自己吧" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" msgstr "告訴我們更多" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:518 -msgid "Ten Million" -msgstr "" - #: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:271 -#: src/screens/Signup/StepInfo/Policies.tsx:52 -#: src/view/screens/Settings/index.tsx:905 -#: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:292 +#: src/Navigation.tsx:270 +#: src/view/screens/Settings/index.tsx:906 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:284 +#: src/view/shell/Drawer.tsx:286 msgid "Terms of Service" msgstr "服務條款" @@ -6224,25 +6328,25 @@ msgstr "所使用的文字違反了社群標準" msgid "Text & tags" msgstr "文字和標籤" -#: src/components/moderation/LabelsOnMeDialog.tsx:257 -#: src/screens/Messages/Conversation/ChatDisabled.tsx:108 +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 msgid "Text input field" msgstr "文字輸入框" -#: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:81 +#: src/components/dialogs/VerifyEmailDialog.tsx:82 +msgid "Thank you! Your email has been successfully verified." +msgstr "謝謝您!您的電子郵件地址已成功驗證。" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 msgid "Thank you. Your report has been sent." msgstr "謝謝,您的檢舉已提交。" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:593 -msgid "Thanks for being one of our first 10 million users." -msgstr "" +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "謝謝,您已成功驗證您的電子郵件地址。您可以關閉此對話框。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:74 -msgid "Thanks, you have successfully verified your email address." -msgstr "謝謝,您已成功驗證您的電子郵件地址。" - -#: src/view/com/modals/ChangeHandle.tsx:459 +#: src/view/com/modals/ChangeHandle.tsx:452 msgid "That contains the following:" msgstr "其中包含以下內容:" @@ -6250,38 +6354,38 @@ msgstr "其中包含以下內容:" msgid "That handle is already taken." msgstr "這個帳號代碼已被使用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:97 -#: src/screens/StarterPack/StarterPackScreen.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:137 -#: src/screens/StarterPack/StarterPackScreen.tsx:138 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 msgid "That starter pack could not be found." -msgstr "找不到那個入門包。" +msgstr "找不到那個新手包。" -#: src/view/com/post-thread/PostQuotes.tsx:127 +#: src/view/com/post-thread/PostQuotes.tsx:133 msgid "That's all, folks!" msgstr "大功告成!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:270 -#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 +#: src/view/com/profile/ProfileMenu.tsx:329 msgid "The account will be able to interact with you after unblocking." msgstr "解除封鎖後,該帳號將能夠與您互動。" #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 msgid "The author of this thread has hidden this reply." -msgstr "此討論串的發布者已隱藏這個回覆。" +msgstr "此討論串的發佈者已隱藏這個回覆。" -#: src/screens/Moderation/index.tsx:368 +#: src/screens/Moderation/index.tsx:369 msgid "The Bluesky web application" msgstr "Bluesky 網頁應用程式" -#: src/view/screens/CommunityGuidelines.tsx:36 +#: src/view/screens/CommunityGuidelines.tsx:38 msgid "The Community Guidelines have been moved to <0/>" msgstr "社群準則已移動到 <0/>" -#: src/view/screens/CopyrightPolicy.tsx:33 +#: src/view/screens/CopyrightPolicy.tsx:35 msgid "The Copyright Policy has been moved to <0/>" msgstr "版權政策已移動到 <0/>" @@ -6294,7 +6398,7 @@ msgstr "Discover 動態源" msgid "The Discover feed now knows what you like" msgstr "「Discover」動態源現在知道您喜歡什麼" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。" @@ -6319,63 +6423,59 @@ msgstr "以下步驟將幫助自訂您的 Bluesky 體驗。" msgid "The post may have been deleted." msgstr "這則貼文可能已被刪除。" -#: src/view/screens/PrivacyPolicy.tsx:33 +#: src/view/screens/PrivacyPolicy.tsx:35 msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私政策已移動到 <0/>" -#: src/state/queries/video/video.ts:227 +#: src/view/com/composer/state/video.ts:409 msgid "The selected video is larger than 50MB." msgstr "選擇的影片檔案大小超過 50MB。" -#: src/screens/StarterPack/StarterPackScreen.tsx:713 +#: src/screens/StarterPack/StarterPackScreen.tsx:724 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "您正在嘗試查看的入門包無效。您可以考慮刪除這個入門包。" +msgstr "您正在嘗試查看的新手包無效。您可以考慮刪除這個新手包。" -#: src/view/screens/Support.tsx:36 +#: src/view/screens/Support.tsx:37 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." msgstr "支援表單已移至別處。如果需協助,請<0/>或前往 {HELP_DESK_URL} 與我們聯繫。" -#: src/view/screens/TermsOfService.tsx:33 +#: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "服務條款已遷移到" -#: src/components/intents/VerifyEmailIntentDialog.tsx:85 +#: src/components/intents/VerifyEmailIntentDialog.tsx:94 msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." msgstr "您提供的驗證碼無效。請確認您使用了正確的驗證連結,或申請新的驗證連結。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:82 +#: src/screens/Settings/AppearanceSettings.tsx:152 +msgid "Theme" +msgstr "主題" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +#~ msgid "There are no self-labels that can be applied to this post." +#~ msgstr "沒有適用於這篇貼文的標籤。" + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." msgstr "帳號停用沒有時間限制,隨時都可以重新啟用。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:545 -msgid "There was an an issue contacting the server, please check your internet connection and try again." -msgstr "連線至伺服器時出現問題,請檢查您的網路連線並重試。" - -#: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an an issue removing this feed. Please check your internet connection and try again." -msgstr "刪除動態源時出現問題,請檢查您的網路連線並重試。" - -#: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:71 -#: src/view/screens/ProfileFeed.tsx:206 -msgid "There was an an issue updating your feeds, please check your internet connection and try again." -msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" - -#: src/components/dialogs/GifSelect.ios.tsx:197 -#: src/components/dialogs/GifSelect.tsx:213 +#: src/components/dialogs/GifSelect.tsx:225 msgid "There was an issue connecting to Tenor." msgstr "連線到 Tenor 時出現問題。" -#: src/view/screens/ProfileFeed.tsx:235 -#: src/view/screens/ProfileList.tsx:359 -#: src/view/screens/ProfileList.tsx:378 -#: src/view/screens/SavedFeeds.tsx:238 -#: src/view/screens/SavedFeeds.tsx:264 -#: src/view/screens/SavedFeeds.tsx:290 +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "連線伺服器時出現問題" +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "連線至伺服器時出現問題,請檢查您的網路連線並重試。" + #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 msgid "There was an issue contacting your server" @@ -6385,39 +6485,49 @@ msgstr "連線伺服器時出現問題" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,點擊這裡重試。" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,點擊這裡重試。" -#: src/view/com/lists/ListMembers.tsx:172 +#: src/view/com/lists/ListMembers.tsx:169 msgid "There was an issue fetching the list. Tap here to try again." msgstr "取得列表時發生問題,點擊這裡重試。" #: src/view/com/feeds/ProfileFeedgens.tsx:150 -#: src/view/com/lists/ProfileLists.tsx:154 +#: src/view/com/lists/ProfileLists.tsx:149 msgid "There was an issue fetching your lists. Tap here to try again." msgstr "取得列表時發生問題,點擊這裡重試。" -#: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:86 +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "刪除動態源時出現問題,請檢查您的網路連線並重試。" + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 msgid "There was an issue sending your report. Please check your internet connection." msgstr "提交您的檢舉時出現問題,請檢查您的網路連線。" -#: src/view/screens/AppPasswords.tsx:69 +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" + +#: src/view/screens/AppPasswords.tsx:75 msgid "There was an issue with fetching your app passwords" msgstr "取得應用程式專用密碼時發生問題" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:103 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:125 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:139 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:97 -#: src/view/com/post-thread/PostThreadFollowBtn.tsx:109 -#: src/view/com/profile/ProfileMenu.tsx:111 -#: src/view/com/profile/ProfileMenu.tsx:122 -#: src/view/com/profile/ProfileMenu.tsx:137 -#: src/view/com/profile/ProfileMenu.tsx:148 -#: src/view/com/profile/ProfileMenu.tsx:162 -#: src/view/com/profile/ProfileMenu.tsx:175 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:97 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:118 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:131 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:102 +#: src/view/com/profile/ProfileMenu.tsx:112 +#: src/view/com/profile/ProfileMenu.tsx:126 +#: src/view/com/profile/ProfileMenu.tsx:136 +#: src/view/com/profile/ProfileMenu.tsx:149 +#: src/view/com/profile/ProfileMenu.tsx:161 msgid "There was an issue! {0}" msgstr "發生問題!{0}" @@ -6425,16 +6535,15 @@ msgstr "發生問題!{0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:391 -#: src/view/screens/ProfileList.tsx:405 -#: src/view/screens/ProfileList.tsx:419 -#: src/view/screens/ProfileList.tsx:433 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 msgid "There was an issue. Please check your internet connection and try again." msgstr "發生問題了。請檢查您的網路連線並重試。" -#: src/components/dialogs/GifSelect.ios.tsx:239 -#: src/components/dialogs/GifSelect.tsx:259 -#: src/view/com/util/ErrorBoundary.tsx:57 +#: src/components/dialogs/GifSelect.tsx:271 +#: src/view/com/util/ErrorBoundary.tsx:59 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "應用程式中發生了意外問題。請告訴我們是否發生在您身上!" @@ -6442,11 +6551,11 @@ msgstr "應用程式中發生了意外問題。請告訴我們是否發生在您 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky 迎來了大量新用戶!我們將儘快啟用您的帳號。" -#: src/components/moderation/ScreenHider.tsx:117 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被標記:" -#: src/components/moderation/ScreenHider.tsx:112 +#: src/components/moderation/ScreenHider.tsx:106 msgid "This account has requested that users sign in to view their profile." msgstr "此帳號要求使用者登入後才能查看其個人檔案。" @@ -6454,15 +6563,15 @@ msgstr "此帳號要求使用者登入後才能查看其個人檔案。" msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." msgstr "此帳號已被一個或多個內容管理清單封鎖。若要解除封鎖,請檢查這些清單並刪除此使用者。" -#: src/components/moderation/LabelsOnMeDialog.tsx:241 +#: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." msgstr "此申訴將被提交至 <0>{sourceName}。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:104 +#: src/screens/Messages/components/ChatDisabled.tsx:104 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "此申訴將發送至 Bluesky 的內容管理服務。" -#: src/screens/Messages/Conversation/MessageListError.tsx:18 +#: src/screens/Messages/components/MessageListError.tsx:18 msgid "This chat was disconnected" msgstr "對話已中斷連線" @@ -6474,7 +6583,7 @@ msgstr "此內容已被內容管理者隱藏。" msgid "This content has received a general warning from moderators." msgstr "此內容已套用內容管理提供者所標記的普通警告。" -#: src/components/dialogs/EmbedConsent.tsx:64 +#: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" msgstr "此內容由 {0} 託管。是否要啟用外部媒體?" @@ -6487,11 +6596,11 @@ msgstr "由於有用戶被另一個用戶封鎖,導致無法查看此內容。 msgid "This content is not viewable without a Bluesky account." msgstr "沒有 Bluesky 帳號,無法查看此內容。" -#: src/screens/Messages/List/ChatListItem.tsx:213 +#: src/screens/Messages/components/ChatListItem.tsx:266 msgid "This conversation is with a deleted or a deactivated account. Press for options." msgstr "這是一段與已刪除或已停用帳號的對話。按此以查看選項。" -#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:92 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." msgstr "此功能目前為測試版本。您可以在<0>這篇部落格文章中瞭解更多有關資訊。" @@ -6504,8 +6613,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "這個動態源是空的!您或許需要先跟隨更多的人或檢查您的語言設定。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:474 -#: src/view/screens/ProfileList.tsx:785 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "這裡是空的。" @@ -6513,7 +6622,7 @@ msgstr "這裡是空的。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "此動態源已經下線。我們將展示「<0>Discover」動態源。" -#: src/components/dialogs/BirthDateSettings.tsx:41 +#: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "此資訊不會分享給其他用戶。" @@ -6521,15 +6630,15 @@ msgstr "此資訊不會分享給其他用戶。" msgid "This is important in case you ever need to change your email or reset your password." msgstr "這很重要,以防您將來需要更改電子郵件地址或重設密碼。" -#: src/components/moderation/ModerationDetailsDialog.tsx:144 +#: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." msgstr "此標記由 <0>{0} 新增。" -#: src/components/moderation/ModerationDetailsDialog.tsx:142 +#: src/components/moderation/ModerationDetailsDialog.tsx:146 msgid "This label was applied by the author." -msgstr "此標記由發布者新增。" +msgstr "此標記由發佈者新增。" -#: src/components/moderation/LabelsOnMeDialog.tsx:161 +#: src/components/moderation/LabelsOnMeDialog.tsx:163 msgid "This label was applied by you." msgstr "此標記由您新增。" @@ -6545,7 +6654,7 @@ msgstr "此連結將帶您到以下網站:" msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." msgstr "此列表由 <0>{0} 創建,其名稱或說明中可能包含違反 Bluesky 社群準則的內容。" -#: src/view/screens/ProfileList.tsx:963 +#: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "此列表為空!" @@ -6557,28 +6666,28 @@ msgstr "此內容管理服務暫時無法使用,詳情請見下文。如果問 msgid "This name is already in use" msgstr "此名稱已被使用" -#: src/view/com/post-thread/PostThreadItem.tsx:140 +#: src/view/com/post-thread/PostThreadItem.tsx:139 msgid "This post has been deleted." msgstr "這則貼文已被刪除。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:656 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:358 +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:346 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "只有登入用戶能見到這則貼文,未登入的人將看不到它。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:637 +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "這則貼文將從討論串及動態源中被隱藏,這個操作無法撤銷。" -#: src/view/com/composer/useExternalLinkFetch.ts:67 +#: src/view/com/composer/Composer.tsx:364 msgid "This post's author has disabled quote posts." -msgstr "這則貼文的發布者已停用引用。" +msgstr "這則貼文的發佈者已停用引用。" -#: src/view/com/profile/ProfileMenu.tsx:374 +#: src/view/com/profile/ProfileMenu.tsx:350 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "只有登入用戶能見到此個人檔案。 未登入的人將看不到它。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:699 +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." msgstr "此回覆將被分類到您討論串底部的隱藏部分,並將為您自己和其他人靜音後續回覆的通知。" @@ -6586,7 +6695,7 @@ msgstr "此回覆將被分類到您討論串底部的隱藏部分,並將為您 msgid "This service has not provided terms of service or a privacy policy." msgstr "此服務尚未提供服務條款或隱私政策。" -#: src/view/com/modals/ChangeHandle.tsx:439 +#: src/view/com/modals/ChangeHandle.tsx:432 msgid "This should create a domain record at:" msgstr "這應該會在以下位置建立一個域名記錄:" @@ -6631,28 +6740,28 @@ msgstr "這將從您的靜音文字中刪除 \"{0}\",您隨時可以新增回 msgid "This will remove @{0} from the quick access list." msgstr "這將從快速存取清單中刪除 @{0}。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:689 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." msgstr "這將刪除所有对您這則貼文的引用,並將其替換為一個佔位符。" -#: src/view/screens/Settings/index.tsx:560 +#: src/view/screens/Settings/index.tsx:561 msgid "Thread preferences" msgstr "討論串偏好" -#: src/view/screens/PreferencesThreads.tsx:51 -#: src/view/screens/Settings/index.tsx:570 +#: src/view/screens/PreferencesThreads.tsx:52 +#: src/view/screens/Settings/index.tsx:571 msgid "Thread Preferences" msgstr "討論串偏好" -#: src/view/screens/PreferencesThreads.tsx:113 +#: src/view/screens/PreferencesThreads.tsx:114 msgid "Threaded Mode" msgstr "樹狀顯示模式" -#: src/Navigation.tsx:304 +#: src/Navigation.tsx:303 msgid "Threads Preferences" msgstr "討論串偏好" -#: src/view/screens/Settings/DisableEmail2FADialog.tsx:102 +#: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "若要關閉電子郵件雙重驗證,請驗證您的電子郵件地址。" @@ -6660,41 +6769,37 @@ msgstr "若要關閉電子郵件雙重驗證,請驗證您的電子郵件地址 msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." msgstr "若要檢舉對話,請透過對話畫面檢舉其中一則訊息。這可以讓我們的內容管理者瞭解問題的來龍去脈。" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:120 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." msgstr "要上傳影片到 Bluesky,您必須先驗證您的電子郵件。" -#: src/components/ReportDialog/SelectLabelerView.tsx:33 +#: src/components/ReportDialog/SelectLabelerView.tsx:32 msgid "To whom would you like to send this report?" msgstr "您希望向誰提交此檢舉?" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:597 -msgid "Together, we're rebuilding the social internet. We're glad you're here." -msgstr "" +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "今天" #: src/view/com/util/forms/DropdownButton.tsx:255 msgid "Toggle dropdown" msgstr "切換下拉式選單" -#: src/screens/Moderation/index.tsx:345 +#: src/screens/Moderation/index.tsx:346 msgid "Toggle to enable or disable adult content" msgstr "切換以啟用或停用成人內容" -#: src/screens/Hashtag.tsx:86 -#: src/view/screens/Search/Search.tsx:349 +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "熱門" -#: src/view/com/modals/EditImage.tsx:272 -msgid "Transformations" -msgstr "轉換" - #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:746 -#: src/view/com/post-thread/PostThreadItem.tsx:748 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 -#: src/view/com/util/forms/PostDropdownBtn.tsx:382 +#: src/view/com/post-thread/PostThreadItem.tsx:734 +#: src/view/com/post-thread/PostThreadItem.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 msgid "Translate" msgstr "翻譯" @@ -6703,40 +6808,40 @@ msgctxt "action" msgid "Try again" msgstr "重試" -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:102 msgid "TV" msgstr "電視節目" -#: src/view/screens/Settings/index.tsx:711 +#: src/view/screens/Settings/index.tsx:712 msgid "Two-factor authentication" msgstr "雙重驗證" -#: src/screens/Messages/Conversation/MessageInput.tsx:141 +#: src/screens/Messages/components/MessageInput.tsx:141 msgid "Type your message here" msgstr "在此輸入訊息" -#: src/view/com/modals/ChangeHandle.tsx:422 +#: src/view/com/modals/ChangeHandle.tsx:415 msgid "Type:" msgstr "類型:" -#: src/view/screens/ProfileList.tsx:591 +#: src/view/screens/ProfileList.tsx:594 msgid "Un-block list" msgstr "取消封鎖列表" -#: src/view/screens/ProfileList.tsx:576 +#: src/view/screens/ProfileList.tsx:579 msgid "Un-mute list" msgstr "取消靜音列表" -#: src/screens/Login/ForgotPasswordForm.tsx:74 -#: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:155 -#: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:77 +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "無法連線到服務,請檢查您的網路連線。" -#: src/screens/StarterPack/StarterPackScreen.tsx:637 +#: src/screens/StarterPack/StarterPackScreen.tsx:648 msgid "Unable to delete" msgstr "無法刪除" @@ -6744,14 +6849,14 @@ msgstr "無法刪除" #: src/components/dms/MessagesListBlockedFooter.tsx:96 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/dms/MessagesListBlockedFooter.tsx:111 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 -#: src/view/com/profile/ProfileMenu.tsx:365 -#: src/view/screens/ProfileList.tsx:682 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:187 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/screens/ProfileList.tsx:685 msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192 msgctxt "action" msgid "Unblock" msgstr "解除封鎖" @@ -6761,17 +6866,17 @@ msgstr "解除封鎖" msgid "Unblock account" msgstr "解除封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:303 -#: src/view/com/profile/ProfileMenu.tsx:309 +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 msgid "Unblock Account" msgstr "解除封鎖帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:268 -#: src/view/com/profile/ProfileMenu.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/profile/ProfileMenu.tsx:323 msgid "Unblock Account?" msgstr "解除封鎖?" -#: src/view/com/util/post-ctrls/RepostButton.tsx:69 +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 msgid "Undo repost" @@ -6782,31 +6887,26 @@ msgctxt "action" msgid "Unfollow" msgstr "取消跟隨" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:208 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 msgid "Unfollow {0}" msgstr "取消跟隨 {0}" -#: src/view/com/profile/ProfileMenu.tsx:245 -#: src/view/com/profile/ProfileMenu.tsx:255 +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 msgid "Unfollow Account" msgstr "取消跟隨" -#: src/view/screens/ProfileFeed.tsx:575 +#: src/view/screens/ProfileFeed.tsx:576 msgid "Unlike this feed" msgstr "取消喜歡這個動態源" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 -msgctxt "video" -msgid "Unmute" -msgstr "" - -#: src/components/TagMenu/index.tsx:263 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 -#: src/view/screens/ProfileList.tsx:689 +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "取消靜音" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:388 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 msgctxt "video" msgid "Unmute" msgstr "取消靜音" @@ -6815,12 +6915,12 @@ msgstr "取消靜音" msgid "Unmute {truncatedTag}" msgstr "取消靜音 {truncatedTag}" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 msgid "Unmute Account" msgstr "取消靜音帳號" -#: src/components/TagMenu/index.tsx:219 +#: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" msgstr "取消對所有 {displayTag} 貼文的靜音" @@ -6828,37 +6928,38 @@ msgstr "取消對所有 {displayTag} 貼文的靜音" msgid "Unmute conversation" msgstr "取消靜音對話" -#: src/view/com/util/forms/PostDropdownBtn.tsx:465 -#: src/view/com/util/forms/PostDropdownBtn.tsx:470 +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 msgid "Unmute thread" msgstr "取消靜音討論串" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:317 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 msgid "Unmute video" msgstr "取消靜音影片" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#~ msgid "Unmuted" -#~ msgstr "取消靜音" - -#: src/view/screens/ProfileFeed.tsx:292 -#: src/view/screens/ProfileList.tsx:673 +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "取消釘選" -#: src/view/screens/ProfileFeed.tsx:289 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Unpin from home" msgstr "自首頁取消釘選" -#: src/view/screens/ProfileList.tsx:556 +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "從您的個人檔案中取消釘選" + +#: src/view/screens/ProfileList.tsx:559 msgid "Unpin moderation list" msgstr "取消釘選內容管理列表" -#: src/view/screens/ProfileList.tsx:346 +#: src/view/screens/ProfileList.tsx:356 msgid "Unpinned from your feeds" -msgstr "已從您的動態源取消釘選" +msgstr "已從您的動態源中取消釘選" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226 msgid "Unsubscribe" msgstr "取消訂閱" @@ -6867,7 +6968,7 @@ msgstr "取消訂閱" msgid "Unsubscribe from list" msgstr "取消訂閱這個列表" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 msgid "Unsubscribe from this labeler" msgstr "取消訂閱這個標記者" @@ -6875,7 +6976,7 @@ msgstr "取消訂閱這個標記者" msgid "Unsubscribed from list" msgstr "已從列表中取消訂閱" -#: src/state/queries/video/video.ts:245 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 msgid "Unsupported video type: {mimeType}" msgstr "不支援的影片類型:{mimeType}" @@ -6885,75 +6986,88 @@ msgid "Unwanted Sexual Content" msgstr "不受歡迎的色情內容" #: src/view/com/modals/UserAddRemoveLists.tsx:82 -msgid "Update {displayName} in Lists" -msgstr "更新列表中的 {displayName}" +msgid "Update <0>{displayName} in Lists" +msgstr "更新列表中的 <0>{displayName}" -#: src/view/com/modals/ChangeHandle.tsx:502 +#: src/view/com/modals/ChangeHandle.tsx:495 msgid "Update to {handle}" msgstr "更新至 {handle}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:305 +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 msgid "Updating quote attachment failed" msgstr "更新引用分離狀態失敗" -#: src/view/com/util/forms/PostDropdownBtn.tsx:335 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 msgid "Updating reply visibility failed" msgstr "更新回覆可見性失敗" -#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:180 msgid "Updating..." msgstr "更新中…" -#: src/screens/Onboarding/StepProfile/index.tsx:281 +#: src/screens/Onboarding/StepProfile/index.tsx:290 msgid "Upload a photo instead" msgstr "或是上傳圖片" -#: src/view/com/modals/ChangeHandle.tsx:448 +#: src/view/com/modals/ChangeHandle.tsx:441 msgid "Upload a text file to:" msgstr "上傳文字檔案至:" -#: src/view/com/util/UserAvatar.tsx:361 -#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:371 +#: src/view/com/util/UserAvatar.tsx:374 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "從相機上傳" -#: src/view/com/util/UserAvatar.tsx:378 +#: src/view/com/util/UserAvatar.tsx:388 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "從檔案上傳" -#: src/view/com/util/UserAvatar.tsx:372 -#: src/view/com/util/UserAvatar.tsx:376 +#: src/view/com/util/UserAvatar.tsx:382 +#: src/view/com/util/UserAvatar.tsx:386 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "從圖片庫上傳" -#: src/view/com/modals/ChangeHandle.tsx:402 +#: src/lib/api/index.ts:272 +msgid "Uploading images..." +msgstr "正在上傳圖片..." + +#: src/lib/api/index.ts:326 +#: src/lib/api/index.ts:350 +msgid "Uploading link thumbnail..." +msgstr "正在上傳連結縮圖..." + +#: src/view/com/composer/Composer.tsx:1344 +msgid "Uploading video..." +msgstr "正在上傳影片..." + +#: src/view/com/modals/ChangeHandle.tsx:395 msgid "Use a file on your server" msgstr "使用您伺服器上的檔案" -#: src/view/screens/AppPasswords.tsx:199 +#: src/view/screens/AppPasswords.tsx:205 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." msgstr "使用應用程式專用密碼登入到其他 Bluesky 客戶端,而無需提供完整的帳號權限和密碼。" -#: src/view/com/modals/ChangeHandle.tsx:513 +#: src/view/com/modals/ChangeHandle.tsx:506 msgid "Use bsky.social as hosting provider" msgstr "使用 bsky.social 作為託管服務供應商" -#: src/view/com/modals/ChangeHandle.tsx:512 +#: src/view/com/modals/ChangeHandle.tsx:505 msgid "Use default provider" msgstr "使用預設託管服務供應商" -#: src/view/com/modals/InAppBrowserConsent.tsx:56 -#: src/view/com/modals/InAppBrowserConsent.tsx:58 +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 msgid "Use in-app browser" msgstr "使用內建瀏覽器" -#: src/view/com/modals/InAppBrowserConsent.tsx:66 -#: src/view/com/modals/InAppBrowserConsent.tsx:68 +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 msgid "Use my default browser" msgstr "使用我的預設瀏覽器" @@ -6961,7 +7075,7 @@ msgstr "使用我的預設瀏覽器" msgid "Use recommended" msgstr "使用推薦" -#: src/view/com/modals/ChangeHandle.tsx:394 +#: src/view/com/modals/ChangeHandle.tsx:387 msgid "Use the DNS panel" msgstr "使用 DNS 控制台" @@ -6998,36 +7112,36 @@ msgstr "用戶封鎖了您" msgid "User Blocks You" msgstr "用戶封鎖了您" -#: src/view/com/modals/UserAddRemoveLists.tsx:208 +#: src/view/com/modals/UserAddRemoveLists.tsx:214 msgid "User list by {0}" msgstr "{0} 的用戶列表" -#: src/view/screens/ProfileList.tsx:887 +#: src/view/screens/ProfileList.tsx:890 msgid "User list by <0/>" msgstr "<0/> 的用戶列表" -#: src/view/com/modals/UserAddRemoveLists.tsx:206 -#: src/view/screens/ProfileList.tsx:885 +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 msgid "User list by you" msgstr "您的用戶列表" -#: src/view/com/modals/CreateOrEditList.tsx:184 +#: src/view/com/modals/CreateOrEditList.tsx:176 msgid "User list created" msgstr "已建立用戶列表" -#: src/view/com/modals/CreateOrEditList.tsx:170 +#: src/view/com/modals/CreateOrEditList.tsx:162 msgid "User list updated" msgstr "已更新用戶列表" -#: src/view/screens/Lists.tsx:65 +#: src/view/screens/Lists.tsx:66 msgid "User Lists" msgstr "用戶列表" -#: src/screens/Login/LoginForm.tsx:186 +#: src/screens/Login/LoginForm.tsx:183 msgid "Username or email address" msgstr "帳號代碼或電子郵件地址" -#: src/view/screens/ProfileList.tsx:921 +#: src/view/screens/ProfileList.tsx:924 msgid "Users" msgstr "用戶" @@ -7035,46 +7149,45 @@ msgstr "用戶" msgid "users followed by <0>@{0}" msgstr "被 <0>@{0} 跟隨的用戶" -#: src/components/dms/MessagesNUX.tsx:140 -#: src/components/dms/MessagesNUX.tsx:143 -#: src/screens/Messages/Settings.tsx:84 -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "我跟隨的用戶" -#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 msgid "Users in \"{0}\"" msgstr "「{0}」中的用戶" -#: src/components/LikesDialog.tsx:85 +#: src/components/LikesDialog.tsx:83 msgid "Users that have liked this content or profile" msgstr "喜歡此內容或個人檔案的用戶" -#: src/view/com/modals/ChangeHandle.tsx:430 +#: src/view/com/modals/ChangeHandle.tsx:423 msgid "Value:" msgstr "值:" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:118 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 msgid "Verified email required" msgstr "需要驗證的電子郵件" -#: src/view/com/modals/ChangeHandle.tsx:504 +#: src/view/com/modals/ChangeHandle.tsx:497 msgid "Verify DNS Record" msgstr "驗證 DNS 紀錄" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Verify email" msgstr "驗證電子郵件" -#: src/components/intents/VerifyEmailIntentDialog.tsx:61 +#: src/components/dialogs/VerifyEmailDialog.tsx:120 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" -msgstr "驗證電子郵件對話窗" +msgstr "驗證電子郵件對話框" -#: src/view/screens/Settings/index.tsx:961 +#: src/view/screens/Settings/index.tsx:962 msgid "Verify my email" msgstr "驗證我的電子郵件" -#: src/view/screens/Settings/index.tsx:970 +#: src/view/screens/Settings/index.tsx:971 msgid "Verify My Email" msgstr "驗證我的電子郵件" @@ -7083,33 +7196,34 @@ msgstr "驗證我的電子郵件" msgid "Verify New Email" msgstr "驗證新的電子郵件" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:122 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 msgid "Verify now" msgstr "立即驗證" -#: src/view/com/modals/ChangeHandle.tsx:505 +#: src/view/com/modals/ChangeHandle.tsx:498 msgid "Verify Text File" msgstr "驗證文字檔案" +#: src/components/dialogs/VerifyEmailDialog.tsx:71 #: src/view/com/modals/VerifyEmail.tsx:111 msgid "Verify Your Email" msgstr "驗證您的電子郵件" -#: src/view/screens/Settings/index.tsx:889 +#: src/view/screens/Settings/index.tsx:890 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:144 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 msgid "Video" msgstr "影片" -#: src/state/queries/video/video.ts:138 +#: src/view/com/composer/state/video.ts:372 msgid "Video failed to process" msgstr "影片處理失敗" #: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "電子遊戲" @@ -7117,20 +7231,24 @@ msgstr "電子遊戲" msgid "Video not found." msgstr "找不到影片。" -#: src/view/com/composer/videos/SubtitleDialog.tsx:101 +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 msgid "Video settings" msgstr "影片設定" -#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:93 +#: src/view/com/composer/Composer.tsx:1354 +msgid "Video uploaded" +msgstr "影片已上傳" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 msgid "Video: {0}" msgstr "影片:{0}" -#: src/view/com/composer/videos/SelectVideoBtn.tsx:65 +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 #: src/view/com/composer/videos/VideoPreview.web.tsx:44 msgid "Videos must be less than 60 seconds long" msgstr "影片長度必須少於 60 秒" -#: src/screens/Profile/Header/Shell.tsx:113 +#: src/screens/Profile/Header/Shell.tsx:128 msgid "View {0}'s avatar" msgstr "查看 {0} 的頭像" @@ -7143,15 +7261,23 @@ msgstr "查看 {0} 的個人檔案" msgid "View {displayName}'s profile" msgstr "查看 {displayName} 的個人檔案" -#: src/components/ProfileHoverCard/index.web.tsx:430 +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "查看所有由 @{authorHandle} 發佈,並且帶有標籤 {displayTag} 的貼文" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "查看所有帶有標籤 {displayTag} 的貼文" + +#: src/components/ProfileHoverCard/index.web.tsx:433 msgid "View blocked user's profile" msgstr "查看已封鎖用戶的個人檔案" -#: src/view/screens/Settings/ExportCarDialog.tsx:97 +#: src/view/screens/Settings/ExportCarDialog.tsx:96 msgid "View blogpost for more details" msgstr "檢視部落格文章以瞭解更多詳細資訊" -#: src/view/screens/Log.tsx:56 +#: src/view/screens/Log.tsx:57 msgid "View debug entry" msgstr "查看偵錯項目" @@ -7171,11 +7297,13 @@ msgstr "查看整個討論串" msgid "View information about these labels" msgstr "查看有關這些標記的資訊" -#: src/components/ProfileHoverCard/index.web.tsx:418 -#: src/components/ProfileHoverCard/index.web.tsx:436 -#: src/components/ProfileHoverCard/index.web.tsx:463 -#: src/view/com/posts/AviFollowButton.tsx:56 +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:77 +#: src/view/com/util/PostMeta.tsx:92 msgid "View profile" msgstr "查看資料" @@ -7183,28 +7311,28 @@ msgstr "查看資料" msgid "View the avatar" msgstr "查看頭像" -#: src/components/LabelingServiceCard/index.tsx:137 +#: src/components/LabelingServiceCard/index.tsx:162 msgid "View the labeling service provided by @{0}" msgstr "查看由 @{0} 提供的標記服務" -#: src/view/screens/ProfileFeed.tsx:587 +#: src/view/screens/ProfileFeed.tsx:588 msgid "View users who like this feed" msgstr "查看喜歡此動態源的用戶" -#: src/screens/Moderation/index.tsx:274 +#: src/screens/Moderation/index.tsx:275 msgid "View your blocked accounts" msgstr "查看您封鎖的帳號" -#: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 msgid "View your feeds and explore more" msgstr "查看您的動態並探索更多內容" -#: src/screens/Moderation/index.tsx:244 +#: src/screens/Moderation/index.tsx:245 msgid "View your moderation lists" msgstr "查看您的內容管理列表" -#: src/screens/Moderation/index.tsx:259 +#: src/screens/Moderation/index.tsx:260 msgid "View your muted accounts" msgstr "查看您靜音的帳號" @@ -7227,11 +7355,11 @@ msgstr "警告內容" msgid "Warn content and filter from feeds" msgstr "警告內容並從動態源中過濾" -#: src/screens/Hashtag.tsx:217 +#: src/screens/Hashtag.tsx:218 msgid "We couldn't find any results for that hashtag." msgstr "我們找不到任何與該標籤相關的結果。" -#: src/screens/Messages/Conversation/index.tsx:107 +#: src/screens/Messages/Conversation.tsx:110 msgid "We couldn't load this conversation" msgstr "我們無法載入這個對話" @@ -7239,11 +7367,11 @@ msgstr "我們無法載入這個對話" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我們估計還需要 {estimatedTime} 才能準備好您的帳號。" -#: src/components/intents/VerifyEmailIntentDialog.tsx:98 +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 msgid "We have sent another verification email to <0>{0}." msgstr "我們已發送另一封驗證電子郵件至 <0>{0}。" -#: src/screens/Onboarding/StepFinished.tsx:238 +#: src/screens/Onboarding/StepFinished.tsx:229 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "我們希望您在此度過愉快的時光。請記住,Bluesky 是:" @@ -7251,19 +7379,19 @@ msgstr "我們希望您在此度過愉快的時光。請記住,Bluesky 是:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "您已看完了您跟隨的貼文。這是來自 <0/> 的最新貼文。" -#: src/state/queries/video/video.ts:170 +#: src/view/com/composer/state/video.ts:431 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我們無法確定您是否有上傳影片的權限。請再試一次。" -#: src/components/dialogs/BirthDateSettings.tsx:52 +#: src/components/dialogs/BirthDateSettings.tsx:51 msgid "We were unable to load your birth date preferences. Please try again." msgstr "我們無法載入您的出生日期偏好,請再試一次。" -#: src/screens/Moderation/index.tsx:419 +#: src/screens/Moderation/index.tsx:420 msgid "We were unable to load your configured labelers at this time." msgstr "我們目前無法載入您已設定的標記者。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:129 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號。如果仍繼續失敗,您可以選擇跳過此流程。" @@ -7271,19 +7399,23 @@ msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號 msgid "We will let you know when your account is ready." msgstr "我們會在您的帳號準備好時通知您。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:134 msgid "We'll use this to help customize your experience." msgstr "我們將使用這些資訊來協助訂製您的體驗。" -#: src/components/dms/dialogs/SearchablePeopleList.tsx:90 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 msgid "We're having network issues, try again" msgstr "我們遇到網路問題,請再試一次" -#: src/screens/Signup/index.tsx:100 +#: src/components/dialogs/nuxs/NeueTypography.tsx:54 +msgid "We're introducing a new theme font, along with adjustable font sizing." +msgstr "我們推出了一款新的主題字體,並加入了字體大小的調整功能。" + +#: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "我們非常高興您加入我們!" -#: src/view/screens/ProfileList.tsx:102 +#: src/view/screens/ProfileList.tsx:113 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "很抱歉,我們無法解析此列表。如果問題持續發生,請聯繫列表建立者 @{handleOrDid}。" @@ -7291,20 +7423,20 @@ msgstr "很抱歉,我們無法解析此列表。如果問題持續發生,請 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我們目前無法載入您的靜音文字。請稍後再試。" -#: src/view/screens/Search/Search.tsx:206 +#: src/view/screens/Search/Search.tsx:212 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,無法完成您的搜尋請求。請稍後再試。" -#: src/view/com/composer/Composer.tsx:421 +#: src/view/com/composer/Composer.tsx:361 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!您回覆的貼文已被刪除。" #: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:48 +#: src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我們找不到您正在尋找的頁面。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:331 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "抱歉!您只能訂閱二十個標記者,您已達到二十個的限制。" @@ -7316,25 +7448,25 @@ msgstr "歡迎回來!" msgid "Welcome, friend!" msgstr "歡迎,朋友!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:126 msgid "What are your interests?" msgstr "您對什麼感興趣?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "您想將您的入門包命名為什麼?" +msgstr "您想將您的新手包命名為什麼?" -#: src/view/com/auth/SplashScreen.tsx:40 -#: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:516 +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:573 msgid "What's up?" msgstr "發生了什麼新鮮事?" -#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 msgid "Which languages are used in this post?" msgstr "這個貼文使用了哪些語言?" -#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "您想在演算法動態源中看到哪些語言?" @@ -7342,17 +7474,12 @@ msgstr "您想在演算法動態源中看到哪些語言?" msgid "Who can interact with this post?" msgstr "誰可以參與這則帖子的互動?" -#: src/components/dms/MessagesNUX.tsx:110 -#: src/components/dms/MessagesNUX.tsx:124 -msgid "Who can message you?" -msgstr "誰可以傳送訊息給您?" - #: src/components/WhoCanReply.tsx:87 msgid "Who can reply" msgstr "誰可以回覆" #: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/List/index.tsx:185 +#: src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "哎呀!" @@ -7378,42 +7505,38 @@ msgstr "為什麼應該審查這則貼文?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "為什麼應該審查這個入門包?" +msgstr "為什麼應該審查這個新手包?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" msgstr "為什麼應該審查這個用戶?" -#: src/view/com/modals/crop-image/CropImage.web.tsx:125 -msgid "Wide" -msgstr "寬" - -#: src/screens/Messages/Conversation/MessageInput.tsx:142 -#: src/screens/Messages/Conversation/MessageInput.web.tsx:198 +#: src/screens/Messages/components/MessageInput.tsx:142 +#: src/screens/Messages/components/MessageInput.web.tsx:198 msgid "Write a message" msgstr "撰寫訊息" -#: src/view/com/composer/Composer.tsx:712 +#: src/view/com/composer/Composer.tsx:630 msgid "Write post" msgstr "撰寫貼文" -#: src/view/com/composer/Composer.tsx:515 -#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42 +#: src/view/com/composer/Composer.tsx:572 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 msgid "Write your reply" msgstr "撰寫您的回覆" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "作家" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:167 -#: src/view/screens/PreferencesThreads.tsx:100 -#: src/view/screens/PreferencesThreads.tsx:123 +#: src/view/screens/PreferencesFollowingFeed.tsx:71 +#: src/view/screens/PreferencesFollowingFeed.tsx:98 +#: src/view/screens/PreferencesFollowingFeed.tsx:133 +#: src/view/screens/PreferencesFollowingFeed.tsx:168 +#: src/view/screens/PreferencesThreads.tsx:101 +#: src/view/screens/PreferencesThreads.tsx:124 msgid "Yes" msgstr "開" @@ -7422,15 +7545,15 @@ msgstr "開" msgid "Yes, deactivate" msgstr "確定並停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:649 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 msgid "Yes, delete this starter pack" -msgstr "是,刪除這個入門包" +msgstr "是,刪除這個新手包" -#: src/view/com/util/forms/PostDropdownBtn.tsx:692 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 msgid "Yes, detach" msgstr "是,分離" -#: src/view/com/util/forms/PostDropdownBtn.tsx:702 +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 msgid "Yes, hide" msgstr "是,隱藏" @@ -7438,11 +7561,10 @@ msgstr "是,隱藏" msgid "Yes, reactivate my account" msgstr "確定並停用我的帳號" -#: src/components/dms/MessageItem.tsx:183 -msgid "Yesterday, {time}" -msgstr "昨天,{time}" +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "昨天" -#: src/components/StarterPack/StarterPackCard.tsx:76 #: src/screens/List/ListHiddenScreen.tsx:140 msgid "you" msgstr "您" @@ -7455,7 +7577,7 @@ msgstr "您" msgid "You are in line." msgstr "您正處於隊列之中。" -#: src/state/queries/video/video.ts:161 +#: src/view/com/composer/state/video.ts:424 msgid "You are not allowed to upload videos." msgstr "您沒有上傳影片的權限。" @@ -7463,6 +7585,10 @@ msgstr "您沒有上傳影片的權限。" msgid "You are not following anyone." msgstr "您沒有跟隨任何人。" +#: src/components/dialogs/nuxs/NeueTypography.tsx:61 +msgid "You can adjust these in your Appearance Settings later." +msgstr "您可以稍後在「外觀設定」中調整。" + #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." @@ -7472,16 +7598,12 @@ msgstr "您也可以探索並跟隨新的自訂動態源。" msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." msgstr "您也可以暫時停用帳號,然後隨時重新啟用。" -#: src/components/dms/MessagesNUX.tsx:119 -msgid "You can change this at any time." -msgstr "您可以隨時變更該設定。" - -#: src/screens/Messages/Settings.tsx:111 +#: src/screens/Messages/Settings.tsx:105 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "無論選擇哪種設定,都不會影響已發起的對話。" -#: src/screens/Login/index.tsx:158 -#: src/screens/Login/PasswordUpdatedForm.tsx:33 +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "您現在可以使用新密碼登入。" @@ -7493,7 +7615,7 @@ msgstr "您可以登入以重新啟用帳號。其他用戶將可以重新看到 msgid "You do not have any followers." msgstr "您沒有任何跟隨者。" -#: src/screens/Profile/KnownFollowers.tsx:99 +#: src/screens/Profile/KnownFollowers.tsx:100 msgid "You don't follow any users who follow @{name}." msgstr "您沒有跟隨任何也跟隨 @{name} 之用戶。" @@ -7501,11 +7623,11 @@ msgstr "您沒有跟隨任何也跟隨 @{name} 之用戶。" msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." msgstr "您目前還沒有邀請碼!當您持續使用 Bluesky 一段時間後,我們將提供一些新的邀請碼給您。" -#: src/view/screens/SavedFeeds.tsx:117 +#: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." msgstr "您目前還沒有任何釘選的動態源。" -#: src/view/screens/SavedFeeds.tsx:159 +#: src/view/screens/SavedFeeds.tsx:184 msgid "You don't have any saved feeds." msgstr "您目前還沒有任何已儲存的動態源。" @@ -7523,8 +7645,8 @@ msgstr "您已封鎖該用戶" msgid "You have blocked this user. You cannot view their content." msgstr "您已封鎖了此用戶,您將無法查看他們發佈的內容。" -#: src/screens/Login/SetNewPasswordForm.tsx:54 -#: src/screens/Login/SetNewPasswordForm.tsx:91 +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 #: src/view/com/modals/ChangePassword.tsx:88 #: src/view/com/modals/ChangePassword.tsx:122 msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." @@ -7547,7 +7669,7 @@ msgstr "您已隱藏這個帳號。" msgid "You have muted this user" msgstr "您已靜音這個用戶" -#: src/screens/Messages/List/index.tsx:225 +#: src/screens/Messages/ChatList.tsx:223 msgid "You have no conversations yet. Start one!" msgstr "您還沒有對話,與其他用戶開始對話吧!" @@ -7555,20 +7677,20 @@ msgstr "您還沒有對話,與其他用戶開始對話吧!" msgid "You have no feeds." msgstr "您沒有建立任何動態源。" -#: src/view/com/lists/MyLists.tsx:93 -#: src/view/com/lists/ProfileLists.tsx:139 +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "您沒有建立任何列表。" -#: src/view/screens/ModerationBlockedAccounts.tsx:134 +#: src/view/screens/ModerationBlockedAccounts.tsx:133 msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." msgstr "您還沒有封鎖任何帳號。要封鎖帳號,請前往其個人檔案並在其帳號上的選單中選擇「封鎖帳號」。" -#: src/view/screens/AppPasswords.tsx:90 +#: src/view/screens/AppPasswords.tsx:96 msgid "You have not created any app passwords yet. You can create one by pressing the button below." msgstr "您還沒有建立任何應用程式專用密碼,您可以按下面的按鈕來建立一個。" -#: src/view/screens/ModerationMutedAccounts.tsx:133 +#: src/view/screens/ModerationMutedAccounts.tsx:132 msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." msgstr "您還沒有靜音任何帳號。要靜音帳號,請前往其個人檔案並在其帳號上的選單中選擇「靜音帳號」。" @@ -7576,13 +7698,13 @@ msgstr "您還沒有靜音任何帳號。要靜音帳號,請前往其個人檔 msgid "You have reached the end" msgstr "已經到底部啦!" -#: src/state/queries/video/video-upload.shared.ts:67 +#: src/lib/media/video/upload.shared.ts:56 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "您已暫時達到影片上傳的限制。請稍後再試。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +#: src/components/StarterPack/ProfileStarterPacks.tsx:236 msgid "You haven't created a starter pack yet!" -msgstr "您還沒有建立任何入門包!" +msgstr "您還沒有建立任何新手包!" #: src/components/dialogs/MutedWords.tsx:398 msgid "You haven't muted any words or tags yet" @@ -7591,7 +7713,7 @@ msgstr "您還沒有隱藏任何文字或標籤" #: src/components/moderation/ModerationDetailsDialog.tsx:117 #: src/lib/moderation/useModerationCauseDescription.ts:125 msgid "You hid this reply." -msgstr "你隱藏了這個回覆。" +msgstr "您隱藏了這個回覆。" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "You may appeal non-self labels if you feel they were placed in error." @@ -7609,24 +7731,27 @@ msgstr "您最多只能新增 {STARTER_PACK_MAX_SIZE} 個個人檔案" msgid "You may only add up to 3 feeds" msgstr "您最多只能新增 3 個動態源" -#: src/screens/Signup/StepInfo/Policies.tsx:85 +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "您最多只能選擇 4 張圖片" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 msgid "You must be 13 years of age or older to sign up." msgstr "您必須年滿 13 歲才能註冊。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +#: src/components/StarterPack/ProfileStarterPacks.tsx:307 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "您必須跟隨至少七個人才能建立入門包。" +msgstr "您必須跟隨至少七個人才能建立新手包。" #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "您必須授予對圖片庫的存取權限才能儲存 QR Code" -#: src/components/dialogs/nuxs/TenMillion/index.tsx:237 -#: src/components/StarterPack/ShareDialog.tsx:68 +#: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." msgstr "您必須授予對圖片庫的存取權限才能儲存圖片。" -#: src/components/ReportDialog/SubmitView.tsx:209 +#: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" msgstr "您必須選擇至少一個標記者來提交檢舉" @@ -7634,47 +7759,51 @@ msgstr "您必須選擇至少一個標記者來提交檢舉" msgid "You previously deactivated @{0}." msgstr "您之前停用了 @{0}。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 msgid "You will no longer receive notifications for this thread" msgstr "您將不再收到這條討論串的通知" -#: src/view/com/util/forms/PostDropdownBtn.tsx:212 +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 msgid "You will now receive notifications for this thread" msgstr "您將繼續收到這條討論串的通知" -#: src/screens/Login/SetNewPasswordForm.tsx:104 +#: src/screens/Login/SetNewPasswordForm.tsx:98 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "您將收到一封包含「重設碼」的電子郵件。請在此輸入該代碼,然後輸入您的新密碼。" -#: src/screens/Messages/List/ChatListItem.tsx:114 +#: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" msgstr "您:{0}" -#: src/screens/Messages/List/ChatListItem.tsx:143 +#: src/screens/Messages/components/ChatListItem.tsx:153 msgid "You: {defaultEmbeddedContentMessage}" msgstr "您:{defaultEmbeddedContentMessage}" -#: src/screens/Messages/List/ChatListItem.tsx:136 +#: src/screens/Messages/components/ChatListItem.tsx:146 msgid "You: {short}" msgstr "您:{short}" -#: src/screens/Signup/index.tsx:113 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "當您成功建立帳號後,您將會跟隨建議的用戶和動態源!" -#: src/screens/Signup/index.tsx:118 +#: src/screens/Signup/index.tsx:112 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "當您完成帳號創建後,您將會跟隨建議的用戶!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people and {0} others" msgstr "您將會跟隨這些人物和其他 {0} 人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 msgid "You'll follow these people right away" msgstr "您將會立即跟隨這些人物" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:279 +#: src/components/dialogs/VerifyEmailDialog.tsx:138 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "您將會在 <0>{0} 收到一封電子郵件,以驗證您的身分。" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "您將透過這些動態源接收最新動態" @@ -7689,7 +7818,7 @@ msgstr "輪到您了" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "您正在使用應用程式專用密碼登入。請使用您的主密碼登入,以繼續停用您的帳號。" -#: src/screens/Onboarding/StepFinished.tsx:235 +#: src/screens/Onboarding/StepFinished.tsx:226 msgid "You're ready to go!" msgstr "您已完成設定!" @@ -7702,15 +7831,15 @@ msgstr "您選擇在這則貼文中隱藏文字或標籤。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "您已經瀏覽完貼文啦!跟隨其他帳號吧。" -#: src/state/queries/video/video.ts:175 +#: src/view/com/composer/state/video.ts:435 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "您已達到每日影片上傳限制(位元組過多)" -#: src/state/queries/video/video.ts:180 +#: src/view/com/composer/state/video.ts:439 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "您已達到每日影片上傳限制(影片數過多)" -#: src/screens/Signup/index.tsx:146 +#: src/screens/Signup/index.tsx:140 msgid "Your account" msgstr "您的帳號" @@ -7718,15 +7847,15 @@ msgstr "您的帳號" msgid "Your account has been deleted" msgstr "您的帳號已刪除" -#: src/state/queries/video/video.ts:185 +#: src/view/com/composer/state/video.ts:443 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "您的帳號太新以至於無法上傳影片。請稍後重試。" -#: src/view/screens/Settings/ExportCarDialog.tsx:65 +#: src/view/screens/Settings/ExportCarDialog.tsx:64 msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "您可以將您的帳號儲存庫下載為一個「CAR」檔案。該檔案包含了所有公開的資料紀錄,但不包括嵌入媒體,例如圖片或您的私人資料,目前這些資料必須另外擷取。" -#: src/screens/Signup/StepInfo/index.tsx:181 +#: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "您的生日" @@ -7734,17 +7863,17 @@ msgstr "您的生日" msgid "Your browser does not support the video format. Please try a different browser." msgstr "您的瀏覽器不支援該影片格式。請嘗試使用其他瀏覽器。" -#: src/screens/Messages/Conversation/ChatDisabled.tsx:25 +#: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" msgstr "您的對話功能已被停用" -#: src/view/com/modals/InAppBrowserConsent.tsx:47 +#: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." msgstr "您的選擇將被儲存,但可以稍後在設定中更改。" -#: src/screens/Login/ForgotPasswordForm.tsx:57 +#: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Signup/state.ts:203 -#: src/screens/Signup/StepInfo/index.tsx:75 +#: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "您的電子郵件地址似乎無效。" @@ -7769,7 +7898,7 @@ msgstr "您的「Following」動態源是空的!跟隨更多用戶來看看發 msgid "Your full handle will be" msgstr "您的完整帳號代碼將修改為" -#: src/view/com/modals/ChangeHandle.tsx:265 +#: src/view/com/modals/ChangeHandle.tsx:258 msgid "Your full handle will be <0>@{0}" msgstr "您的完整帳號代碼將修改為 <0>@{0}" @@ -7781,15 +7910,15 @@ msgstr "您的靜音文字" msgid "Your password has been changed successfully!" msgstr "您的密碼已成功更改!" -#: src/view/com/composer/Composer.tsx:467 +#: src/view/com/composer/Composer.tsx:405 msgid "Your post has been published" msgstr "您的貼文已發佈" -#: src/screens/Onboarding/StepFinished.tsx:250 +#: src/screens/Onboarding/StepFinished.tsx:241 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "您的貼文、喜歡和封鎖是公開的,而靜音資訊則只有您可以查看。" -#: src/view/screens/Settings/index.tsx:114 +#: src/view/screens/Settings/index.tsx:119 msgid "Your profile" msgstr "您的個人檔案" @@ -7797,14 +7926,14 @@ msgstr "您的個人檔案" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態和列表。您可以隨時登入以重新啟用您的帳號。" -#: src/view/com/composer/Composer.tsx:466 +#: src/view/com/composer/Composer.tsx:404 msgid "Your reply has been published" msgstr "您的回覆已發佈" -#: src/components/dms/ReportDialog.tsx:162 +#: src/components/dms/ReportDialog.tsx:157 msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "您的檢舉將發送至 Bluesky 內容管理服務" -#: src/screens/Signup/index.tsx:148 +#: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "您的帳號代碼" diff --git a/src/routes.ts b/src/routes.ts index 2ae4126ace..58e9a3abc8 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -1,4 +1,4 @@ -import {Router} from 'lib/routes/router' +import {Router} from '#/lib/routes/router' export const router = new Router({ Home: '/', @@ -7,12 +7,13 @@ export const router = new Router({ Notifications: '/notifications', NotificationsSettings: '/notifications/settings', Settings: '/settings', - LanguageSettings: '/settings/language', Lists: '/lists', + // moderation Moderation: '/moderation', ModerationModlists: '/moderation/modlists', ModerationMutedAccounts: '/moderation/muted-accounts', ModerationBlockedAccounts: '/moderation/blocked-accounts', + // profiles, threads, lists Profile: ['/profile/:name', '/profile/:name/rss'], ProfileFollowers: '/profile/:name/followers', ProfileFollows: '/profile/:name/follows', @@ -25,9 +26,12 @@ export const router = new Router({ ProfileFeed: '/profile/:name/feed/:rkey', ProfileFeedLikedBy: '/profile/:name/feed/:rkey/liked-by', ProfileLabelerLikedBy: '/profile/:name/labeler/liked-by', + // debug Debug: '/sys/debug', DebugMod: '/sys/debug-mod', Log: '/sys/log', + // settings + LanguageSettings: '/settings/language', AppPasswords: '/settings/app-passwords', PreferencesFollowingFeed: '/settings/following-feed', PreferencesThreads: '/settings/threads', @@ -35,15 +39,24 @@ export const router = new Router({ AccessibilitySettings: '/settings/accessibility', AppearanceSettings: '/settings/appearance', SavedFeeds: '/settings/saved-feeds', + // new settings + AccountSettings: '/settings/account', + PrivacyAndSecuritySettings: '/settings/privacy-and-security', + ContentAndMediaSettings: '/settings/content-and-media', + AboutSettings: '/settings/about', + // support Support: '/support', PrivacyPolicy: '/support/privacy', TermsOfService: '/support/tos', CommunityGuidelines: '/support/community-guidelines', CopyrightPolicy: '/support/copyright', + // hashtags Hashtag: '/hashtag/:tag', + // DMs Messages: '/messages', MessagesSettings: '/messages/settings', MessagesConversation: '/messages/:conversation', + // starter packs Start: '/start/:name/:rkey', StarterPackEdit: '/starter-pack/edit/:rkey', StarterPack: '/starter-pack/:name/:rkey', diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx index 9b0b5b1660..2d14b18dbd 100644 --- a/src/screens/Deactivated.tsx +++ b/src/screens/Deactivated.tsx @@ -104,7 +104,7 @@ export function Deactivated() { }, [_, agent, setPending, setError, queryClient]) return ( - + @@ -112,7 +112,7 @@ export function Deactivated() { style={[ a.px_2xl, { - paddingTop: isWeb ? 64 : insets.top, + paddingTop: isWeb ? 64 : insets.top + 16, paddingBottom: isWeb ? 64 : insets.bottom, }, ]}> diff --git a/src/screens/E2E/SharedPreferencesTesterScreen.tsx b/src/screens/E2E/SharedPreferencesTesterScreen.tsx index 06bf538ea6..5a9e6cd22d 100644 --- a/src/screens/E2E/SharedPreferencesTesterScreen.tsx +++ b/src/screens/E2E/SharedPreferencesTesterScreen.tsx @@ -1,9 +1,10 @@ import React from 'react' import {View} from 'react-native' -import {ScrollView} from 'view/com/util/Views' +import {ScrollView} from '#/view/com/util/Views' import {atoms as a} from '#/alf' import {Button, ButtonText} from '#/components/Button' +import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' import {SharedPrefs} from '../../../modules/expo-bluesky-swiss-army' @@ -11,103 +12,105 @@ export function SharedPreferencesTesterScreen() { const [currentTestOutput, setCurrentTestOutput] = React.useState('') return ( - - - - {currentTestOutput} + + + + + {currentTestOutput} + + + + + + + + + - - - - - - - - - - + + ) } diff --git a/src/screens/Hashtag.tsx b/src/screens/Hashtag.tsx index 964cb0191f..adf5f00801 100644 --- a/src/screens/Hashtag.tsx +++ b/src/screens/Hashtag.tsx @@ -6,23 +6,24 @@ import {useLingui} from '@lingui/react' import {useFocusEffect} from '@react-navigation/native' import {NativeStackScreenProps} from '@react-navigation/native-stack' -import {HITSLOP_10} from 'lib/constants' -import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' -import {CommonNavigatorParams} from 'lib/routes/types' -import {shareUrl} from 'lib/sharing' -import {cleanError} from 'lib/strings/errors' -import {sanitizeHandle} from 'lib/strings/handles' -import {enforceLen} from 'lib/strings/helpers' -import {isNative, isWeb} from 'platform/detection' -import {useSearchPostsQuery} from 'state/queries/search-posts' -import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from 'state/shell' +import {HITSLOP_10} from '#/lib/constants' +import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {CommonNavigatorParams} from '#/lib/routes/types' +import {shareUrl} from '#/lib/sharing' +import {cleanError} from '#/lib/strings/errors' +import {sanitizeHandle} from '#/lib/strings/handles' +import {enforceLen} from '#/lib/strings/helpers' +import {isNative, isWeb} from '#/platform/detection' +import {useSearchPostsQuery} from '#/state/queries/search-posts' +import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from '#/state/shell' import {Pager} from '#/view/com/pager/Pager' import {TabBar} from '#/view/com/pager/TabBar' +import {Post} from '#/view/com/post/Post' +import {List} from '#/view/com/util/List' +import {ViewHeader} from '#/view/com/util/ViewHeader' import {CenteredView} from '#/view/com/util/Views' -import {Post} from 'view/com/post/Post' -import {List} from 'view/com/util/List' -import {ViewHeader} from 'view/com/util/ViewHeader' import {ArrowOutOfBox_Stroke2_Corner0_Rounded} from '#/components/icons/ArrowOutOfBox' +import * as Layout from '#/components/Layout' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' const renderItem = ({item}: ListRenderItemInfo) => { @@ -108,7 +109,7 @@ export default function HashtagScreen({ }, [_, fullTag, author, activeTab]) return ( - <> + {section.component} ))} - + ) } diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx index e4354337a8..a694cbb837 100644 --- a/src/screens/List/ListHiddenScreen.tsx +++ b/src/screens/List/ListHiddenScreen.tsx @@ -5,18 +5,18 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' +import {useGoBack} from '#/lib/hooks/useGoBack' +import {sanitizeHandle} from '#/lib/strings/handles' import {logger} from '#/logger' import {RQKEY_ROOT as listQueryRoot} from '#/state/queries/list' -import {useGoBack} from 'lib/hooks/useGoBack' -import {sanitizeHandle} from 'lib/strings/handles' -import {useListBlockMutation, useListMuteMutation} from 'state/queries/list' +import {useListBlockMutation, useListMuteMutation} from '#/state/queries/list' import { UsePreferencesQueryResponse, useRemoveFeedMutation, -} from 'state/queries/preferences' -import {useSession} from 'state/session' -import * as Toast from 'view/com/util/Toast' -import {CenteredView} from 'view/com/util/Views' +} from '#/state/queries/preferences' +import {useSession} from '#/state/session' +import * as Toast from '#/view/com/util/Toast' +import {CenteredView} from '#/view/com/util/Views' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash' diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/ChatList.tsx similarity index 97% rename from src/screens/Messages/List/index.tsx rename to src/screens/Messages/ChatList.tsx index efd717f0b4..45b3bf14fa 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -22,18 +22,18 @@ import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {DialogControlProps, useDialogControl} from '#/components/Dialog' import {NewChat} from '#/components/dms/dialogs/NewChatDialog' -import {MessagesNUX} from '#/components/dms/MessagesNUX' import {useRefreshOnFocus} from '#/components/hooks/useRefreshOnFocus' import {ArrowRotateCounterClockwise_Stroke2_Corner0_Rounded as Retry} from '#/components/icons/ArrowRotateCounterClockwise' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {Message_Stroke2_Corner0_Rounded as Message} from '#/components/icons/Message' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {SettingsSliderVertical_Stroke2_Corner0_Rounded as SettingsSlider} from '#/components/icons/SettingsSlider' +import * as Layout from '#/components/Layout' import {Link} from '#/components/Link' import {ListFooter} from '#/components/Lists' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' -import {ChatListItem} from './ChatListItem' +import {ChatListItem} from './components/ChatListItem' type Props = NativeStackScreenProps @@ -150,9 +150,7 @@ export function MessagesScreen({navigation, route}: Props) { if (conversations.length < 1) { return ( - - - + {gtMobile ? ( )} - + ) } return ( - - + {!gtMobile && ( - + ) } diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation.tsx similarity index 88% rename from src/screens/Messages/Conversation/index.tsx rename to src/screens/Messages/Conversation.tsx index d14ed160ae..651915738a 100644 --- a/src/screens/Messages/Conversation/index.tsx +++ b/src/screens/Messages/Conversation.tsx @@ -8,20 +8,21 @@ import {useFocusEffect} from '@react-navigation/native' import {NativeStackScreenProps} from '@react-navigation/native-stack' import {CommonNavigatorParams} from '#/lib/routes/types' +import {isWeb} from '#/platform/detection' +import {useProfileShadow} from '#/state/cache/profile-shadow' +import {ConvoProvider, isConvoActive, useConvo} from '#/state/messages/convo' +import {ConvoStatus} from '#/state/messages/convo/types' import {useCurrentConvoId} from '#/state/messages/current-convo-id' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useProfileQuery} from '#/state/queries/profile' -import {isWeb} from 'platform/detection' -import {useProfileShadow} from 'state/cache/profile-shadow' -import {ConvoProvider, isConvoActive, useConvo} from 'state/messages/convo' -import {ConvoStatus} from 'state/messages/convo/types' -import {useSetMinimalShellMode} from 'state/shell' -import {CenteredView} from 'view/com/util/Views' -import {MessagesList} from '#/screens/Messages/Conversation/MessagesList' -import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {useSetMinimalShellMode} from '#/state/shell' +import {CenteredView} from '#/view/com/util/Views' +import {MessagesList} from '#/screens/Messages/components/MessagesList' +import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' import {MessagesListBlockedFooter} from '#/components/dms/MessagesListBlockedFooter' import {MessagesListHeader} from '#/components/dms/MessagesListHeader' import {Error} from '#/components/Error' +import * as Layout from '#/components/Layout' import {Loader} from '#/components/Loader' type Props = NativeStackScreenProps< @@ -64,9 +65,11 @@ export function MessagesConversationScreen({route}: Props) { ) return ( - - - + + + + + ) } @@ -100,7 +103,7 @@ function Inner() { if (convoState.status === ConvoStatus.Error) { return ( - + { - const {currentAccount} = useSession() - const moderationOpts = useModerationOpts() - - const otherUser = convo.members.find( - member => member.did !== currentAccount?.did, - ) - - if (!otherUser || !moderationOpts) { - return null - } - - return ( - - ) -} - -ChatListItem = React.memo(ChatListItem) - -function ChatListItemReady({ - convo, - profile: profileUnshadowed, - moderationOpts, -}: { - convo: ChatBskyConvoDefs.ConvoView - profile: AppBskyActorDefs.ProfileViewBasic - moderationOpts: ModerationOpts -}) { - const t = useTheme() - const {_} = useLingui() - const {currentAccount} = useSession() - const menuControl = useMenuControl() - const {gtMobile} = useBreakpoints() - const profile = useProfileShadow(profileUnshadowed) - const moderation = React.useMemo( - () => moderateProfile(profile, moderationOpts), - [profile, moderationOpts], - ) - const playHaptic = useHaptics() - - const blockInfo = React.useMemo(() => { - const modui = moderation.ui('profileView') - const blocks = modui.alerts.filter(alert => alert.type === 'blocking') - const listBlocks = blocks.filter(alert => alert.source.type === 'list') - const userBlock = blocks.find(alert => alert.source.type === 'user') - return { - listBlocks, - userBlock, - } - }, [moderation]) - - const isDeletedAccount = profile.handle === 'missing.invalid' - const displayName = isDeletedAccount - ? 'Deleted Account' - : sanitizeDisplayName( - profile.displayName || profile.handle, - moderation.ui('displayName'), - ) - - const isDimStyle = convo.muted || moderation.blocked || isDeletedAccount - - const {lastMessage, lastMessageSentAt} = React.useMemo(() => { - let lastMessage = _(msg`No messages yet`) - let lastMessageSentAt: string | null = null - - if (ChatBskyConvoDefs.isMessageView(convo.lastMessage)) { - const isFromMe = convo.lastMessage.sender?.did === currentAccount?.did - - if (convo.lastMessage.text) { - if (isFromMe) { - lastMessage = _(msg`You: ${convo.lastMessage.text}`) - } else { - lastMessage = convo.lastMessage.text - } - } else if (convo.lastMessage.embed) { - const defaultEmbeddedContentMessage = _( - msg`(contains embedded content)`, - ) - - if (AppBskyEmbedRecord.isView(convo.lastMessage.embed)) { - const embed = convo.lastMessage.embed - - if (AppBskyEmbedRecord.isViewRecord(embed.record)) { - const record = embed.record - const path = postUriToRelativePath(record.uri, { - handle: record.author.handle, - }) - const href = path ? toBskyAppUrl(path) : undefined - const short = href - ? toShortUrl(href) - : defaultEmbeddedContentMessage - if (isFromMe) { - lastMessage = _(msg`You: ${short}`) - } else { - lastMessage = short - } - } - } else { - if (isFromMe) { - lastMessage = _(msg`You: ${defaultEmbeddedContentMessage}`) - } else { - lastMessage = defaultEmbeddedContentMessage - } - } - } - - lastMessageSentAt = convo.lastMessage.sentAt - } - if (ChatBskyConvoDefs.isDeletedMessageView(convo.lastMessage)) { - lastMessage = isDeletedAccount - ? _(msg`Conversation deleted`) - : _(msg`Message deleted`) - } - - return { - lastMessage, - lastMessageSentAt, - } - }, [_, convo.lastMessage, currentAccount?.did, isDeletedAccount]) - - const [showActions, setShowActions] = useState(false) - - const onMouseEnter = useCallback(() => { - setShowActions(true) - }, []) - - const onMouseLeave = useCallback(() => { - setShowActions(false) - }, []) - - const onFocus = useCallback(e => { - if (e.nativeEvent.relatedTarget == null) return - setShowActions(true) - }, []) - - const onPress = useCallback( - (e: GestureResponderEvent) => { - decrementBadgeCount(convo.unreadCount) - if (isDeletedAccount) { - e.preventDefault() - menuControl.open() - return false - } else { - logEvent('chat:open', {logContext: 'ChatsList'}) - } - }, - [convo.unreadCount, isDeletedAccount, menuControl], - ) - - const onLongPress = useCallback(() => { - playHaptic() - menuControl.open() - }, [playHaptic, menuControl]) - - return ( - - - - - - - {({hovered, pressed, focused}) => ( - - {/* Avatar goes here */} - - - - - - - {displayName} - - - {lastMessageSentAt && ( - - {({timeElapsed}) => ( - - {' '} - · {timeElapsed} - - )} - - )} - {(convo.muted || moderation.blocked) && ( - - {' '} - ·{' '} - - - )} - - - {!isDeletedAccount && ( - - @{profile.handle} - - )} - - 0 - ? a.font_bold - : t.atoms.text_contrast_high, - isDimStyle && t.atoms.text_contrast_medium, - ]}> - {lastMessage} - - - - - - {convo.unreadCount > 0 && ( - - )} - - )} - - - 0} - hideTrigger={isNative} - blockInfo={blockInfo} - style={[ - a.absolute, - a.h_full, - a.self_end, - a.justify_center, - { - right: tokens.space.lg, - opacity: !gtMobile || showActions || menuControl.isOpen ? 1 : 0, - }, - ]} - /> - - ) -} diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index b1c52582f0..93e3bc400d 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -12,9 +12,11 @@ import {useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {ViewHeader} from '#/view/com/util/ViewHeader' import {ScrollView} from '#/view/com/util/Views' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a} from '#/alf' +import {Admonition} from '#/components/Admonition' import {Divider} from '#/components/Divider' import * as Toggle from '#/components/forms/Toggle' +import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' import {useBackgroundNotificationPreferences} from '../../../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' @@ -23,7 +25,6 @@ type AllowIncoming = 'all' | 'none' | 'following' type Props = NativeStackScreenProps export function MessagesSettingsScreen({}: Props) { const {_} = useLingui() - const t = useTheme() const {currentAccount} = useSession() const {data: profile} = useProfileQuery({ did: currentAccount!.did, @@ -55,100 +56,93 @@ export function MessagesSettingsScreen({}: Props) { ) return ( - - - - - Allow new messages from - - - - - - Everyone - - - - - - Users I follow - - - - - - No one - - - - - - - + + + + + + Allow new messages from + + + + + + Everyone + + + + + + Users I follow + + + + + + No one + + + + + + You can continue ongoing conversations regardless of which setting you choose. - + + {isNative && ( + <> + + + Notification Sounds + + + + + + Enabled + + + + + + Disabled + + + + + + + )} - {isNative && ( - <> - - - Notification Sounds - - - - - - Enabled - - - - - - Disabled - - - - - - - )} - - + + ) } diff --git a/src/screens/Messages/Conversation/ChatDisabled.tsx b/src/screens/Messages/components/ChatDisabled.tsx similarity index 100% rename from src/screens/Messages/Conversation/ChatDisabled.tsx rename to src/screens/Messages/components/ChatDisabled.tsx diff --git a/src/screens/Messages/components/ChatListItem.tsx b/src/screens/Messages/components/ChatListItem.tsx new file mode 100644 index 0000000000..bb9c1cd4cb --- /dev/null +++ b/src/screens/Messages/components/ChatListItem.tsx @@ -0,0 +1,424 @@ +import React, {useCallback, useMemo, useState} from 'react' +import {GestureResponderEvent, View} from 'react-native' +import { + AppBskyActorDefs, + AppBskyEmbedRecord, + ChatBskyConvoDefs, + moderateProfile, + ModerationOpts, +} from '@atproto/api' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {GestureActionView} from '#/lib/custom-animations/GestureActionView' +import {useHaptics} from '#/lib/haptics' +import {decrementBadgeCount} from '#/lib/notifications/notifications' +import {logEvent} from '#/lib/statsig/statsig' +import {sanitizeDisplayName} from '#/lib/strings/display-names' +import { + postUriToRelativePath, + toBskyAppUrl, + toShortUrl, +} from '#/lib/strings/url-helpers' +import {isNative} from '#/platform/detection' +import {useProfileShadow} from '#/state/cache/profile-shadow' +import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useMarkAsReadMutation} from '#/state/queries/messages/conversation' +import {useSession} from '#/state/session' +import {TimeElapsed} from '#/view/com/util/TimeElapsed' +import {PreviewableUserAvatar} from '#/view/com/util/UserAvatar' +import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' +import * as tokens from '#/alf/tokens' +import {useDialogControl} from '#/components/Dialog' +import {ConvoMenu} from '#/components/dms/ConvoMenu' +import {LeaveConvoPrompt} from '#/components/dms/LeaveConvoPrompt' +import {Bell2Off_Filled_Corner0_Rounded as BellStroke} from '#/components/icons/Bell2' +import {Envelope_Open_Stroke2_Corner0_Rounded as EnvelopeOpen} from '#/components/icons/EnveopeOpen' +import {Trash_Stroke2_Corner0_Rounded} from '#/components/icons/Trash' +import {Link} from '#/components/Link' +import {useMenuControl} from '#/components/Menu' +import {PostAlerts} from '#/components/moderation/PostAlerts' +import {Text} from '#/components/Typography' + +export let ChatListItem = ({ + convo, +}: { + convo: ChatBskyConvoDefs.ConvoView +}): React.ReactNode => { + const {currentAccount} = useSession() + const moderationOpts = useModerationOpts() + + const otherUser = convo.members.find( + member => member.did !== currentAccount?.did, + ) + + if (!otherUser || !moderationOpts) { + return null + } + + return ( + + ) +} + +ChatListItem = React.memo(ChatListItem) + +function ChatListItemReady({ + convo, + profile: profileUnshadowed, + moderationOpts, +}: { + convo: ChatBskyConvoDefs.ConvoView + profile: AppBskyActorDefs.ProfileViewBasic + moderationOpts: ModerationOpts +}) { + const t = useTheme() + const {_} = useLingui() + const {currentAccount} = useSession() + const menuControl = useMenuControl() + const leaveConvoControl = useDialogControl() + const {gtMobile} = useBreakpoints() + const profile = useProfileShadow(profileUnshadowed) + const {mutate: markAsRead} = useMarkAsReadMutation() + const moderation = React.useMemo( + () => moderateProfile(profile, moderationOpts), + [profile, moderationOpts], + ) + const playHaptic = useHaptics() + const isUnread = convo.unreadCount > 0 + + const blockInfo = useMemo(() => { + const modui = moderation.ui('profileView') + const blocks = modui.alerts.filter(alert => alert.type === 'blocking') + const listBlocks = blocks.filter(alert => alert.source.type === 'list') + const userBlock = blocks.find(alert => alert.source.type === 'user') + return { + listBlocks, + userBlock, + } + }, [moderation]) + + const isDeletedAccount = profile.handle === 'missing.invalid' + const displayName = isDeletedAccount + ? 'Deleted Account' + : sanitizeDisplayName( + profile.displayName || profile.handle, + moderation.ui('displayName'), + ) + + const isDimStyle = convo.muted || moderation.blocked || isDeletedAccount + + const {lastMessage, lastMessageSentAt} = useMemo(() => { + let lastMessage = _(msg`No messages yet`) + let lastMessageSentAt: string | null = null + + if (ChatBskyConvoDefs.isMessageView(convo.lastMessage)) { + const isFromMe = convo.lastMessage.sender?.did === currentAccount?.did + + if (convo.lastMessage.text) { + if (isFromMe) { + lastMessage = _(msg`You: ${convo.lastMessage.text}`) + } else { + lastMessage = convo.lastMessage.text + } + } else if (convo.lastMessage.embed) { + const defaultEmbeddedContentMessage = _( + msg`(contains embedded content)`, + ) + + if (AppBskyEmbedRecord.isView(convo.lastMessage.embed)) { + const embed = convo.lastMessage.embed + + if (AppBskyEmbedRecord.isViewRecord(embed.record)) { + const record = embed.record + const path = postUriToRelativePath(record.uri, { + handle: record.author.handle, + }) + const href = path ? toBskyAppUrl(path) : undefined + const short = href + ? toShortUrl(href) + : defaultEmbeddedContentMessage + if (isFromMe) { + lastMessage = _(msg`You: ${short}`) + } else { + lastMessage = short + } + } + } else { + if (isFromMe) { + lastMessage = _(msg`You: ${defaultEmbeddedContentMessage}`) + } else { + lastMessage = defaultEmbeddedContentMessage + } + } + } + + lastMessageSentAt = convo.lastMessage.sentAt + } + if (ChatBskyConvoDefs.isDeletedMessageView(convo.lastMessage)) { + lastMessage = isDeletedAccount + ? _(msg`Conversation deleted`) + : _(msg`Message deleted`) + } + + return { + lastMessage, + lastMessageSentAt, + } + }, [_, convo.lastMessage, currentAccount?.did, isDeletedAccount]) + + const [showActions, setShowActions] = useState(false) + + const onMouseEnter = useCallback(() => { + setShowActions(true) + }, []) + + const onMouseLeave = useCallback(() => { + setShowActions(false) + }, []) + + const onFocus = useCallback(e => { + if (e.nativeEvent.relatedTarget == null) return + setShowActions(true) + }, []) + + const onPress = useCallback( + (e: GestureResponderEvent) => { + decrementBadgeCount(convo.unreadCount) + if (isDeletedAccount) { + e.preventDefault() + menuControl.open() + return false + } else { + logEvent('chat:open', {logContext: 'ChatsList'}) + } + }, + [convo.unreadCount, isDeletedAccount, menuControl], + ) + + const onLongPress = useCallback(() => { + playHaptic() + menuControl.open() + }, [playHaptic, menuControl]) + + const markReadAction = { + threshold: 120, + color: t.palette.primary_500, + icon: EnvelopeOpen, + action: () => { + markAsRead({ + convoId: convo.id, + }) + }, + } + + const deleteAction = { + threshold: 225, + color: t.palette.negative_500, + icon: Trash_Stroke2_Corner0_Rounded, + action: () => { + leaveConvoControl.open() + }, + } + + const actions = isUnread + ? { + leftFirst: markReadAction, + leftSecond: deleteAction, + } + : { + leftFirst: deleteAction, + } + + return ( + + + + + + + + {({hovered, pressed, focused}) => ( + + {/* Avatar goes here */} + + + + + + + {displayName} + + + {lastMessageSentAt && ( + + {({timeElapsed}) => ( + + {' '} + · {timeElapsed} + + )} + + )} + {(convo.muted || moderation.blocked) && ( + + {' '} + ·{' '} + + + )} + + + {!isDeletedAccount && ( + + @{profile.handle} + + )} + + 0 + ? a.font_bold + : t.atoms.text_contrast_high, + isDimStyle && t.atoms.text_contrast_medium, + ]}> + {lastMessage} + + + + + + {convo.unreadCount > 0 && ( + + )} + + )} + + + 0} + hideTrigger={isNative} + blockInfo={blockInfo} + style={[ + a.absolute, + a.h_full, + a.self_end, + a.justify_center, + { + right: tokens.space.lg, + opacity: !gtMobile || showActions || menuControl.isOpen ? 1 : 0, + }, + ]} + /> + + + + ) +} diff --git a/src/screens/Messages/Conversation/MessageInput.tsx b/src/screens/Messages/components/MessageInput.tsx similarity index 99% rename from src/screens/Messages/Conversation/MessageInput.tsx rename to src/screens/Messages/components/MessageInput.tsx index 674edc41eb..21d6e574ea 100644 --- a/src/screens/Messages/Conversation/MessageInput.tsx +++ b/src/screens/Messages/components/MessageInput.tsx @@ -18,11 +18,11 @@ import Graphemer from 'graphemer' import {HITSLOP_10, MAX_DM_GRAPHEME_LENGTH} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' +import {isIOS} from '#/platform/detection' import { useMessageDraft, useSaveMessageDraft, } from '#/state/messages/message-drafts' -import {isIOS} from 'platform/detection' import {EmojiPickerPosition} from '#/view/com/composer/text-input/web/EmojiPicker.web' import * as Toast from '#/view/com/util/Toast' import {atoms as a, useTheme} from '#/alf' diff --git a/src/screens/Messages/Conversation/MessageInput.web.tsx b/src/screens/Messages/components/MessageInput.web.tsx similarity index 98% rename from src/screens/Messages/Conversation/MessageInput.web.tsx rename to src/screens/Messages/components/MessageInput.web.tsx index 0b7e479209..b15cd24921 100644 --- a/src/screens/Messages/Conversation/MessageInput.web.tsx +++ b/src/screens/Messages/components/MessageInput.web.tsx @@ -5,13 +5,13 @@ import {useLingui} from '@lingui/react' import Graphemer from 'graphemer' import TextareaAutosize from 'react-textarea-autosize' +import {isSafari, isTouchDevice} from '#/lib/browser' import {MAX_DM_GRAPHEME_LENGTH} from '#/lib/constants' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import { useMessageDraft, useSaveMessageDraft, } from '#/state/messages/message-drafts' -import {isSafari, isTouchDevice} from 'lib/browser' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {textInputWebEmitter} from '#/view/com/composer/text-input/textInputWebEmitter' import { Emoji, diff --git a/src/screens/Messages/Conversation/MessageInputEmbed.tsx b/src/screens/Messages/components/MessageInputEmbed.tsx similarity index 100% rename from src/screens/Messages/Conversation/MessageInputEmbed.tsx rename to src/screens/Messages/components/MessageInputEmbed.tsx diff --git a/src/screens/Messages/Conversation/MessageListError.tsx b/src/screens/Messages/components/MessageListError.tsx similarity index 100% rename from src/screens/Messages/Conversation/MessageListError.tsx rename to src/screens/Messages/components/MessageListError.tsx diff --git a/src/screens/Messages/Conversation/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx similarity index 97% rename from src/screens/Messages/Conversation/MessagesList.tsx rename to src/screens/Messages/components/MessagesList.tsx index 3034f02905..b659e98d6e 100644 --- a/src/screens/Messages/Conversation/MessagesList.tsx +++ b/src/screens/Messages/components/MessagesList.tsx @@ -15,6 +15,8 @@ import {ReanimatedScrollEvent} from 'react-native-reanimated/lib/typescript/rean import {useSafeAreaInsets} from 'react-native-safe-area-context' import {AppBskyEmbedRecord, AppBskyRichtextFacet, RichText} from '@atproto/api' +import {clamp} from '#/lib/numbers' +import {ScrollProvider} from '#/lib/ScrollContext' import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip' import { convertBskyAppUrlIfNeeded, @@ -22,21 +24,19 @@ import { } from '#/lib/strings/url-helpers' import {logger} from '#/logger' import {isNative} from '#/platform/detection' +import {isWeb} from '#/platform/detection' import {isConvoActive, useConvoActive} from '#/state/messages/convo' import {ConvoItem, ConvoStatus} from '#/state/messages/convo/types' import {useGetPost} from '#/state/queries/post' import {useAgent} from '#/state/session' -import {clamp} from 'lib/numbers' -import {ScrollProvider} from 'lib/ScrollContext' -import {isWeb} from 'platform/detection' import { EmojiPicker, EmojiPickerState, } from '#/view/com/composer/text-input/web/EmojiPicker.web' -import {List} from 'view/com/util/List' -import {ChatDisabled} from '#/screens/Messages/Conversation/ChatDisabled' -import {MessageInput} from '#/screens/Messages/Conversation/MessageInput' -import {MessageListError} from '#/screens/Messages/Conversation/MessageListError' +import {List} from '#/view/com/util/List' +import {ChatDisabled} from '#/screens/Messages/components/ChatDisabled' +import {MessageInput} from '#/screens/Messages/components/MessageInput' +import {MessageListError} from '#/screens/Messages/components/MessageListError' import {ChatEmptyPill} from '#/components/dms/ChatEmptyPill' import {MessageItem} from '#/components/dms/MessageItem' import {NewMessagesPill} from '#/components/dms/NewMessagesPill' diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx index 070b879508..d5a2daffdf 100644 --- a/src/screens/Moderation/index.tsx +++ b/src/screens/Moderation/index.tsx @@ -7,6 +7,7 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect} from '@react-navigation/native' +import {IS_INTERNAL} from '#/lib/app-info' import {getLabelingServiceTitle} from '#/lib/moderation' import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {logger} from '#/logger' @@ -41,6 +42,7 @@ import {Filter_Stroke2_Corner0_Rounded as Filter} from '#/components/icons/Filte import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group' import {Person_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' import * as LabelingService from '#/components/LabelingServiceCard' +import * as Layout from '#/components/Layout' import {InlineLinkText, Link} from '#/components/Link' import {Loader} from '#/components/Loader' import {GlobalLabelPreference} from '#/components/moderation/LabelPreference' @@ -94,31 +96,33 @@ export function ModerationScreen( const error = preferencesError return ( - - + + + - {isLoading ? ( - - - - ) : error || !preferences ? ( - - ) : ( - - )} - + {isLoading ? ( + + + + ) : error || !preferences ? ( + + ) : ( + + )} + + ) } @@ -466,18 +470,22 @@ export function ModerationScreenInner({ )} - - Logged-out visibility - + {!IS_INTERNAL && ( + <> + + Logged-out visibility + - + + + )} diff --git a/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx b/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx index eaad2113f8..acc0893350 100644 --- a/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx +++ b/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx @@ -46,29 +46,31 @@ export const PlaceholderCanvas = React.forwardRef( return ( - - - - - + + + + + + + ) }, diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx index 663418f220..73472ec332 100644 --- a/src/screens/Onboarding/StepProfile/index.tsx +++ b/src/screens/Onboarding/StepProfile/index.tsx @@ -32,6 +32,7 @@ import { import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' +import {useSheetWrapper} from '#/components/Dialog/sheet-wrapper' import {IconCircle} from '#/components/IconCircle' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' import {CircleInfo_Stroke2_Corner0_Rounded} from '#/components/icons/CircleInfo' @@ -89,15 +90,18 @@ export function StepProfile() { requestNotificationsPermission('StartOnboarding') }, [gate, requestNotificationsPermission]) + const sheetWrapper = useSheetWrapper() const openPicker = React.useCallback( async (opts?: ImagePickerOptions) => { - const response = await launchImageLibraryAsync({ - exif: false, - mediaTypes: MediaTypeOptions.Images, - quality: 1, - ...opts, - legacy: true, - }) + const response = await sheetWrapper( + launchImageLibraryAsync({ + exif: false, + mediaTypes: MediaTypeOptions.Images, + quality: 1, + ...opts, + legacy: true, + }), + ) return (response.assets ?? []) .slice(0, 1) @@ -121,7 +125,7 @@ export function StepProfile() { size: getDataUriSize(image.uri), })) }, - [_, setError], + [_, setError, sheetWrapper], ) const onContinue = React.useCallback(async () => { @@ -168,9 +172,11 @@ export function StepProfile() { setError('') - const items = await openPicker({ - aspect: [1, 1], - }) + const items = await sheetWrapper( + openPicker({ + aspect: [1, 1], + }), + ) let image = items[0] if (!image) return @@ -196,7 +202,13 @@ export function StepProfile() { image, useCreatedAvatar: false, })) - }, [requestPhotoAccessIfNeeded, setAvatar, openPicker, setError]) + }, [ + requestPhotoAccessIfNeeded, + setAvatar, + openPicker, + setError, + sheetWrapper, + ]) const onSecondaryPress = React.useCallback(() => { if (avatar.useCreatedAvatar) { @@ -286,7 +298,6 @@ export function StepProfile() { - @@ -27,10 +27,12 @@ export const PostLikedByScreen = ({route}: Props) => { ) return ( - - - - - + + + + + + + ) } diff --git a/src/screens/Post/PostQuotes.tsx b/src/screens/Post/PostQuotes.tsx index 0d59418f15..71dd8ad8d7 100644 --- a/src/screens/Post/PostQuotes.tsx +++ b/src/screens/Post/PostQuotes.tsx @@ -5,12 +5,12 @@ import {useFocusEffect} from '@react-navigation/native' import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {makeRecordUri} from '#/lib/strings/url-helpers' +import {isWeb} from '#/platform/detection' import {useSetMinimalShellMode} from '#/state/shell' -import {isWeb} from 'platform/detection' import {PostQuotes as PostQuotesComponent} from '#/view/com/post-thread/PostQuotes' import {ViewHeader} from '#/view/com/util/ViewHeader' -import {CenteredView} from 'view/com/util/Views' -import {atoms as a} from '#/alf' +import {CenteredView} from '#/view/com/util/Views' +import * as Layout from '#/components/Layout' import {ListHeaderDesktop} from '#/components/Lists' type Props = NativeStackScreenProps @@ -27,10 +27,12 @@ export const PostQuotesScreen = ({route}: Props) => { ) return ( - - - - - + + + + + + + ) } diff --git a/src/screens/Post/PostRepostedBy.tsx b/src/screens/Post/PostRepostedBy.tsx index f8c058ff79..c1e8b29878 100644 --- a/src/screens/Post/PostRepostedBy.tsx +++ b/src/screens/Post/PostRepostedBy.tsx @@ -5,12 +5,12 @@ import {useFocusEffect} from '@react-navigation/native' import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {makeRecordUri} from '#/lib/strings/url-helpers' +import {isWeb} from '#/platform/detection' import {useSetMinimalShellMode} from '#/state/shell' -import {isWeb} from 'platform/detection' import {PostRepostedBy as PostRepostedByComponent} from '#/view/com/post-thread/PostRepostedBy' import {ViewHeader} from '#/view/com/util/ViewHeader' -import {CenteredView} from 'view/com/util/Views' -import {atoms as a} from '#/alf' +import {CenteredView} from '#/view/com/util/Views' +import * as Layout from '#/components/Layout' import {ListHeaderDesktop} from '#/components/Lists' type Props = NativeStackScreenProps @@ -27,10 +27,12 @@ export const PostRepostedByScreen = ({route}: Props) => { ) return ( - - - - - + + + + + + + ) } diff --git a/src/screens/Profile/ErrorState.tsx b/src/screens/Profile/ErrorState.tsx index 2ec2cf592e..97ce35bb28 100644 --- a/src/screens/Profile/ErrorState.tsx +++ b/src/screens/Profile/ErrorState.tsx @@ -1,14 +1,14 @@ import React from 'react' import {View} from 'react-native' -import {Trans, msg} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' -import {useTheme, atoms as a} from '#/alf' -import {Text} from '#/components/Typography' +import {NavigationProp} from '#/lib/routes/types' +import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import {NavigationProp} from '#/lib/routes/types' +import {Text} from '#/components/Typography' export function ErrorState({error}: {error: string}) { const t = useTheme() diff --git a/src/screens/Profile/Header/DisplayName.tsx b/src/screens/Profile/Header/DisplayName.tsx index bcc56d7f66..6d4eea2ebc 100644 --- a/src/screens/Profile/Header/DisplayName.tsx +++ b/src/screens/Profile/Header/DisplayName.tsx @@ -27,7 +27,7 @@ export function ProfileHeaderDisplayName({ t.atoms.text, gtMobile ? a.text_4xl : a.text_3xl, a.self_start, - {fontWeight: '600'}, + a.font_heavy, ]}> {sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), diff --git a/src/screens/Profile/Header/EditProfileDialog.tsx b/src/screens/Profile/Header/EditProfileDialog.tsx new file mode 100644 index 0000000000..af4b5498a0 --- /dev/null +++ b/src/screens/Profile/Header/EditProfileDialog.tsx @@ -0,0 +1,375 @@ +import React, {useCallback, useEffect, useState} from 'react' +import {Dimensions, View} from 'react-native' +import {Image as RNImage} from 'react-native-image-crop-picker' +import {AppBskyActorDefs} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {compressIfNeeded} from '#/lib/media/manip' +import {cleanError} from '#/lib/strings/errors' +import {useWarnMaxGraphemeCount} from '#/lib/strings/helpers' +import {logger} from '#/logger' +import {isWeb} from '#/platform/detection' +import {useProfileUpdateMutation} from '#/state/queries/profile' +import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' +import * as Toast from '#/view/com/util/Toast' +import {EditableUserAvatar} from '#/view/com/util/UserAvatar' +import {UserBanner} from '#/view/com/util/UserBanner' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import * as TextField from '#/components/forms/TextField' +import * as Prompt from '#/components/Prompt' + +const DISPLAY_NAME_MAX_GRAPHEMES = 64 +const DESCRIPTION_MAX_GRAPHEMES = 256 + +const SCREEN_HEIGHT = Dimensions.get('window').height + +export function EditProfileDialog({ + profile, + control, + onUpdate, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + control: Dialog.DialogControlProps + onUpdate?: () => void +}) { + const {_} = useLingui() + const cancelControl = Dialog.useDialogControl() + const [dirty, setDirty] = useState(false) + + // 'You might lose unsaved changes' warning + useEffect(() => { + if (isWeb && dirty) { + const abortController = new AbortController() + const {signal} = abortController + window.addEventListener('beforeunload', evt => evt.preventDefault(), { + signal, + }) + return () => { + abortController.abort() + } + } + }, [dirty]) + + const onPressCancel = useCallback(() => { + if (dirty) { + cancelControl.open() + } else { + control.close() + } + }, [dirty, control, cancelControl]) + + return ( + + + + control.close()} + confirmButtonCta={_(msg`Discard`)} + confirmButtonColor="negative" + /> + + ) +} + +function DialogInner({ + profile, + onUpdate, + setDirty, + onPressCancel, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + onUpdate?: () => void + setDirty: (dirty: boolean) => void + onPressCancel: () => void +}) { + const {_} = useLingui() + const t = useTheme() + const control = Dialog.useDialogContext() + const { + mutateAsync: updateProfileMutation, + error: updateProfileError, + isError: isUpdateProfileError, + isPending: isUpdatingProfile, + } = useProfileUpdateMutation() + const [imageError, setImageError] = useState('') + const initialDisplayName = profile.displayName || '' + const [displayName, setDisplayName] = useState(initialDisplayName) + const initialDescription = profile.description || '' + const [description, setDescription] = useState(initialDescription) + const [userBanner, setUserBanner] = useState( + profile.banner, + ) + const [userAvatar, setUserAvatar] = useState( + profile.avatar, + ) + const [newUserBanner, setNewUserBanner] = useState< + RNImage | undefined | null + >() + const [newUserAvatar, setNewUserAvatar] = useState< + RNImage | undefined | null + >() + + const dirty = + displayName !== initialDisplayName || + description !== initialDescription || + userAvatar !== profile.avatar || + userBanner !== profile.banner + + useEffect(() => { + setDirty(dirty) + }, [dirty, setDirty]) + + const onSelectNewAvatar = useCallback( + async (img: RNImage | null) => { + setImageError('') + if (img === null) { + setNewUserAvatar(null) + setUserAvatar(null) + return + } + try { + const finalImg = await compressIfNeeded(img, 1000000) + setNewUserAvatar(finalImg) + setUserAvatar(finalImg.path) + } catch (e: any) { + setImageError(cleanError(e)) + } + }, + [setNewUserAvatar, setUserAvatar, setImageError], + ) + + const onSelectNewBanner = useCallback( + async (img: RNImage | null) => { + setImageError('') + if (!img) { + setNewUserBanner(null) + setUserBanner(null) + return + } + try { + const finalImg = await compressIfNeeded(img, 1000000) + setNewUserBanner(finalImg) + setUserBanner(finalImg.path) + } catch (e: any) { + setImageError(cleanError(e)) + } + }, + [setNewUserBanner, setUserBanner, setImageError], + ) + + const onPressSave = useCallback(async () => { + setImageError('') + try { + await updateProfileMutation({ + profile, + updates: { + displayName: displayName.trimEnd(), + description: description.trimEnd(), + }, + newUserAvatar, + newUserBanner, + }) + onUpdate?.() + control.close() + Toast.show(_(msg`Profile updated`)) + } catch (e: any) { + logger.error('Failed to update user profile', {message: String(e)}) + } + }, [ + updateProfileMutation, + profile, + onUpdate, + control, + displayName, + description, + newUserAvatar, + newUserBanner, + setImageError, + _, + ]) + + const displayNameTooLong = useWarnMaxGraphemeCount({ + text: displayName, + maxCount: DISPLAY_NAME_MAX_GRAPHEMES, + }) + const descriptionTooLong = useWarnMaxGraphemeCount({ + text: description, + maxCount: DESCRIPTION_MAX_GRAPHEMES, + }) + + const cancelButton = useCallback( + () => ( + + ), + [onPressCancel, _], + ) + + const saveButton = useCallback( + () => ( + + ), + [ + _, + t, + dirty, + onPressSave, + isUpdatingProfile, + displayNameTooLong, + descriptionTooLong, + ], + ) + + return ( + + + Edit profile + + + }> + + + + + + + {isUpdateProfileError && ( + + + + )} + {imageError !== '' && ( + + + + )} + + + + Display name + + + + + {displayNameTooLong && ( + + + Display name is too long. The maximum number of characters is{' '} + {DISPLAY_NAME_MAX_GRAPHEMES}. + + + )} + + + + + Description + + + + + {descriptionTooLong && ( + + + Description is too long. The maximum number of characters is{' '} + {DESCRIPTION_MAX_GRAPHEMES}. + + + )} + + + + ) +} diff --git a/src/screens/Profile/Header/GrowableBanner.tsx b/src/screens/Profile/Header/GrowableBanner.tsx index e1bb8e00ef..144b7cd2de 100644 --- a/src/screens/Profile/Header/GrowableBanner.tsx +++ b/src/screens/Profile/Header/GrowableBanner.tsx @@ -36,8 +36,8 @@ export function GrowableBanner({ if (!pagerContext || !isIOS) { return ( - {backButton} {children} + {backButton} ) } diff --git a/src/screens/Profile/Header/Metrics.tsx b/src/screens/Profile/Header/Metrics.tsx index 756eb1f89e..30686ef99c 100644 --- a/src/screens/Profile/Header/Metrics.tsx +++ b/src/screens/Profile/Header/Metrics.tsx @@ -4,9 +4,9 @@ import {AppBskyActorDefs} from '@atproto/api' import {msg, plural} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {makeProfileLink} from '#/lib/routes/links' import {Shadow} from '#/state/cache/types' -import {makeProfileLink} from 'lib/routes/links' -import {formatCount} from 'view/com/util/numeric/format' +import {formatCount} from '#/view/com/util/numeric/format' import {atoms as a, useTheme} from '#/alf' import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' diff --git a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx index 7b44e58693..ca0cb1e626 100644 --- a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx +++ b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx @@ -15,7 +15,7 @@ import {MAX_LABELERS} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {isAppLabeler} from '#/lib/moderation' import {logger} from '#/logger' -import {isIOS} from '#/platform/detection' +import {isIOS, isWeb} from '#/platform/detection' import {useProfileShadow} from '#/state/cache/profile-shadow' import {Shadow} from '#/state/cache/types' import {useModalControls} from '#/state/modals' @@ -25,9 +25,9 @@ import {usePreferencesQuery} from '#/state/queries/preferences' import {useRequireAuth, useSession} from '#/state/session' import {ProfileMenu} from '#/view/com/profile/ProfileMenu' import * as Toast from '#/view/com/util/Toast' -import {atoms as a, tokens, useBreakpoints, useTheme} from '#/alf' +import {atoms as a, tokens, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' -import {DialogOuterProps} from '#/components/Dialog' +import {DialogOuterProps, useDialogControl} from '#/components/Dialog' import { Heart2_Filled_Stroke2_Corner0_Rounded as HeartFilled, Heart2_Stroke2_Corner0_Rounded as Heart, @@ -37,6 +37,7 @@ import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import {Text} from '#/components/Typography' import {ProfileHeaderDisplayName} from './DisplayName' +import {EditProfileDialog} from './EditProfileDialog' import {ProfileHeaderHandle} from './Handle' import {ProfileHeaderMetrics} from './Metrics' import {ProfileHeaderShell} from './Shell' @@ -61,10 +62,8 @@ let ProfileHeaderLabeler = ({ const profile: Shadow = useProfileShadow(profileUnshadowed) const t = useTheme() - const {gtMobile} = useBreakpoints() const {_} = useLingui() const {currentAccount, hasSession} = useSession() - const {openModal} = useModalControls() const requireAuth = useRequireAuth() const playHaptic = useHaptics() const cantSubscribePrompt = Prompt.usePromptControl() @@ -110,7 +109,7 @@ let ProfileHeaderLabeler = ({ } catch (e: any) { Toast.show( _( - msg`There was an an issue contacting the server, please check your internet connection and try again.`, + msg`There was an issue contacting the server, please check your internet connection and try again.`, ), 'xmark', ) @@ -118,12 +117,19 @@ let ProfileHeaderLabeler = ({ } }, [labeler, playHaptic, likeUri, unlikeMod, likeMod, _]) + const {openModal} = useModalControls() + const editProfileControl = useDialogControl() const onPressEditProfile = React.useCallback(() => { - openModal({ - name: 'edit-profile', - profile, - }) - }, [openModal, profile]) + if (isWeb) { + // temp, while we figure out the nested dialog bug + openModal({ + name: 'edit-profile', + profile, + }) + } else { + editProfileControl.open() + } + }, [editProfileControl, openModal, profile]) const onPressSubscribe = React.useCallback( () => @@ -167,21 +173,27 @@ let ProfileHeaderLabeler = ({ style={[a.px_lg, a.pt_md, a.pb_sm]} pointerEvents={isIOS ? 'auto' : 'box-none'}> {isMe ? ( - + <> + + + ) : !isAppLabeler(profile.did) ? ( <> + <> + + + ) : profile.viewer?.blocking ? ( profile.viewer?.blockingByList ? null : ( ) : null} {screenState === ScreenState.S_StarterPack ? ( diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index dee0d6b70a..d718ca8324 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -9,6 +9,10 @@ import {useKawaiiMode} from '#/state/preferences/kawaii' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' import {Logo} from '#/view/icons/Logo' import {Logotype} from '#/view/icons/Logotype' +import { + AppClipOverlay, + postAppClipMessage, +} from '#/screens/StarterPack/StarterPackLandingScreen' import {atoms as a, useTheme} from '#/alf' import {AppLanguageDropdown} from '#/components/AppLanguageDropdown' import {Button, ButtonText} from '#/components/Button' @@ -28,6 +32,18 @@ export const SplashScreen = ({ const {_} = useLingui() const t = useTheme() const {isTabletOrMobile: isMobileWeb} = useWebMediaQueries() + const [showClipOverlay, setShowClipOverlay] = React.useState(false) + + React.useEffect(() => { + const getParams = new URLSearchParams(window.location.search) + const clip = getParams.get('clip') + if (clip === 'true') { + setShowClipOverlay(true) + postAppClipMessage({ + action: 'present', + }) + } + }, []) const kawaii = useKawaiiMode() @@ -66,6 +82,7 @@ export const SplashScreen = ({ t.atoms.border_contrast_medium, a.align_center, a.gap_5xl, + a.flex_1, ]}> @@ -119,6 +136,10 @@ export const SplashScreen = ({